26find_first_of(InputIt first, InputIt last, ForwardIt sFirst, ForwardIt sLast, Predicate pred) -> InputIt
28 for (; first != last; ++first) {
29 for (
auto it = sFirst; it != sLast; ++it) {
30 if (pred(*first, *it)) {
constexpr auto find_first_of(InputIt first, InputIt last, ForwardIt sFirst, ForwardIt sLast, Predicate pred) -> InputIt
Searches the range [first, last) for any of the elements in the range [sFirst, sLast)....
Definition find_first_of.hpp:26
Function object for performing comparisons. Unless specialised, invokes operator== on type T....
Definition equal_to.hpp:14