MCPcopy Create free account
hub / github.com/HoShiMin/Kernel-Bridge / Find

Method Find

Kernel-Bridge/API/StringsAPI.h:418–421  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

416
417 static inline const TChar* Find(const TChar* Str, const TChar* Substr, size_t Offset = 0);
418 inline const TChar* Find(const TChar* Substring, size_t Offset = 0) const {
419 if (Offset > Data.Length) return nullptr;
420 return Find(Data.Buffer, Substring, Offset);
421 }
422 inline bool Contains(const TChar* Substring, size_t Offset = 0) const {
423 return Find(Substring, Offset) != nullptr;
424 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected