Re-sync with internal repository
[hiphop-php.git] / third-party / folly / src / folly / lang / ToAscii.cpp
blobaeba8c057c6e306bd7049e3df4f2c0fe3e34e2a1
1 /*
2 * Copyright (c) Meta Platforms, Inc. and affiliates.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 #include <folly/lang/ToAscii.h>
19 namespace folly {
21 namespace detail {
23 template to_ascii_array<8, to_ascii_alphabet_lower>::data_type_ const
24 to_ascii_array<8, to_ascii_alphabet_lower>::data;
25 template to_ascii_array<10, to_ascii_alphabet_lower>::data_type_ const
26 to_ascii_array<10, to_ascii_alphabet_lower>::data;
27 template to_ascii_array<16, to_ascii_alphabet_lower>::data_type_ const
28 to_ascii_array<16, to_ascii_alphabet_lower>::data;
29 template to_ascii_array<8, to_ascii_alphabet_upper>::data_type_ const
30 to_ascii_array<8, to_ascii_alphabet_upper>::data;
31 template to_ascii_array<10, to_ascii_alphabet_upper>::data_type_ const
32 to_ascii_array<10, to_ascii_alphabet_upper>::data;
33 template to_ascii_array<16, to_ascii_alphabet_upper>::data_type_ const
34 to_ascii_array<16, to_ascii_alphabet_upper>::data;
36 template to_ascii_table<8, to_ascii_alphabet_lower>::data_type_ const
37 to_ascii_table<8, to_ascii_alphabet_lower>::data;
38 template to_ascii_table<10, to_ascii_alphabet_lower>::data_type_ const
39 to_ascii_table<10, to_ascii_alphabet_lower>::data;
40 template to_ascii_table<16, to_ascii_alphabet_lower>::data_type_ const
41 to_ascii_table<16, to_ascii_alphabet_lower>::data;
42 template to_ascii_table<8, to_ascii_alphabet_upper>::data_type_ const
43 to_ascii_table<8, to_ascii_alphabet_upper>::data;
44 template to_ascii_table<10, to_ascii_alphabet_upper>::data_type_ const
45 to_ascii_table<10, to_ascii_alphabet_upper>::data;
46 template to_ascii_table<16, to_ascii_alphabet_upper>::data_type_ const
47 to_ascii_table<16, to_ascii_alphabet_upper>::data;
49 template to_ascii_powers<8, uint64_t>::data_type_ const
50 to_ascii_powers<8, uint64_t>::data;
51 template to_ascii_powers<10, uint64_t>::data_type_ const
52 to_ascii_powers<10, uint64_t>::data;
53 template to_ascii_powers<16, uint64_t>::data_type_ const
54 to_ascii_powers<16, uint64_t>::data;
56 } // namespace detail
58 } // namespace folly