eDSP  0.0.1
A cross-platform DSP library written in C++.
Namespaces | Functions
equal.hpp File Reference
#include <algorithm>

Go to the source code of this file.

Namespaces

 edsp
 
 edsp::algorithm
 

Functions

template<typename ForwardIt1 , typename ForwardIt2 , typename BinaryPredicate >
constexpr bool edsp::algorithm::equal (ForwardIt1 first1, ForwardIt2 last1, ForwardIt2 first2, ForwardIt2 last2, BinaryPredicate p)
 Returns true if the range [first1, last1) is equal to the range [first2, last2), and false otherwise. More...
 
template<typename ForwardIt1 , typename ForwardIt2 >
constexpr bool edsp::algorithm::equal (ForwardIt1 first1, ForwardIt2 last1, ForwardIt2 first2, ForwardIt2 last2)
 Returns true if the range [first1, last1) is equal to the range [first2, last2), and false otherwise. More...