tetl 0.1.0
Embedded Template Library
|
Go to the source code of this file.
Namespaces | |
namespace | etl |
Functions | |
template<typename InputIt, typename ForwardIt> | |
constexpr auto | find_first_of (InputIt first, InputIt last, ForwardIt sFirst, ForwardIt sLast) -> InputIt |
Searches the range [first, last) for any of the elements in the range [sFirst, sLast). | |
template<typename InputIt, typename ForwardIt, typename Predicate> | |
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). Elements are compared using the given binary predicate pred. | |