tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
equal.hpp File Reference

Go to the source code of this file.

Namespaces

namespace  etl
 

Functions

template<typename InputIt1, typename InputIt2>
constexpr auto equal (InputIt1 first1, InputIt1 last1, InputIt2 first2) -> bool
 
template<typename InputIt1, typename InputIt2>
constexpr auto equal (InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2) -> bool
 
template<typename InputIt1, typename InputIt2, typename Predicate>
constexpr auto equal (InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, Predicate p) -> bool
 
template<typename InputIt1, typename InputIt2, typename Predicate>
constexpr auto equal (InputIt1 first1, InputIt1 last1, InputIt2 first2, Predicate p) -> bool
 Returns true if the range [first1, last1) is equal to the range [first2, first2 + (last1 - first1)), and false otherwise.