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

Function isSame

src/String.cpp:1993–1999  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1991#endif
1992
1993static bool isSame(const char16_t *a, const char *b, int count)
1994{
1995 for(int i=0;i<count;i++)
1996 if (a[i]!=b[i])
1997 return false;
1998 return true;
1999}
2000
2001Array<String> String::split(const String &inDelimiter) const
2002{

Callers 1

splitMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected