MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / ToLower

Method ToLower

Engine/source/core/util/str.cpp:1566–1576  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1564}
1565
1566String String::ToLower(const String &string)
1567{
1568 if ( string.isEmpty() )
1569 return String();
1570
1571 String::StringData* sub = StringData::Create(string, string.length());
1572
1573 dStrlwr( sub->utf8() );
1574
1575 return sub;
1576}
1577
1578String String::ToUpper(const String &string)
1579{

Callers

nothing calls this directly

Calls 6

CreateFunction · 0.85
dStrlwrFunction · 0.85
StringClass · 0.70
isEmptyMethod · 0.45
lengthMethod · 0.45
utf8Method · 0.45

Tested by

no test coverage detected