Add the initializes attribute inference (#117104)
[llvm-project.git] / libcxx / modules / std / forward_list.inc
blobc9585b5523b36930a78978bde3e8bdf31698f7e2
1 // -*- C++ -*-
2 //===----------------------------------------------------------------------===//
3 //
4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // See https://llvm.org/LICENSE.txt for license information.
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //
8 //===----------------------------------------------------------------------===//
10 export namespace std {
11   // [forward.list], class template forward_list
12   using std::forward_list;
14   using std::operator==;
15   using std::operator<=>;
17   using std::swap;
19   // [forward.list.erasure], erasure
20   using std::erase;
21   using std::erase_if;
23   namespace pmr {
24     using std::pmr::forward_list;
25   }
26 } // namespace std