MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / CreateString

Function CreateString

src/String.cpp:2105–2110  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2103Dynamic CreateEmptyString() { return sConstEmptyString; }
2104
2105Dynamic CreateString(DynamicArray inArgs)
2106{
2107 if (inArgs->__length()>0)
2108 return inArgs[0]->toString();
2109 return String();
2110}
2111
2112
2113String String::substr(int inFirst, Dynamic inLen) const

Callers

nothing calls this directly

Calls 3

StringClass · 0.50
__lengthMethod · 0.45
toStringMethod · 0.45

Tested by

no test coverage detected