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 // [complex.literals], complex literals
63 inline namespace literals {
64 inline namespace complex_literals {
65 using std::operator""il;
66 using std::operator""i;
67 using std::operator""if;
68 } // namespace complex_literals
69 } // namespace literals