FastLED 3.9.15
Loading...
Searching...
No Matches

◆ lower_bound() [1/2]

template<typename Iterator, typename T>
Iterator fl::lower_bound ( Iterator first,
Iterator last,
const T & value )

Definition at line 556 of file algorithm.h.

556 {
557 typedef typename fl::remove_reference<decltype(*first)>::type value_type;
558 return detail::lower_bound_impl(first, last, value,
559 [](const value_type& a, const T& b) { return a < b; });
560}
Iterator lower_bound_impl(Iterator first, Iterator last, const T &value, Compare comp) FL_NOEXCEPT
Definition algorithm.h:442
constexpr int type_rank< T >::value

References FL_NOEXCEPT, fl::detail::lower_bound_impl(), and type_rank< T >::value.

+ Here is the call graph for this function: