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

Function StripRangeBegin

util/string/strip.h:43–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41
42template <class It, class TStripCriterion>
43inline void StripRangeBegin(It& b, const It& e, TStripCriterion&& criterion) noexcept {
44 while (b < e && criterion(b)) {
45 ++b;
46 }
47}
48
49template <class It>
50inline void StripRangeBegin(It& b, const It& e) noexcept {

Callers 3

StripLeftFunction · 0.85
CutWWWNumberedPrefixFunction · 0.85
StripRangeMethod · 0.85

Calls 1

IsAsciiSpaceAdapterFunction · 0.85

Tested by

no test coverage detected