Alias for contains (FastLED compatibility)
| 159 | |
| 160 | // Alias for contains (FastLED compatibility) |
| 161 | bool has(const Key& key) const FL_NOEXCEPT { |
| 162 | return contains(key); |
| 163 | } |
| 164 | |
| 165 | // Bounds - binary search using pointer arithmetic |
| 166 | iterator lower_bound(const Key& key) FL_NOEXCEPT { |
nothing calls this directly
no test coverage detected