MCPcopy Create free account
hub / github.com/Redot-Engine/redot-engine / lower_case

Function lower_case

core/string/ustring.cpp:66–68  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

64static const int MAX_DECIMALS = 32;
65
66static _FORCE_INLINE_ char32_t lower_case(char32_t c) {
67 return (is_ascii_upper_case(c) ? (c + ('a' - 'A')) : c);
68}
69
70Error String::parse_url(String &r_scheme, String &r_host, int &r_port, String &r_path, String &r_fragment) const {
71 String base = *this;

Callers 2

hex_to_intMethod · 0.85
bin_to_intMethod · 0.85

Calls 1

is_ascii_upper_caseFunction · 0.85

Tested by

no test coverage detected