| 409 | // ---- FastLED-specific methods (matching flat_map API) ---- |
| 410 | |
| 411 | Value get(const Key& key, const Value& defaultValue) const FL_NOEXCEPT { |
| 412 | size_type idx = find_index(key); |
| 413 | return idx != npos() ? mData[idx].second : defaultValue; |
| 414 | } |
| 415 | |
| 416 | bool get(const Key& key, Value* out_value) const FL_NOEXCEPT { |
| 417 | size_type idx = find_index(key); |
nothing calls this directly
no test coverage detected