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

Function StrMatch

src/String.cpp:1293–1299  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1291}
1292
1293static bool StrMatch(const char16_t *src0, const char *src1, int len)
1294{
1295 for(int i=0;i<len;i++)
1296 if (src0[i]!=src1[i])
1297 return false;
1298 return true;
1299}
1300
1301
1302int String::indexOf(const String &inValue, Dynamic inStart) const

Callers 2

indexOfMethod · 0.85
lastIndexOfMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected