MCPcopy Create free account
hub / github.com/FastLED/FastLED / lower_bound

Function lower_bound

src/fl/stl/algorithm.h:551–553  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

549// Lower bound: find first position in sorted [first, last) where value could be inserted.
550template <typename Iterator, typename T, typename Compare>
551Iterator lower_bound(Iterator first, Iterator last, const T& value, Compare comp) FL_NOEXCEPT {
552 return detail::lower_bound_impl(first, last, value, comp);
553}
554
555template <typename Iterator, typename T>
556Iterator lower_bound(Iterator first, Iterator last, const T& value) FL_NOEXCEPT {

Callers

nothing calls this directly

Calls 1

lower_bound_implFunction · 0.85

Tested by

no test coverage detected