// -*- C++ -*- //===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef _LIBCPP_FLAT_MAP #define _LIBCPP_FLAT_MAP /* Header synopsis #include // see [compare.syn] #include // see [initializer.list.syn] namespace std { // [flat.map], class template flat_map template, class KeyContainer = vector, class MappedContainer = vector> class flat_map; struct sorted_unique_t { explicit sorted_unique_t() = default; }; inline constexpr sorted_unique_t sorted_unique{}; template struct uses_allocator, Allocator>; // [flat.map.erasure], erasure for flat_map template typename flat_map::size_type erase_if(flat_map& c, Predicate pred); */ #include <__assert> // all public C++ headers provide the assertion handler #include <__config> #include <__flat_map/flat_map.h> #include <__flat_map/sorted_unique.h> #include // standard required includes #include #include #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header #endif #endif // _LIBCPP_FLAT_MAP