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

Method equal_range

src/fl/stl/multi_set.h:315–319  ·  view source on GitHub ↗

equal_range returns [lower_bound, upper_bound) for the given key

Source from the content-addressed store, hash-verified

313
314 // equal_range returns [lower_bound, upper_bound) for the given key
315 fl::pair<iterator, iterator> equal_range(const Key& key) {
316 iterator lower = lower_bound(key);
317 iterator upper = upper_bound(key);
318 return fl::pair<iterator, iterator>(lower, upper);
319 }
320
321 fl::pair<const_iterator, const_iterator> equal_range(const Key& key) const {
322 const_iterator lower = lower_bound(key);

Callers

nothing calls this directly

Calls 1

lower_boundFunction · 0.70

Tested by

no test coverage detected