2023-02-28 20:29:26 +01:00
|
|
|
|
// -*- 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
|
|
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
|
export namespace std {
|
2025-03-23 14:45:21 +00:00
|
|
|
|
#if _LIBCPP_STD_VER >= 23
|
2023-02-28 20:29:26 +01:00
|
|
|
|
// [flat.set], class template flat_set
|
|
|
|
|
using std::flat_set;
|
|
|
|
|
|
|
|
|
|
using std::sorted_unique;
|
|
|
|
|
using std::sorted_unique_t;
|
|
|
|
|
|
|
|
|
|
using std::uses_allocator;
|
|
|
|
|
|
|
|
|
|
// [flat.set.erasure], erasure for flat_set
|
|
|
|
|
using std::erase_if;
|
|
|
|
|
|
|
|
|
|
// [flat.multiset], class template flat_multiset
|
|
|
|
|
using std::flat_multiset;
|
|
|
|
|
|
|
|
|
|
using std::sorted_equivalent;
|
|
|
|
|
using std::sorted_equivalent_t;
|
2025-04-06 10:50:55 +01:00
|
|
|
|
#endif // _LIBCPP_STD_VER >= 23
|
2023-02-28 20:29:26 +01:00
|
|
|
|
} // namespace std
|