106 class basic_string_view
108 static_assert(!is_array_v<_CharT>);
109 static_assert(is_trivial_v<_CharT> && is_standard_layout_v<_CharT>);
110 static_assert(is_same_v<_CharT, typename _Traits::char_type>);
115 using traits_type = _Traits;
116 using value_type = _CharT;
117 using pointer = value_type*;
118 using const_pointer =
const value_type*;
119 using reference = value_type&;
120 using const_reference =
const value_type&;
121 using const_iterator =
const value_type*;
122 using iterator = const_iterator;
124 using reverse_iterator = const_reverse_iterator;
125 using size_type = size_t;
126 using difference_type = ptrdiff_t;
127 static constexpr size_type npos = size_type(-1);
132 basic_string_view() noexcept
133 : _M_len{0}, _M_str{
nullptr}
136 constexpr basic_string_view(
const basic_string_view&)
noexcept =
default;
138 [[__gnu__::__nonnull__]]
140 basic_string_view(
const _CharT* __str) noexcept
141 : _M_len{traits_type::length(__str)},
146 basic_string_view(
const _CharT* __str, size_type __len) noexcept
147 : _M_len{__len}, _M_str{__str}
150#if __cplusplus >= 202002L && __cpp_lib_concepts
151 template<contiguous_iterator _It, sized_sentinel_for<_It> _End>
152 requires same_as<iter_value_t<_It>, _CharT>
153 && (!convertible_to<_End, size_type>)
155 basic_string_view(_It __first, _End __last)
156 noexcept(
noexcept(__last - __first))
160#if __cplusplus > 202002L
161 template<
typename _Range,
typename _DRange = remove_cvref_t<_Range>>
162 requires (!is_same_v<_DRange, basic_string_view>)
163 && ranges::contiguous_range<_Range>
164 && ranges::sized_range<_Range>
165 && is_same_v<ranges::range_value_t<_Range>, _CharT>
166 && (!is_convertible_v<_Range, const _CharT*>)
167 && (!
requires (_DRange& __d) {
168 __d.operator ::std::basic_string_view<_CharT, _Traits>();
171 basic_string_view(_Range&& __r)
172 noexcept(
noexcept(ranges::size(__r)) &&
noexcept(ranges::data(__r)))
173 : _M_len(ranges::size(__r)), _M_str(ranges::data(__r))
176 basic_string_view(nullptr_t) =
delete;
180 constexpr basic_string_view&
181 operator=(
const basic_string_view&)
noexcept =
default;
186 constexpr const_iterator
187 begin()
const noexcept
188 {
return this->_M_str; }
191 constexpr const_iterator
193 {
return this->_M_str + this->_M_len; }
196 constexpr const_iterator
197 cbegin()
const noexcept
198 {
return this->_M_str; }
201 constexpr const_iterator
202 cend()
const noexcept
203 {
return this->_M_str + this->_M_len; }
206 constexpr const_reverse_iterator
207 rbegin()
const noexcept
208 {
return const_reverse_iterator(this->end()); }
211 constexpr const_reverse_iterator
212 rend()
const noexcept
213 {
return const_reverse_iterator(this->begin()); }
216 constexpr const_reverse_iterator
217 crbegin()
const noexcept
218 {
return const_reverse_iterator(this->end()); }
221 constexpr const_reverse_iterator
222 crend()
const noexcept
223 {
return const_reverse_iterator(this->begin()); }
229 size()
const noexcept
230 {
return this->_M_len; }
234 length()
const noexcept
239 max_size()
const noexcept
241 return (npos -
sizeof(size_type) -
sizeof(
void*))
242 /
sizeof(value_type) / 4;
247 empty()
const noexcept
248 {
return this->_M_len == 0; }
253 constexpr const_reference
254 operator[](size_type __pos)
const noexcept
256 __glibcxx_assert(__pos < this->_M_len);
257 return *(this->_M_str + __pos);
261 constexpr const_reference
262 at(size_type __pos)
const
265 __throw_out_of_range_fmt(__N(
"basic_string_view::at: __pos "
266 "(which is %zu) >= this->size() "
267 "(which is %zu)"), __pos, this->size());
268 return *(this->_M_str + __pos);
272 constexpr const_reference
273 front()
const noexcept
275 __glibcxx_assert(this->_M_len > 0);
276 return *this->_M_str;
280 constexpr const_reference
281 back()
const noexcept
283 __glibcxx_assert(this->_M_len > 0);
284 return *(this->_M_str + this->_M_len - 1);
288 constexpr const_pointer
289 data()
const noexcept
290 {
return this->_M_str; }
295 remove_prefix(size_type __n)
noexcept
297 __glibcxx_assert(this->_M_len >= __n);
303 remove_suffix(size_type __n)
noexcept
305 __glibcxx_assert(this->_M_len >= __n);
310 swap(basic_string_view& __sv)
noexcept
321 copy(_CharT* __str, size_type __n, size_type __pos = 0)
const
323 __glibcxx_requires_string_len(__str, __n);
324 __pos = std::__sv_check(size(), __pos,
"basic_string_view::copy");
328 traits_type::copy(__str, data() + __pos, __rlen);
333 constexpr basic_string_view
334 substr(size_type __pos = 0, size_type __n = npos)
const noexcept(
false)
336 __pos = std::__sv_check(size(), __pos,
"basic_string_view::substr");
338 return basic_string_view{_M_str + __pos, __rlen};
343 compare(basic_string_view __str)
const noexcept
345 const size_type __rlen =
std::min(this->_M_len, __str._M_len);
346 int __ret = traits_type::compare(this->_M_str, __str._M_str, __rlen);
348 __ret = _S_compare(this->_M_len, __str._M_len);
354 compare(size_type __pos1, size_type __n1, basic_string_view __str)
const
355 {
return this->substr(__pos1, __n1).compare(__str); }
359 compare(size_type __pos1, size_type __n1,
360 basic_string_view __str, size_type __pos2, size_type __n2)
const
362 return this->substr(__pos1, __n1).compare(__str.substr(__pos2, __n2));
365 [[nodiscard, __gnu__::__nonnull__]]
367 compare(
const _CharT* __str)
const noexcept
368 {
return this->compare(basic_string_view{__str}); }
370 [[nodiscard, __gnu__::__nonnull__]]
372 compare(size_type __pos1, size_type __n1,
const _CharT* __str)
const
373 {
return this->substr(__pos1, __n1).compare(basic_string_view{__str}); }
377 compare(size_type __pos1, size_type __n1,
378 const _CharT* __str, size_type __n2)
const noexcept(
false)
380 return this->substr(__pos1, __n1)
381 .compare(basic_string_view(__str, __n2));
384#ifdef __cpp_lib_starts_ends_with
387 starts_with(basic_string_view __x)
const noexcept
389 return _M_len >= __x._M_len
390 && traits_type::compare(_M_str, __x._M_str, __x._M_len) == 0;
395 starts_with(_CharT __x)
const noexcept
396 {
return !this->empty() && traits_type::eq(this->front(), __x); }
398 [[nodiscard, __gnu__::__nonnull__]]
400 starts_with(
const _CharT* __x)
const noexcept
401 {
return this->starts_with(basic_string_view(__x)); }
405 ends_with(basic_string_view __x)
const noexcept
407 const auto __len = this->size();
408 const auto __xlen = __x.size();
409 return __len >= __xlen
410 && traits_type::compare(end() - __xlen, __x.data(), __xlen) == 0;
415 ends_with(_CharT __x)
const noexcept
416 {
return !this->empty() && traits_type::eq(this->back(), __x); }
418 [[nodiscard, __gnu__::__nonnull__]]
420 ends_with(
const _CharT* __x)
const noexcept
421 {
return this->ends_with(basic_string_view(__x)); }
424#if __cplusplus > 202002L
425#if _GLIBCXX_HOSTED && !defined(__cpp_lib_string_contains)
428# error "libstdc++ bug: string_contains not defined when it should be"
432 contains(basic_string_view __x)
const noexcept
433 {
return this->find(__x) != npos; }
437 contains(_CharT __x)
const noexcept
438 {
return this->find(__x) != npos; }
440 [[nodiscard, __gnu__::__nonnull__]]
442 contains(
const _CharT* __x)
const noexcept
443 {
return this->find(__x) != npos; }
450 find(basic_string_view __str, size_type __pos = 0)
const noexcept
451 {
return this->find(__str._M_str, __pos, __str._M_len); }
455 find(_CharT __c, size_type __pos = 0)
const noexcept;
459 find(
const _CharT* __str, size_type __pos, size_type __n)
const noexcept;
461 [[nodiscard, __gnu__::__nonnull__]]
463 find(
const _CharT* __str, size_type __pos = 0)
const noexcept
464 {
return this->find(__str, __pos, traits_type::length(__str)); }
468 rfind(basic_string_view __str, size_type __pos = npos)
const noexcept
469 {
return this->rfind(__str._M_str, __pos, __str._M_len); }
473 rfind(_CharT __c, size_type __pos = npos)
const noexcept;
477 rfind(
const _CharT* __str, size_type __pos, size_type __n)
const noexcept;
479 [[nodiscard, __gnu__::__nonnull__]]
481 rfind(
const _CharT* __str, size_type __pos = npos)
const noexcept
482 {
return this->rfind(__str, __pos, traits_type::length(__str)); }
486 find_first_of(basic_string_view __str, size_type __pos = 0)
const noexcept
487 {
return this->find_first_of(__str._M_str, __pos, __str._M_len); }
491 find_first_of(_CharT __c, size_type __pos = 0)
const noexcept
492 {
return this->find(__c, __pos); }
496 find_first_of(
const _CharT* __str, size_type __pos,
497 size_type __n)
const noexcept;
499 [[nodiscard, __gnu__::__nonnull__]]
501 find_first_of(
const _CharT* __str, size_type __pos = 0)
const noexcept
502 {
return this->find_first_of(__str, __pos, traits_type::length(__str)); }
506 find_last_of(basic_string_view __str,
507 size_type __pos = npos)
const noexcept
508 {
return this->find_last_of(__str._M_str, __pos, __str._M_len); }
512 find_last_of(_CharT __c, size_type __pos=npos)
const noexcept
513 {
return this->rfind(__c, __pos); }
517 find_last_of(
const _CharT* __str, size_type __pos,
518 size_type __n)
const noexcept;
520 [[nodiscard, __gnu__::__nonnull__]]
522 find_last_of(
const _CharT* __str, size_type __pos = npos)
const noexcept
523 {
return this->find_last_of(__str, __pos, traits_type::length(__str)); }
527 find_first_not_of(basic_string_view __str,
528 size_type __pos = 0)
const noexcept
529 {
return this->find_first_not_of(__str._M_str, __pos, __str._M_len); }
533 find_first_not_of(_CharT __c, size_type __pos = 0)
const noexcept;
537 find_first_not_of(
const _CharT* __str,
538 size_type __pos, size_type __n)
const noexcept;
540 [[nodiscard, __gnu__::__nonnull__]]
542 find_first_not_of(
const _CharT* __str, size_type __pos = 0)
const noexcept
544 return this->find_first_not_of(__str, __pos,
545 traits_type::length(__str));
550 find_last_not_of(basic_string_view __str,
551 size_type __pos = npos)
const noexcept
552 {
return this->find_last_not_of(__str._M_str, __pos, __str._M_len); }
556 find_last_not_of(_CharT __c, size_type __pos = npos)
const noexcept;
560 find_last_not_of(
const _CharT* __str,
561 size_type __pos, size_type __n)
const noexcept;
563 [[nodiscard, __gnu__::__nonnull__]]
565 find_last_not_of(
const _CharT* __str,
566 size_type __pos = npos)
const noexcept
568 return this->find_last_not_of(__str, __pos,
569 traits_type::length(__str));
575 _S_compare(size_type __n1, size_type __n2)
noexcept
578 const difference_type __diff = __n1 - __n2;
579 if (__diff > __limits::__max)
580 return __limits::__max;
581 if (__diff < __limits::__min)
582 return __limits::__min;
583 return static_cast<int>(__diff);
587 const _CharT* _M_str;