[SmallPtrSet] Remove SmallArray member (NFC) (#118099)
[llvm-project.git] / libcxx / modules / std / charconv.inc
blob6fee460108d65ceacc36288dc045bf439578338c
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   // floating-point format for primitive numerical conversion
13   using std::chars_format;
15   // chars_format is a bitmask type.
16   // [bitmask.types] specified operators
17   using std::operator&;
18   using std::operator&=;
19   using std::operator^;
20   using std::operator^=;
21   using std::operator|;
22   using std::operator|=;
23   using std::operator~;
25   // [charconv.to.chars], primitive numerical output conversion
26   using std::to_chars_result;
28   using std::to_chars;
30   // [charconv.from.chars], primitive numerical input conversion
31   using std::from_chars_result;
33   using std::from_chars;
34 } // namespace std