//// Copyright 2017 Peter Dimov Distributed under the Boost Software License, Version 1.0. See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt //// [#map] # Map Operations, :toc: :toc-title: :idprefix: A map is a list of lists, the inner lists having at least one element (the key.) The keys of the map must be unique. ## mp_map_find template using mp_map_find = /*...*/; `mp_map_find` is an alias for the element of the map `M` with a key `K`, or for `void`, if there is no such element. ## mp_map_contains template using mp_map_contains = mp_not, void>>; `mp_map_contains` is `mp_true` if the map `M` contains an element with a key `K`, `mp_false` otherwise. ## mp_map_insert template using mp_map_insert = mp_if< mp_map_contains>, M, mp_push_back >; Inserts the element `T` into the map `M`, if an element with a key `mp_first` is not already in `M`. ## mp_map_replace template using mp_map_replace = /*...*/; If the map `M` does not contain an element with a key `mp_first`, inserts it (using `mp_push_back`); otherwise, replaces the existing element with `T`. ## mp_map_update template class F> using mp_map_update = /*...*/; If the map `M` does not contain an element with a key `mp_first`, inserts it (using `mp_push_back`); otherwise, replaces the existing element `L` with `L>`. ## mp_map_erase template using mp_map_erase = /*...*/; If the map `M` contains an element with a key `K`, removes it.