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

Method equal_range

src/fl/stl/multi_map.h:425–429  ·  view source on GitHub ↗

equal_range returns [lower_bound, upper_bound) for the given key

Source from the content-addressed store, hash-verified

423
424 // equal_range returns [lower_bound, upper_bound) for the given key
425 fl::pair<iterator, iterator> equal_range(const Key& key) {
426 iterator lower = lower_bound(key);
427 iterator upper = upper_bound(key);
428 return fl::pair<iterator, iterator>(lower, upper);
429 }
430
431 fl::pair<const_iterator, const_iterator> equal_range(const Key& key) const {
432 const_iterator lower = lower_bound(key);

Callers

nothing calls this directly

Calls 1

lower_boundFunction · 0.70

Tested by

no test coverage detected