| 299 | |
| 300 | template <typename K, typename V> |
| 301 | V Map<K, V>::get(K key, V if_absent) { |
| 302 | V result; |
| 303 | if (find(key, result)) |
| 304 | return result; |
| 305 | else |
| 306 | return if_absent; |
| 307 | } |
| 308 | |
| 309 | template <typename K, typename V> |
| 310 | V Map<K, V>::get(K key) { |