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 // floating-point format for primitive numerical conversion
13 using std::chars_format;
15 // chars_format is a bitmask type.
16 // [bitmask.types] specified operators
18 using std::operator&=;
20 using std::operator^=;
22 using std::operator|=;
25 // [charconv.to.chars], primitive numerical output conversion
26 using std::to_chars_result;
30 // [charconv.from.chars], primitive numerical input conversion
31 using std::from_chars_result;
33 using std::from_chars;