MCPcopy Create free account
hub / github.com/CytopiaTeam/Cytopia / StringResize

Function StringResize

external/as_add_on/scriptstdstring/scriptstdstring.cpp:437–441  ·  view source on GitHub ↗

AngelScript signature: void string::resize(uint l)

Source from the content-addressed store, hash-verified

435// AngelScript signature:
436// void string::resize(uint l)
437static void StringResize(asUINT l, string &str)
438{
439 // We don't register the method directly because the argument types change between 32bit and 64bit platforms
440 str.resize(l);
441}
442
443// AngelScript signature:
444// string formatInt(int64 val, const string &in options, uint width)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected