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

Go to the source code of this file.

Namespaces

namespace  etl
 

Functions

template<typename ForwardIt, typename T>
constexpr auto lower_bound (ForwardIt first, ForwardIt last, T const &value) noexcept -> ForwardIt
 
template<typename ForwardIt, typename T, typename Compare>
constexpr auto lower_bound (ForwardIt first, ForwardIt last, T const &value, Compare comp) noexcept -> ForwardIt
 Returns an iterator pointing to the first element in the range [first, last) that is not less than (i.e. greater or equal to) value, or last if no such element is found.