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

Method Finder

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

Source from the content-addressed store, hash-verified

393 int len;
394 const char *ptr;
395 Finder(int len, const char *inPtr) : len(len), ptr(inPtr) { }
396 bool operator==(const String &inStr) const
397 {
398 return len == inStr.length && !memcmp(ptr, inStr.__s, len*sizeof(char));

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected