Home | History | Annotate | Download | only in ADT

Lines Matching defs:none_of

813 /// Provide wrappers to std::none_of which take ranges instead of having to pass
816 bool none_of(R &&Range, UnaryPredicate P) {
817 return std::none_of(std::begin(Range), std::end(Range), P);