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

Method runSubstr

src/hx/cppia/StringBuiltin.cpp:59–62  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

57 }
58 #ifdef CPPIA_JIT
59 static void SLJIT_CALL runSubstr(String *ioValue, int start, hx::Object *end)
60 {
61 *ioValue = ioValue->substr(start, Dynamic(end));
62 }
63 static void SLJIT_CALL runSubstring(String *ioValue, int start, hx::Object *end)
64 {
65 *ioValue = ioValue->substring(start, Dynamic(end));

Callers

nothing calls this directly

Calls 2

substrMethod · 0.80
DynamicClass · 0.50

Tested by

no test coverage detected