tetl 0.1.0
Embedded Template Library
|
Go to the source code of this file.
Namespaces | |
namespace | etl |
Functions | |
template<typename FwdIt, typename Searcher> | |
constexpr auto | search (FwdIt first, FwdIt last, Searcher const &searcher) -> FwdIt |
Searches for the first occurrence of the sequence of elements [sFirst, sLast) in the range [first, last) . | |
template<typename FwdIt1, typename FwdIt2> | |
constexpr auto | search (FwdIt1 first, FwdIt1 last, FwdIt2 sFirst, FwdIt2 sLast) -> FwdIt1 |
Searches for the first occurrence of the sequence of elements [sFirst, sLast) in the range [first, last) . | |
template<typename FwdIt1, typename FwdIt2, typename Predicate> | |
constexpr auto | search (FwdIt1 first, FwdIt1 last, FwdIt2 sFirst, FwdIt2 sLast, Predicate pred) -> FwdIt1 |
Searches for the first occurrence of the sequence of elements [sFirst, sLast) in the range [first, last) . | |