MCPcopy Create free account
hub / github.com/HoShiMin/Kernel-Bridge / GetLowerCase

Method GetLowerCase

Kernel-Bridge/API/StringsAPI.h:341–345  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

339 inline String& ToUpperCase();
340
341 inline String GetLowerCase() const {
342 String Str(*this);
343 Str.ToLowerCase();
344 return Str;
345 }
346 inline String GetUpperCase() const {
347 String Str(*this);
348 Str.ToUpperCase();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected