32 #ifndef _POD_CHAR_TRAITS_H
33 #define _POD_CHAR_TRAITS_H 1
35 #pragma GCC system_header
39 namespace __gnu_cxx _GLIBCXX_VISIBILITY(default)
41 _GLIBCXX_BEGIN_NAMESPACE_VERSION
48 template<
typename V,
typename I,
typename S = std::mbstate_t>
62 char_type ret = {
static_cast<value_type
>(v) };
68 to(
const char_type& c)
70 V2 ret = {
static_cast<V2
>(c.value) };
76 template<
typename V,
typename I,
typename S>
79 {
return lhs.value == rhs.value; }
81 template<
typename V,
typename I,
typename S>
84 {
return lhs.value < rhs.value; }
86 _GLIBCXX_END_NAMESPACE_VERSION
89 namespace std _GLIBCXX_VISIBILITY(default)
91 _GLIBCXX_BEGIN_NAMESPACE_VERSION
94 template<
typename V,
typename I,
typename S>
98 typedef typename char_type::int_type int_type;
99 typedef typename char_type::state_type state_type;
104 assign(char_type& __c1,
const char_type& __c2)
108 eq(
const char_type& __c1,
const char_type& __c2)
109 {
return __c1 == __c2; }
112 lt(
const char_type& __c1,
const char_type& __c2)
113 {
return __c1 < __c2; }
116 compare(
const char_type* __s1,
const char_type* __s2,
size_t __n)
118 for (
size_t __i = 0; __i < __n; ++__i)
119 if (!eq(__s1[__i], __s2[__i]))
120 return lt(__s1[__i], __s2[__i]) ? -1 : 1;
125 length(
const char_type* __s)
127 const char_type* __p = __s;
133 static const char_type*
134 find(
const char_type* __s,
size_t __n,
const char_type& __a)
136 for (
const char_type* __p = __s; size_t(__p - __s) < __n; ++__p)
143 move(char_type* __s1,
const char_type* __s2,
size_t __n)
145 return static_cast<char_type*
>
146 (__builtin_memmove(__s1, __s2, __n *
sizeof(char_type)));
150 copy(char_type* __s1,
const char_type* __s2,
size_t __n)
152 std::copy(__s2, __s2 + __n, __s1);
157 assign(char_type* __s,
size_t __n, char_type __a)
164 to_char_type(
const int_type& __i)
165 {
return char_type::template from(__i); }
168 to_int_type(
const char_type& __c)
169 {
return char_type::template to<int_type>(__c); }
172 eq_int_type(
const int_type& __c1,
const int_type& __c2)
173 {
return __c1 == __c2; }
178 int_type __r = { -1 };
183 not_eof(
const int_type& __c)
184 {
return eq_int_type(__c, eof()) ? int_type() : __c; }
187 _GLIBCXX_END_NAMESPACE_VERSION
_OI fill_n(_OI __first, _Size __n, const _Tp &__value)
Fills the range [first,first+n) with copies of value.
Class representing stream positions.
Basis for explicit traits specializations.
long long streamoff
Type used by fpos, char_traits, and char_traits.
A POD class that serves as a character abstraction class.
GNU extensions for public use.
constexpr std::remove_reference< _Tp >::type && move(_Tp &&__t) noexcept
Convert a value to an rvalue.
ISO C++ entities toplevel namespace is std.