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

Function Filter

library/cpp/iterator/functools.h:53–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

51 //! Usage: for (i32 x : Filter(predicate, container)) {...}
52 template <typename TPredicate, typename TContainerOrRef>
53 auto Filter(TPredicate&& predicate, TContainerOrRef&& container) {
54 return ::MakeFilteringRange(std::forward<TContainerOrRef>(container), std::forward<TPredicate>(predicate));
55 }
56
57}

Callers 4

FinishBuildingMethod · 0.85
TESTFunction · 0.85
RunMethod · 0.85
StatusMethod · 0.85

Calls 1

MakeFilteringRangeFunction · 0.85

Tested by

no test coverage detected