http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/p0458r2.html
This patch adds partial support for p0458, adding a contains member function
for associative containers. This feature allows users to query whether
a key type exists in an associative container.
Note:
- This patch does not add support for heterogeneous key overloads for contains. A future patch will follow for support this. Currently, the unordered associative containers do not yet have a notion of transparent lookups.
- This patch does not add support for contains with precomputed hashes. A future patch will follow for support for this.