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

Method append

Engine/source/core/util/str.h:341–347  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

339 }
340
341 S32 append( char ch )
342 {
343 char str[2];
344 str[0]=ch;
345 str[1]='\0';
346 return mFormat.append(str);
347 }
348 S32 append( const char* str )
349 {
350 return mFormat.append(str);

Callers

nothing calls this directly

Calls 2

c_strMethod · 0.45
lengthMethod · 0.45

Tested by

no test coverage detected