MCPcopy Create free account
hub / github.com/catboost/catboost / Find

Method Find

util/string/split.h:241–250  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

239 using TFindFirstOf<const Char>::TFindFirstOf;
240
241 inline Char* Find(Char*& b, Char* e) const noexcept {
242 Char* ret = const_cast<Char*>(this->FindFirstOf(b, e));
243
244 if (ret != e) {
245 b = ret + 1;
246 return ret;
247 }
248
249 return (b = e);
250 }
251
252 inline Char* Find(Char*& b) const noexcept {
253 Char* ret = const_cast<Char*>(this->FindFirstOf(b));

Callers 2

SplitStringFunction · 0.45
NextMethod · 0.45

Calls 1

FindFirstOfMethod · 0.45

Tested by

no test coverage detected