2 //===----------------------------------------------------------------------===//
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
8 //===----------------------------------------------------------------------===//
10 export namespace std {
12 // [complex], class template complex
15 // [complex.ops], operators
21 using std::operator==;
22 #ifndef _LIBCPP_HAS_NO_LOCALIZATION
23 using std::operator>>;
24 using std::operator<<;
25 #endif // _LIBCPP_HAS_NO_LOCALIZATION
27 // [complex.value.ops], values
39 // [complex.transcendentals], transcendentals
62 #if _LIBCPP_STD_VER >= 26
63 // [complex.tuple], tuple interface
65 using std::tuple_element;
66 using std::tuple_size;
69 // [complex.literals], complex literals
70 inline namespace literals {
71 inline namespace complex_literals {
72 using std::operator""il;
73 using std::operator""i;
74 using std::operator""if;
75 } // namespace complex_literals
76 } // namespace literals