| 
    eDSP
    0.0.1
    
   A cross-platform DSP library written in C++. 
   | 
 
#include <algorithm>#include <edsp/meta/iterator.hpp>Go to the source code of this file.
Namespaces | |
| edsp | |
| edsp::algorithm | |
Functions | |
| template<typename ForwardIt > | |
| constexpr ForwardIt | edsp::algorithm::binary_search (ForwardIt first, ForwardIt last, const meta::value_type_t< ForwardIt > &value) | 
| Checks if an element equivalent to value appears within the range [first, last).  More... | |
| template<typename ForwardIt , class UnaryPredicate > | |
| constexpr ForwardIt | edsp::algorithm::binary_search (ForwardIt first, ForwardIt last, UnaryPredicate p) | 
| Searches for an element for which predicate p returns true in the range [first, last).  More... | |
 1.8.13