* @brief Remove this value from the map * @retval bool true if the value was found and removed */
| 97 | * @retval bool true if the value was found and removed |
| 98 | */ |
| 99 | bool remove() |
| 100 | { |
| 101 | return map.remove(key); |
| 102 | } |
| 103 | |
| 104 | /** |
| 105 | * @brief Get the value for a given key and remove it from the map, without destroying it |