Map lookup helper.
Declared in <common/settings.h>
template<
typename Map,
typename Key>
decltype(&map.at(key))
FindKey(
Map&& map,
Key&& key);
Pointer to the mapped value, or nullptr if the key is absent.
| Name | Description |
|---|---|
| map | The map to search. |
| key | The key to look up. |