MCPcopy Create free account
hub / github.com/Xtra-Computing/thundersvm / contains

Method contains

src/thundersvm/util/log.cpp:901–907  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

899 }
900
901 bool Str::contains(const char* str, char c) {
902 for (; *str; ++str) {
903 if (*str == c)
904 return true;
905 }
906 return false;
907 }
908
909 char* Str::convertAndAddToBuff(std::size_t n, int len, char* buf, const char* bufLim, bool zeroPadded) {
910 char localBuff[10] = "";

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected