MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / Length

Method Length

Source/Engine/Platform/Unix/UnixStringUtils.cpp:170–179  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

168}
169
170int32 StringUtils::Length(const Char* str)
171{
172 if (!str)
173 return 0;
174 const Char* ptr = str;
175 for (; *ptr; ++ptr)
176 {
177 }
178 return ptr - str;
179}
180
181int32 StringUtils::Length(const char* str)
182{

Callers 15

AppendNameMethod · 0.45
FormatValueMethod · 0.45
AddMethod · 0.45
UpdateMethod · 0.45
loadMethod · 0.45
DrawEmitterCPUFunction · 0.45
JobMethod · 0.45
AddAttributeMethod · 0.45
loadMethod · 0.45
GenerateMethod · 0.45
ShowFallbackMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected