[LLD] [COFF] Handle undefined weak symbols in LTO (#70430)
[llvm-project.git] / libcxx / modules / std / array.inc
blobd55779c8bd128be8fe93323fb9b523cba26754f7
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 {
12   // [array], class template array
13   using std::array;
15   using std::operator==;
16   using std::operator<=>;
18   // [array.special], specialized algorithms
19   using std::swap;
21   // [array.creation], array creation functions
22   using std::to_array;
24   // [array.tuple], tuple interface
25   using std::get;
26   using std::tuple_element;
27   using std::tuple_size;
29 } // namespace std