2017-06-07 00:02:25 +03:00
|
|
|
////
|
|
|
|
|
Copyright 2017 Peter Dimov
|
2017-03-14 22:57:07 +02:00
|
|
|
|
2017-06-07 00:02:25 +03:00
|
|
|
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, <boost/mp11/map.hpp>
|
|
|
|
|
:toc:
|
2017-06-07 00:13:13 +03:00
|
|
|
:toc-title:
|
2017-06-07 00:02:25 +03:00
|
|
|
:idprefix:
|
2017-03-14 22:57:07 +02:00
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
2017-06-07 00:02:25 +03:00
|
|
|
## mp_map_find<M, K>
|
|
|
|
|
|
2017-03-14 22:57:07 +02:00
|
|
|
template<class M, class K> using mp_map_find = /*...*/;
|
|
|
|
|
|
|
|
|
|
`mp_map_find<M, K>` is an alias for the element of the map `M` with a key `K`, or for `void`, if there is no such element.
|
|
|
|
|
|
2017-06-07 00:02:25 +03:00
|
|
|
## mp_map_contains<M, K>
|
|
|
|
|
|
2017-03-14 22:57:07 +02:00
|
|
|
template<class M, class K> using mp_map_contains = mp_not<std::is_same<mp_map_find<M, K>, void>>;
|
|
|
|
|
|
2017-03-25 03:02:59 +02:00
|
|
|
`mp_map_contains<M, K>` is `mp_true` if the map `M` contains an element with a key `K`, `mp_false` otherwise.
|
2017-03-14 22:57:07 +02:00
|
|
|
|
2017-06-07 00:02:25 +03:00
|
|
|
## mp_map_insert<M, T>
|
|
|
|
|
|
2017-03-14 22:57:07 +02:00
|
|
|
template<class M, class T> using mp_map_insert = mp_if< mp_map_contains<M, mp_first<T>>, M, mp_push_back<M, T> >;
|
|
|
|
|
|
|
|
|
|
Inserts the element `T` into the map `M`, if an element with a key `mp_first<T>` is not already in `M`.
|
|
|
|
|
|
2017-06-07 00:02:25 +03:00
|
|
|
## mp_map_replace<M, T>
|
|
|
|
|
|
2017-03-14 22:57:07 +02:00
|
|
|
template<class M, class T> using mp_map_replace = /*...*/;
|
|
|
|
|
|
|
|
|
|
If the map `M` does not contain an element with a key `mp_first<T>`, inserts it (using `mp_push_back<M, T>`); otherwise,
|
|
|
|
|
replaces the existing element with `T`.
|
|
|
|
|
|
2017-06-07 00:02:25 +03:00
|
|
|
## mp_map_update<M, T, F>
|
|
|
|
|
|
2017-03-14 22:57:07 +02:00
|
|
|
template<class M, class T, template<class...> class F> using mp_map_update = /*...*/;
|
|
|
|
|
|
|
|
|
|
If the map `M` does not contain an element with a key `mp_first<T>`, inserts it (using `mp_push_back<M, T>`); otherwise,
|
|
|
|
|
replaces the existing element `L<X, Y...>` with `L<X, F<X, Y...>>`.
|
|
|
|
|
|
2017-06-07 00:02:25 +03:00
|
|
|
## mp_map_erase<M, K>
|
|
|
|
|
|
2017-03-14 22:57:07 +02:00
|
|
|
template<class M, class K> using mp_map_erase = /*...*/;
|
|
|
|
|
|
|
|
|
|
If the map `M` contains an element with a key `K`, removes it.
|