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//===----------------------------------------------------------------------===//
9
10export namespace std {
11
12  // [array], class template array
13  using std::array;
14
15  using std::operator==;
16  using std::operator<=>;
17
18  // [array.special], specialized algorithms
19  using std::swap;
20
21  // [array.creation], array creation functions
22  using std::to_array;
23
24  // [array.tuple], tuple interface
25  using std::get;
26  using std::tuple_element;
27  using std::tuple_size;
28
29} // namespace std
30