34#ifndef _GLIBCXX_EXPERIMENTAL_STRING_VIEW
35#define _GLIBCXX_EXPERIMENTAL_STRING_VIEW 1
37#pragma GCC system_header
39#if __cplusplus >= 201402L
46namespace std _GLIBCXX_VISIBILITY(default)
48_GLIBCXX_BEGIN_NAMESPACE_VERSION
52inline namespace fundamentals_v1
54#define __cpp_lib_experimental_string_view 201411
75 template<
typename _CharT,
typename _Traits = std::
char_traits<_CharT>>
81 using traits_type = _Traits;
83 using pointer = _CharT*;
84 using const_pointer =
const _CharT*;
85 using reference = _CharT&;
86 using const_reference =
const _CharT&;
87 using const_iterator =
const _CharT*;
99 : _M_len{0}, _M_str{
nullptr}
104 template<
typename _Allocator>
106 _Allocator>& __str) noexcept
107 : _M_len{__str.length()}, _M_str{__str.data()}
111 : _M_len{__str ==
nullptr ? 0 : traits_type::length(__str)},
125 constexpr const_iterator
126 begin()
const noexcept
127 {
return this->_M_str; }
129 constexpr const_iterator
131 {
return this->_M_str + this->_M_len; }
133 constexpr const_iterator
135 {
return this->_M_str; }
137 constexpr const_iterator
138 cend()
const noexcept
139 {
return this->_M_str + this->_M_len; }
141 const_reverse_iterator
143 {
return const_reverse_iterator(this->
end()); }
145 const_reverse_iterator
146 rend()
const noexcept
147 {
return const_reverse_iterator(this->
begin()); }
149 const_reverse_iterator
151 {
return const_reverse_iterator(this->
end()); }
153 const_reverse_iterator
154 crend()
const noexcept
155 {
return const_reverse_iterator(this->
begin()); }
160 size()
const noexcept
161 {
return this->_M_len; }
164 length()
const noexcept
168 max_size()
const noexcept
170 return (npos -
sizeof(
size_type) -
sizeof(
void*))
174 _GLIBCXX_NODISCARD
constexpr bool
175 empty()
const noexcept
176 {
return this->_M_len == 0; }
180 constexpr const _CharT&
183 __glibcxx_assert(__pos < this->_M_len);
184 return *(this->_M_str + __pos);
187 constexpr const _CharT&
190 return __pos < this->_M_len
191 ? *(this->_M_str + __pos)
192 : (__throw_out_of_range_fmt(__N(
"basic_string_view::at: __pos "
193 "(which is %zu) >= this->size() "
195 __pos, this->
size()),
199 constexpr const _CharT&
202 __glibcxx_assert(this->_M_len > 0);
203 return *this->_M_str;
206 constexpr const _CharT&
209 __glibcxx_assert(this->_M_len > 0);
210 return *(this->_M_str + this->_M_len - 1);
213 constexpr const _CharT*
214 data()
const noexcept
215 {
return this->_M_str; }
222 __glibcxx_assert(this->_M_len >= __n);
229 { this->_M_len -= __n; }
242 template<
typename _Allocator>
245 return { this->_M_str, this->_M_len };
248 template<
typename _Allocator = std::allocator<_CharT>>
250 to_string(
const _Allocator& __alloc = _Allocator())
const
252 return { this->_M_str, this->_M_len, __alloc };
258 __glibcxx_requires_string_len(__str, __n);
259 if (__pos > this->_M_len)
260 __throw_out_of_range_fmt(__N(
"basic_string_view::copy: __pos "
261 "(which is %zu) > this->size() "
263 __pos, this->
size());
265 for (
auto __begin = this->_M_str + __pos,
266 __end = __begin + __rlen; __begin != __end;)
267 *__str++ = *__begin++;
277 return __pos <= this->_M_len
280 : (__throw_out_of_range_fmt(__N(
"basic_string_view::substr: __pos "
281 "(which is %zu) > this->size() "
289 int __ret = traits_type::compare(this->_M_str, __str._M_str,
290 std::min(this->_M_len, __str._M_len));
292 __ret = _S_compare(this->_M_len, __str._M_len);
298 {
return this->substr(__pos1, __n1).compare(__str); }
303 {
return this->substr(__pos1, __n1).compare(__str.substr(__pos2, __n2)); }
306 compare(
const _CharT* __str)
const noexcept
315 const _CharT* __str,
size_type __n2)
const
317 return this->substr(__pos1, __n1)
323 {
return this->find(__str._M_str, __pos, __str._M_len); }
326 find(_CharT __c,
size_type __pos=0)
const noexcept;
332 find(
const _CharT* __str,
size_type __pos=0)
const noexcept
333 {
return this->find(__str, __pos, traits_type::length(__str)); }
337 {
return this->rfind(__str._M_str, __pos, __str._M_len); }
340 rfind(_CharT __c,
size_type __pos = npos)
const noexcept;
346 rfind(
const _CharT* __str,
size_type __pos = npos)
const noexcept
347 {
return this->rfind(__str, __pos, traits_type::length(__str)); }
351 {
return this->find_first_of(__str._M_str, __pos, __str._M_len); }
354 find_first_of(_CharT __c,
size_type __pos = 0)
const noexcept
355 {
return this->find(__c, __pos); }
361 find_first_of(
const _CharT* __str,
size_type __pos = 0)
const noexcept
362 {
return this->find_first_of(__str, __pos, traits_type::length(__str)); }
367 {
return this->find_last_of(__str._M_str, __pos, __str._M_len); }
370 find_last_of(_CharT __c,
size_type __pos=npos)
const noexcept
371 {
return this->rfind(__c, __pos); }
377 find_last_of(
const _CharT* __str,
size_type __pos = npos)
const noexcept
378 {
return this->find_last_of(__str, __pos, traits_type::length(__str)); }
383 {
return this->find_first_not_of(__str._M_str, __pos, __str._M_len); }
386 find_first_not_of(_CharT __c,
size_type __pos = 0)
const noexcept;
389 find_first_not_of(
const _CharT* __str,
393 find_first_not_of(
const _CharT* __str,
size_type __pos = 0)
const noexcept
395 return this->find_first_not_of(__str, __pos,
396 traits_type::length(__str));
402 {
return this->find_last_not_of(__str._M_str, __pos, __str._M_len); }
405 find_last_not_of(_CharT __c,
size_type __pos = npos)
const noexcept;
408 find_last_not_of(
const _CharT* __str,
412 find_last_not_of(
const _CharT* __str,
415 return this->find_last_not_of(__str, __pos,
416 traits_type::length(__str));
432 const _CharT* _M_str;
442 template<
typename _CharT,
typename _Traits>
446 {
return __x.size() == __y.size() && __x.compare(__y) == 0; }
448 template<
typename _CharT,
typename _Traits>
453 {
return __x.size() == __y.size() && __x.compare(__y) == 0; }
455 template<
typename _CharT,
typename _Traits>
457 operator==(__type_identity_t<basic_string_view<_CharT, _Traits>> __x,
458 basic_string_view<_CharT, _Traits> __y)
noexcept
459 {
return __x.size() == __y.size() && __x.compare(__y) == 0; }
461 template<
typename _CharT,
typename _Traits>
465 {
return !(__x == __y); }
467 template<
typename _CharT,
typename _Traits>
472 {
return !(__x == __y); }
474 template<
typename _CharT,
typename _Traits>
478 {
return !(__x == __y); }
480 template<
typename _CharT,
typename _Traits>
484 {
return __x.compare(__y) < 0; }
486 template<
typename _CharT,
typename _Traits>
491 {
return __x.compare(__y) < 0; }
493 template<
typename _CharT,
typename _Traits>
497 {
return __x.compare(__y) < 0; }
499 template<
typename _CharT,
typename _Traits>
503 {
return __x.compare(__y) > 0; }
505 template<
typename _CharT,
typename _Traits>
510 {
return __x.compare(__y) > 0; }
512 template<
typename _CharT,
typename _Traits>
516 {
return __x.compare(__y) > 0; }
518 template<
typename _CharT,
typename _Traits>
522 {
return __x.compare(__y) <= 0; }
524 template<
typename _CharT,
typename _Traits>
529 {
return __x.compare(__y) <= 0; }
531 template<
typename _CharT,
typename _Traits>
535 {
return __x.compare(__y) <= 0; }
537 template<
typename _CharT,
typename _Traits>
541 {
return __x.compare(__y) >= 0; }
543 template<
typename _CharT,
typename _Traits>
548 {
return __x.compare(__y) >= 0; }
550 template<
typename _CharT,
typename _Traits>
554 {
return __x.compare(__y) >= 0; }
557 template<
typename _CharT,
typename _Traits>
558 inline basic_ostream<_CharT, _Traits>&
559 operator<<(basic_ostream<_CharT, _Traits>& __os,
561 {
return __ostream_insert(__os, __str.data(), __str.size()); }
567#ifdef _GLIBCXX_USE_WCHAR_T
570#ifdef _GLIBCXX_USE_CHAR8_T
580 template<
typename _Tp>
585 :
public __hash_base<size_t, experimental::string_view>
588 operator()(
const experimental::string_view& __str)
const noexcept
589 {
return std::_Hash_impl::hash(__str.data(), __str.length()); }
596#ifdef _GLIBCXX_USE_WCHAR_T
599 :
public __hash_base<size_t, wstring>
602 operator()(
const experimental::wstring_view& __s)
const noexcept
603 {
return std::_Hash_impl::hash(__s.data(),
604 __s.length() *
sizeof(
wchar_t)); }
612#ifdef _GLIBCXX_USE_CHAR8_T
615 :
public __hash_base<size_t, experimental::u8string_view>
618 operator()(
const experimental::u8string_view& __s)
const noexcept
619 {
return std::_Hash_impl::hash(__s.data(), __s.length()); }
629 :
public __hash_base<size_t, experimental::u16string_view>
632 operator()(
const experimental::u16string_view& __s)
const noexcept
633 {
return std::_Hash_impl::hash(__s.data(),
634 __s.length() *
sizeof(
char16_t)); }
643 :
public __hash_base<size_t, experimental::u32string_view>
646 operator()(
const experimental::u32string_view& __s)
const noexcept
647 {
return std::_Hash_impl::hash(__s.data(),
648 __s.length() *
sizeof(
char32_t)); }
658 inline namespace literals
660 inline namespace string_view_literals
662#pragma GCC diagnostic push
663#pragma GCC diagnostic ignored "-Wliteral-suffix"
664 inline constexpr basic_string_view<char>
665 operator""sv(
const char* __str,
size_t __len)
noexcept
666 {
return basic_string_view<char>{__str, __len}; }
668#ifdef _GLIBCXX_USE_WCHAR_T
669 inline constexpr basic_string_view<wchar_t>
670 operator""sv(
const wchar_t* __str,
size_t __len)
noexcept
671 {
return basic_string_view<wchar_t>{__str, __len}; }
674#ifdef _GLIBCXX_USE_CHAR8_T
675 inline constexpr basic_string_view<char8_t>
676 operator""sv(
const char8_t* __str,
size_t __len)
noexcept
677 {
return basic_string_view<char8_t>{__str, __len}; }
680 inline constexpr basic_string_view<char16_t>
681 operator""sv(
const char16_t* __str,
size_t __len)
noexcept
682 {
return basic_string_view<char16_t>{__str, __len}; }
684 inline constexpr basic_string_view<char32_t>
685 operator""sv(
const char32_t* __str,
size_t __len)
noexcept
686 {
return basic_string_view<char32_t>{__str, __len}; }
687#pragma GCC diagnostic pop
692#if __cpp_lib_concepts
696 template<
typename _CharT,
typename _Traits>
697 inline constexpr bool
698 enable_borrowed_range<experimental::basic_string_view<_CharT, _Traits>>
702 template<
typename _CharT,
typename _Traits>
703 inline constexpr bool
704 enable_view<experimental::basic_string_view<_CharT, _Traits>> =
true;
708_GLIBCXX_END_NAMESPACE_VERSION
integral_constant< bool, false > false_type
The type used as a compile-time boolean with false value.
void swap(any &__x, any &__y) noexcept
Exchange the states of two any objects.
_Tp * end(valarray< _Tp > &__va) noexcept
Return an iterator pointing to one past the last element of the valarray.
_Tp * begin(valarray< _Tp > &__va) noexcept
Return an iterator pointing to the first element of the valarray.
constexpr const _Tp & min(const _Tp &, const _Tp &)
This does what you think it does.
ISO C++ entities toplevel namespace is std.
constexpr auto crend(const _Container &__cont) -> decltype(std::rend(__cont))
Return a reverse iterator pointing one past the first element of the const container.
constexpr auto rend(_Container &__cont) -> decltype(__cont.rend())
Return a reverse iterator pointing one past the first element of the container.
constexpr auto cend(const _Container &__cont) noexcept(noexcept(std::end(__cont))) -> decltype(std::end(__cont))
Return an iterator pointing to one past the last element of the const container.
constexpr auto empty(const _Container &__cont) noexcept(noexcept(__cont.empty())) -> decltype(__cont.empty())
Return whether a container is empty.
constexpr auto size(const _Container &__cont) noexcept(noexcept(__cont.size())) -> decltype(__cont.size())
Return the size of a container.
constexpr auto rbegin(_Container &__cont) -> decltype(__cont.rbegin())
Return a reverse iterator pointing to the last element of the container.
constexpr auto crbegin(const _Container &__cont) -> decltype(std::rbegin(__cont))
Return a reverse iterator pointing to the last element of the const container.
constexpr auto data(_Container &__cont) noexcept(noexcept(__cont.data())) -> decltype(__cont.data())
Return the data pointer of a container.
constexpr auto cbegin(const _Container &__cont) noexcept(noexcept(std::begin(__cont))) -> decltype(std::begin(__cont))
Return an iterator pointing to the first element of the const container.
Namespace for features defined in ISO Technical Specifications.
static constexpr _Tp max() noexcept
static constexpr _Tp min() noexcept
A non-owning reference to a string.
Primary class template hash.
Managing sequences of characters and character-like objects.
A non-owning reference to a string.