1053d81ceSMarshall Clow// -*- C++ -*- 2eb8650a7SLouis Dionne//===----------------------------------------------------------------------===// 3053d81ceSMarshall Clow// 42946cd70SChandler Carruth// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 52946cd70SChandler Carruth// See https://llvm.org/LICENSE.txt for license information. 62946cd70SChandler Carruth// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7053d81ceSMarshall Clow// 8053d81ceSMarshall Clow//===----------------------------------------------------------------------===// 9053d81ceSMarshall Clow 10053d81ceSMarshall Clow#ifndef _LIBCPP_STRING_VIEW 11053d81ceSMarshall Clow#define _LIBCPP_STRING_VIEW 12053d81ceSMarshall Clow 13053d81ceSMarshall Clow/* 14053d81ceSMarshall Clowstring_view synopsis 15053d81ceSMarshall Clow 16053d81ceSMarshall Clownamespace std { 17053d81ceSMarshall Clow 18053d81ceSMarshall Clow // 7.2, Class template basic_string_view 19053d81ceSMarshall Clow template<class charT, class traits = char_traits<charT>> 20053d81ceSMarshall Clow class basic_string_view; 21053d81ceSMarshall Clow 2201ace074SMark de Wever template<class charT, class traits> 23462f8f06SChristopher Di Bella inline constexpr bool ranges::enable_view<basic_string_view<charT, traits>> = true; 24462f8f06SChristopher Di Bella 25462f8f06SChristopher Di Bella template<class charT, class traits> 2601ace074SMark de Wever inline constexpr bool ranges::enable_borrowed_range<basic_string_view<charT, traits>> = true; // C++20 2701ace074SMark de Wever 28053d81ceSMarshall Clow // 7.9, basic_string_view non-member comparison functions 29053d81ceSMarshall Clow template<class charT, class traits> 30053d81ceSMarshall Clow constexpr bool operator==(basic_string_view<charT, traits> x, 31053d81ceSMarshall Clow basic_string_view<charT, traits> y) noexcept; 32053d81ceSMarshall Clow template<class charT, class traits> 33053d81ceSMarshall Clow constexpr bool operator!=(basic_string_view<charT, traits> x, 34053d81ceSMarshall Clow basic_string_view<charT, traits> y) noexcept; 35053d81ceSMarshall Clow template<class charT, class traits> 36053d81ceSMarshall Clow constexpr bool operator< (basic_string_view<charT, traits> x, 37053d81ceSMarshall Clow basic_string_view<charT, traits> y) noexcept; 38053d81ceSMarshall Clow template<class charT, class traits> 39053d81ceSMarshall Clow constexpr bool operator> (basic_string_view<charT, traits> x, 40053d81ceSMarshall Clow basic_string_view<charT, traits> y) noexcept; 41053d81ceSMarshall Clow template<class charT, class traits> 42053d81ceSMarshall Clow constexpr bool operator<=(basic_string_view<charT, traits> x, 43053d81ceSMarshall Clow basic_string_view<charT, traits> y) noexcept; 44053d81ceSMarshall Clow template<class charT, class traits> 45053d81ceSMarshall Clow constexpr bool operator>=(basic_string_view<charT, traits> x, 46053d81ceSMarshall Clow basic_string_view<charT, traits> y) noexcept; 47053d81ceSMarshall Clow // see below, sufficient additional overloads of comparison functions 48053d81ceSMarshall Clow 49053d81ceSMarshall Clow // 7.10, Inserters and extractors 50053d81ceSMarshall Clow template<class charT, class traits> 51053d81ceSMarshall Clow basic_ostream<charT, traits>& 52053d81ceSMarshall Clow operator<<(basic_ostream<charT, traits>& os, 53053d81ceSMarshall Clow basic_string_view<charT, traits> str); 54053d81ceSMarshall Clow 55053d81ceSMarshall Clow // basic_string_view typedef names 56053d81ceSMarshall Clow typedef basic_string_view<char> string_view; 5728f82becSMarek Kurdej typedef basic_string_view<char8_t> u8string_view; // C++20 58053d81ceSMarshall Clow typedef basic_string_view<char16_t> u16string_view; 59053d81ceSMarshall Clow typedef basic_string_view<char32_t> u32string_view; 60053d81ceSMarshall Clow typedef basic_string_view<wchar_t> wstring_view; 61053d81ceSMarshall Clow 62053d81ceSMarshall Clow template<class charT, class traits = char_traits<charT>> 63053d81ceSMarshall Clow class basic_string_view { 64053d81ceSMarshall Clow public: 65053d81ceSMarshall Clow // types 66053d81ceSMarshall Clow typedef traits traits_type; 67053d81ceSMarshall Clow typedef charT value_type; 68053d81ceSMarshall Clow typedef charT* pointer; 69053d81ceSMarshall Clow typedef const charT* const_pointer; 70053d81ceSMarshall Clow typedef charT& reference; 71053d81ceSMarshall Clow typedef const charT& const_reference; 72053d81ceSMarshall Clow typedef implementation-defined const_iterator; 73053d81ceSMarshall Clow typedef const_iterator iterator; 74053d81ceSMarshall Clow typedef reverse_iterator<const_iterator> const_reverse_iterator; 75053d81ceSMarshall Clow typedef const_reverse_iterator reverse_iterator; 76053d81ceSMarshall Clow typedef size_t size_type; 77053d81ceSMarshall Clow typedef ptrdiff_t difference_type; 78053d81ceSMarshall Clow static constexpr size_type npos = size_type(-1); 79053d81ceSMarshall Clow 80053d81ceSMarshall Clow // 7.3, basic_string_view constructors and assignment operators 81053d81ceSMarshall Clow constexpr basic_string_view() noexcept; 82053d81ceSMarshall Clow constexpr basic_string_view(const basic_string_view&) noexcept = default; 83053d81ceSMarshall Clow basic_string_view& operator=(const basic_string_view&) noexcept = default; 84053d81ceSMarshall Clow template<class Allocator> 85053d81ceSMarshall Clow constexpr basic_string_view(const charT* str); 86775caa58SMarek Kurdej basic_string_view(nullptr_t) = delete; // C++2b 87053d81ceSMarshall Clow constexpr basic_string_view(const charT* str, size_type len); 884be7f489SJoe Loser template <class It, class End> 894be7f489SJoe Loser constexpr basic_string_view(It begin, End end); // C++20 90053d81ceSMarshall Clow 91053d81ceSMarshall Clow // 7.4, basic_string_view iterator support 92053d81ceSMarshall Clow constexpr const_iterator begin() const noexcept; 93053d81ceSMarshall Clow constexpr const_iterator end() const noexcept; 94053d81ceSMarshall Clow constexpr const_iterator cbegin() const noexcept; 95053d81ceSMarshall Clow constexpr const_iterator cend() const noexcept; 96053d81ceSMarshall Clow const_reverse_iterator rbegin() const noexcept; 97053d81ceSMarshall Clow const_reverse_iterator rend() const noexcept; 98053d81ceSMarshall Clow const_reverse_iterator crbegin() const noexcept; 99053d81ceSMarshall Clow const_reverse_iterator crend() const noexcept; 100053d81ceSMarshall Clow 101053d81ceSMarshall Clow // 7.5, basic_string_view capacity 102053d81ceSMarshall Clow constexpr size_type size() const noexcept; 103053d81ceSMarshall Clow constexpr size_type length() const noexcept; 104053d81ceSMarshall Clow constexpr size_type max_size() const noexcept; 105053d81ceSMarshall Clow constexpr bool empty() const noexcept; 106053d81ceSMarshall Clow 107053d81ceSMarshall Clow // 7.6, basic_string_view element access 108053d81ceSMarshall Clow constexpr const_reference operator[](size_type pos) const; 109053d81ceSMarshall Clow constexpr const_reference at(size_type pos) const; 110053d81ceSMarshall Clow constexpr const_reference front() const; 111053d81ceSMarshall Clow constexpr const_reference back() const; 112053d81ceSMarshall Clow constexpr const_pointer data() const noexcept; 113053d81ceSMarshall Clow 114053d81ceSMarshall Clow // 7.7, basic_string_view modifiers 115053d81ceSMarshall Clow constexpr void remove_prefix(size_type n); 116053d81ceSMarshall Clow constexpr void remove_suffix(size_type n); 117053d81ceSMarshall Clow constexpr void swap(basic_string_view& s) noexcept; 118053d81ceSMarshall Clow 11906e2b737SArthur O'Dwyer size_type copy(charT* s, size_type n, size_type pos = 0) const; // constexpr in C++20 120053d81ceSMarshall Clow 121053d81ceSMarshall Clow constexpr basic_string_view substr(size_type pos = 0, size_type n = npos) const; 122053d81ceSMarshall Clow constexpr int compare(basic_string_view s) const noexcept; 123053d81ceSMarshall Clow constexpr int compare(size_type pos1, size_type n1, basic_string_view s) const; 124053d81ceSMarshall Clow constexpr int compare(size_type pos1, size_type n1, 125053d81ceSMarshall Clow basic_string_view s, size_type pos2, size_type n2) const; 126053d81ceSMarshall Clow constexpr int compare(const charT* s) const; 127053d81ceSMarshall Clow constexpr int compare(size_type pos1, size_type n1, const charT* s) const; 128053d81ceSMarshall Clow constexpr int compare(size_type pos1, size_type n1, 129053d81ceSMarshall Clow const charT* s, size_type n2) const; 130053d81ceSMarshall Clow constexpr size_type find(basic_string_view s, size_type pos = 0) const noexcept; 131053d81ceSMarshall Clow constexpr size_type find(charT c, size_type pos = 0) const noexcept; 132dea74b28Szoecarver constexpr size_type find(const charT* s, size_type pos, size_type n) const noexcept; // noexcept as an extension 133dea74b28Szoecarver constexpr size_type find(const charT* s, size_type pos = 0) const noexcept; // noexcept as an extension 134053d81ceSMarshall Clow constexpr size_type rfind(basic_string_view s, size_type pos = npos) const noexcept; 135053d81ceSMarshall Clow constexpr size_type rfind(charT c, size_type pos = npos) const noexcept; 136dea74b28Szoecarver constexpr size_type rfind(const charT* s, size_type pos, size_type n) const noexcept; // noexcept as an extension 137dea74b28Szoecarver constexpr size_type rfind(const charT* s, size_type pos = npos) const noexcept; // noexcept as an extension 138053d81ceSMarshall Clow constexpr size_type find_first_of(basic_string_view s, size_type pos = 0) const noexcept; 139053d81ceSMarshall Clow constexpr size_type find_first_of(charT c, size_type pos = 0) const noexcept; 140dea74b28Szoecarver constexpr size_type find_first_of(const charT* s, size_type pos, size_type n) const noexcept; // noexcept as an extension 141dea74b28Szoecarver constexpr size_type find_first_of(const charT* s, size_type pos = 0) const noexcept; // noexcept as an extension 142053d81ceSMarshall Clow constexpr size_type find_last_of(basic_string_view s, size_type pos = npos) const noexcept; 143053d81ceSMarshall Clow constexpr size_type find_last_of(charT c, size_type pos = npos) const noexcept; 144dea74b28Szoecarver constexpr size_type find_last_of(const charT* s, size_type pos, size_type n) const noexcept; // noexcept as an extension 145dea74b28Szoecarver constexpr size_type find_last_of(const charT* s, size_type pos = npos) const noexcept; // noexcept as an extension 146053d81ceSMarshall Clow constexpr size_type find_first_not_of(basic_string_view s, size_type pos = 0) const noexcept; 147053d81ceSMarshall Clow constexpr size_type find_first_not_of(charT c, size_type pos = 0) const noexcept; 148dea74b28Szoecarver constexpr size_type find_first_not_of(const charT* s, size_type pos, size_type n) const noexcept; // noexcept as an extension 149dea74b28Szoecarver constexpr size_type find_first_not_of(const charT* s, size_type pos = 0) const noexcept; // noexcept as an extension 150053d81ceSMarshall Clow constexpr size_type find_last_not_of(basic_string_view s, size_type pos = npos) const noexcept; 151053d81ceSMarshall Clow constexpr size_type find_last_not_of(charT c, size_type pos = npos) const noexcept; 152dea74b28Szoecarver constexpr size_type find_last_not_of(const charT* s, size_type pos, size_type n) const noexcept; // noexcept as an extension 153dea74b28Szoecarver constexpr size_type find_last_not_of(const charT* s, size_type pos = npos) const noexcept; // noexcept as an extension 154053d81ceSMarshall Clow 155044b892cSMarek Kurdej constexpr bool starts_with(basic_string_view s) const noexcept; // C++20 156044b892cSMarek Kurdej constexpr bool starts_with(charT c) const noexcept; // C++20 157044b892cSMarek Kurdej constexpr bool starts_with(const charT* s) const; // C++20 158044b892cSMarek Kurdej constexpr bool ends_with(basic_string_view s) const noexcept; // C++20 159044b892cSMarek Kurdej constexpr bool ends_with(charT c) const noexcept; // C++20 160044b892cSMarek Kurdej constexpr bool ends_with(const charT* s) const; // C++20 161800259c9SMarshall Clow 1626ac9cb2aSWim Leflere constexpr bool contains(basic_string_view s) const noexcept; // C++2b 1636ac9cb2aSWim Leflere constexpr bool contains(charT c) const noexcept; // C++2b 1646ac9cb2aSWim Leflere constexpr bool contains(const charT* s) const; // C++2b 1656ac9cb2aSWim Leflere 166053d81ceSMarshall Clow private: 167053d81ceSMarshall Clow const_pointer data_; // exposition only 168053d81ceSMarshall Clow size_type size_; // exposition only 169053d81ceSMarshall Clow }; 170053d81ceSMarshall Clow 1714be7f489SJoe Loser // basic_string_view deduction guides 1724be7f489SJoe Loser template<class It, class End> 1734be7f489SJoe Loser basic_string_view(It, End) -> basic_string_view<iter_value_t<It>>; // C++20 1744be7f489SJoe Loser 175053d81ceSMarshall Clow // 7.11, Hash support 176053d81ceSMarshall Clow template <class T> struct hash; 177053d81ceSMarshall Clow template <> struct hash<string_view>; 17828f82becSMarek Kurdej template <> struct hash<u8string_view>; // C++20 179053d81ceSMarshall Clow template <> struct hash<u16string_view>; 180053d81ceSMarshall Clow template <> struct hash<u32string_view>; 181053d81ceSMarshall Clow template <> struct hash<wstring_view>; 182053d81ceSMarshall Clow 18359b48302SMarshall Clow constexpr basic_string_view<char> operator "" sv( const char *str, size_t len ) noexcept; 18459b48302SMarshall Clow constexpr basic_string_view<wchar_t> operator "" sv( const wchar_t *str, size_t len ) noexcept; 18528f82becSMarek Kurdej constexpr basic_string_view<char8_t> operator "" sv( const char8_t *str, size_t len ) noexcept; // C++20 18659b48302SMarshall Clow constexpr basic_string_view<char16_t> operator "" sv( const char16_t *str, size_t len ) noexcept; 18759b48302SMarshall Clow constexpr basic_string_view<char32_t> operator "" sv( const char32_t *str, size_t len ) noexcept; 1888fd58a6bSMarshall Clow 189053d81ceSMarshall Clow} // namespace std 190053d81ceSMarshall Clow 191053d81ceSMarshall Clow 192053d81ceSMarshall Clow*/ 193053d81ceSMarshall Clow 194053d81ceSMarshall Clow#include <__config> 195bfbd73f8SArthur O'Dwyer#include <__debug> 19601ace074SMark de Wever#include <__ranges/enable_borrowed_range.h> 197462f8f06SChristopher Di Bella#include <__ranges/enable_view.h> 198053d81ceSMarshall Clow#include <__string> 199ca648c97SEric Fiselier#include <algorithm> 2002d0f1fa4SArthur O'Dwyer#include <compare> 201bfbd73f8SArthur O'Dwyer#include <iosfwd> 202053d81ceSMarshall Clow#include <iterator> 203ca648c97SEric Fiselier#include <limits> 204ca648c97SEric Fiselier#include <stdexcept> 205f56972e2SMarshall Clow#include <version> 206053d81ceSMarshall Clow 207053d81ceSMarshall Clow#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) 208053d81ceSMarshall Clow#pragma GCC system_header 209053d81ceSMarshall Clow#endif 210053d81ceSMarshall Clow 211a016efb1SEric Fiselier_LIBCPP_PUSH_MACROS 212a016efb1SEric Fiselier#include <__undef_macros> 213a016efb1SEric Fiselier 214a016efb1SEric Fiselier 215053d81ceSMarshall Clow_LIBCPP_BEGIN_NAMESPACE_STD 216053d81ceSMarshall Clow 217053d81ceSMarshall Clowtemplate<class _CharT, class _Traits = char_traits<_CharT> > 2182a2c228cSRichard Smith class _LIBCPP_TEMPLATE_VIS basic_string_view; 2192a2c228cSRichard Smith 2202a2c228cSRichard Smithtypedef basic_string_view<char> string_view; 2215c40c994SArthur O'Dwyer#ifndef _LIBCPP_HAS_NO_CHAR8_T 2222a2c228cSRichard Smithtypedef basic_string_view<char8_t> u8string_view; 2232a2c228cSRichard Smith#endif 2242a2c228cSRichard Smithtypedef basic_string_view<char16_t> u16string_view; 2252a2c228cSRichard Smithtypedef basic_string_view<char32_t> u32string_view; 226f4c1258dSLouis Dionne#ifndef _LIBCPP_HAS_NO_WIDE_CHARACTERS 2272a2c228cSRichard Smithtypedef basic_string_view<wchar_t> wstring_view; 228f4c1258dSLouis Dionne#endif 2292a2c228cSRichard Smith 2302a2c228cSRichard Smithtemplate<class _CharT, class _Traits> 2312a2c228cSRichard Smithclass 2322a2c228cSRichard Smith _LIBCPP_PREFERRED_NAME(string_view) 2335c40c994SArthur O'Dwyer#ifndef _LIBCPP_HAS_NO_CHAR8_T 2342a2c228cSRichard Smith _LIBCPP_PREFERRED_NAME(u8string_view) 2352a2c228cSRichard Smith#endif 2362a2c228cSRichard Smith _LIBCPP_PREFERRED_NAME(u16string_view) 2372a2c228cSRichard Smith _LIBCPP_PREFERRED_NAME(u32string_view) 238f4c1258dSLouis Dionne _LIBCPP_IF_WIDE_CHARACTERS(_LIBCPP_PREFERRED_NAME(wstring_view)) 2392a2c228cSRichard Smith basic_string_view { 240053d81ceSMarshall Clowpublic: 241053d81ceSMarshall Clow // types 242053d81ceSMarshall Clow typedef _Traits traits_type; 243053d81ceSMarshall Clow typedef _CharT value_type; 2447d661bb2SMarshall Clow typedef _CharT* pointer; 245053d81ceSMarshall Clow typedef const _CharT* const_pointer; 2467d661bb2SMarshall Clow typedef _CharT& reference; 247053d81ceSMarshall Clow typedef const _CharT& const_reference; 248053d81ceSMarshall Clow typedef const_pointer const_iterator; // See [string.view.iterators] 249053d81ceSMarshall Clow typedef const_iterator iterator; 250053d81ceSMarshall Clow typedef _VSTD::reverse_iterator<const_iterator> const_reverse_iterator; 251053d81ceSMarshall Clow typedef const_reverse_iterator reverse_iterator; 252053d81ceSMarshall Clow typedef size_t size_type; 253053d81ceSMarshall Clow typedef ptrdiff_t difference_type; 254053d81ceSMarshall Clow static _LIBCPP_CONSTEXPR const size_type npos = -1; // size_type(-1); 255053d81ceSMarshall Clow 2564a6f3c47SMarshall Clow static_assert((!is_array<value_type>::value), "Character type of basic_string_view must not be an array"); 2574a6f3c47SMarshall Clow static_assert(( is_standard_layout<value_type>::value), "Character type of basic_string_view must be standard-layout"); 2584a6f3c47SMarshall Clow static_assert(( is_trivial<value_type>::value), "Character type of basic_string_view must be trivial"); 2594069c2bcSMarshall Clow static_assert((is_same<_CharT, typename traits_type::char_type>::value), 2604069c2bcSMarshall Clow "traits_type::char_type must be the same type as CharT"); 2614069c2bcSMarshall Clow 262053d81ceSMarshall Clow // [string.view.cons], construct/copy 263053d81ceSMarshall Clow _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY 264053d81ceSMarshall Clow basic_string_view() _NOEXCEPT : __data (nullptr), __size(0) {} 265053d81ceSMarshall Clow 266ae0e037fSArthur O'Dwyer _LIBCPP_INLINE_VISIBILITY 267053d81ceSMarshall Clow basic_string_view(const basic_string_view&) _NOEXCEPT = default; 268053d81ceSMarshall Clow 269ae0e037fSArthur O'Dwyer _LIBCPP_INLINE_VISIBILITY 270053d81ceSMarshall Clow basic_string_view& operator=(const basic_string_view&) _NOEXCEPT = default; 271053d81ceSMarshall Clow 272053d81ceSMarshall Clow _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY 273ac2b3e3aSMarshall Clow basic_string_view(const _CharT* __s, size_type __len) _NOEXCEPT 274053d81ceSMarshall Clow : __data(__s), __size(__len) 275053d81ceSMarshall Clow { 276f67524d4SMarshall Clow#if _LIBCPP_STD_VER > 11 277f67524d4SMarshall Clow _LIBCPP_ASSERT(__len == 0 || __s != nullptr, "string_view::string_view(_CharT *, size_t): received nullptr"); 278f67524d4SMarshall Clow#endif 279053d81ceSMarshall Clow } 280053d81ceSMarshall Clow 2814be7f489SJoe Loser#if _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_RANGES) 2824be7f489SJoe Loser template <contiguous_iterator _It, sized_sentinel_for<_It> _End> 283*68e7e76aSJoe Loser requires (is_same_v<iter_value_t<_It>, _CharT> && !is_convertible_v<_End, size_type>) 2844be7f489SJoe Loser constexpr _LIBCPP_HIDE_FROM_ABI basic_string_view(_It __begin, _End __end) 2854be7f489SJoe Loser : __data(_VSTD::to_address(__begin)), __size(__end - __begin) 2864be7f489SJoe Loser { 2874be7f489SJoe Loser _LIBCPP_ASSERT((__end - __begin) >= 0, "std::string_view::string_view(iterator, sentinel) received invalid range"); 2884be7f489SJoe Loser } 2894be7f489SJoe Loser#endif 2904be7f489SJoe Loser 291053d81ceSMarshall Clow _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY 292053d81ceSMarshall Clow basic_string_view(const _CharT* __s) 293d586f92cSArthur O'Dwyer : __data(__s), __size(_VSTD::__char_traits_length_checked<_Traits>(__s)) {} 294053d81ceSMarshall Clow 295775caa58SMarek Kurdej#if _LIBCPP_STD_VER > 20 296775caa58SMarek Kurdej basic_string_view(nullptr_t) = delete; 297775caa58SMarek Kurdej#endif 298775caa58SMarek Kurdej 299053d81ceSMarshall Clow // [string.view.iterators], iterators 300053d81ceSMarshall Clow _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY 301053d81ceSMarshall Clow const_iterator begin() const _NOEXCEPT { return cbegin(); } 302053d81ceSMarshall Clow 303053d81ceSMarshall Clow _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY 304053d81ceSMarshall Clow const_iterator end() const _NOEXCEPT { return cend(); } 305053d81ceSMarshall Clow 306053d81ceSMarshall Clow _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY 307053d81ceSMarshall Clow const_iterator cbegin() const _NOEXCEPT { return __data; } 308053d81ceSMarshall Clow 309053d81ceSMarshall Clow _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY 310053d81ceSMarshall Clow const_iterator cend() const _NOEXCEPT { return __data + __size; } 311053d81ceSMarshall Clow 312cddeb751SMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX14 _LIBCPP_INLINE_VISIBILITY 313053d81ceSMarshall Clow const_reverse_iterator rbegin() const _NOEXCEPT { return const_reverse_iterator(cend()); } 314053d81ceSMarshall Clow 315cddeb751SMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX14 _LIBCPP_INLINE_VISIBILITY 316053d81ceSMarshall Clow const_reverse_iterator rend() const _NOEXCEPT { return const_reverse_iterator(cbegin()); } 317053d81ceSMarshall Clow 318cddeb751SMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX14 _LIBCPP_INLINE_VISIBILITY 319053d81ceSMarshall Clow const_reverse_iterator crbegin() const _NOEXCEPT { return const_reverse_iterator(cend()); } 320053d81ceSMarshall Clow 321cddeb751SMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX14 _LIBCPP_INLINE_VISIBILITY 322053d81ceSMarshall Clow const_reverse_iterator crend() const _NOEXCEPT { return const_reverse_iterator(cbegin()); } 323053d81ceSMarshall Clow 324053d81ceSMarshall Clow // [string.view.capacity], capacity 325053d81ceSMarshall Clow _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY 326053d81ceSMarshall Clow size_type size() const _NOEXCEPT { return __size; } 327053d81ceSMarshall Clow 328053d81ceSMarshall Clow _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY 329053d81ceSMarshall Clow size_type length() const _NOEXCEPT { return __size; } 330053d81ceSMarshall Clow 331053d81ceSMarshall Clow _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY 332053d81ceSMarshall Clow size_type max_size() const _NOEXCEPT { return numeric_limits<size_type>::max(); } 333053d81ceSMarshall Clow 33425a7ba45SMarshall Clow _LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR 33525a7ba45SMarshall Clow bool empty() const _NOEXCEPT { return __size == 0; } 336053d81ceSMarshall Clow 337053d81ceSMarshall Clow // [string.view.access], element access 338053d81ceSMarshall Clow _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY 3399eff07a7SChris Palmer const_reference operator[](size_type __pos) const _NOEXCEPT { 3409eff07a7SChris Palmer return _LIBCPP_ASSERT(__pos < size(), "string_view[] index out of bounds"), __data[__pos]; 3419eff07a7SChris Palmer } 342053d81ceSMarshall Clow 343053d81ceSMarshall Clow _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY 344053d81ceSMarshall Clow const_reference at(size_type __pos) const 345053d81ceSMarshall Clow { 346053d81ceSMarshall Clow return __pos >= size() 3470fc8cec7SMarshall Clow ? (__throw_out_of_range("string_view::at"), __data[0]) 348053d81ceSMarshall Clow : __data[__pos]; 349053d81ceSMarshall Clow } 350053d81ceSMarshall Clow 351053d81ceSMarshall Clow _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY 3529ea0e473SMarshall Clow const_reference front() const _NOEXCEPT 353053d81ceSMarshall Clow { 354053d81ceSMarshall Clow return _LIBCPP_ASSERT(!empty(), "string_view::front(): string is empty"), __data[0]; 355053d81ceSMarshall Clow } 356053d81ceSMarshall Clow 357053d81ceSMarshall Clow _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY 3589ea0e473SMarshall Clow const_reference back() const _NOEXCEPT 359053d81ceSMarshall Clow { 360053d81ceSMarshall Clow return _LIBCPP_ASSERT(!empty(), "string_view::back(): string is empty"), __data[__size-1]; 361053d81ceSMarshall Clow } 362053d81ceSMarshall Clow 363053d81ceSMarshall Clow _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY 364053d81ceSMarshall Clow const_pointer data() const _NOEXCEPT { return __data; } 365053d81ceSMarshall Clow 366053d81ceSMarshall Clow // [string.view.modifiers], modifiers: 367053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 368053d81ceSMarshall Clow void remove_prefix(size_type __n) _NOEXCEPT 369053d81ceSMarshall Clow { 370053d81ceSMarshall Clow _LIBCPP_ASSERT(__n <= size(), "remove_prefix() can't remove more than size()"); 371053d81ceSMarshall Clow __data += __n; 372053d81ceSMarshall Clow __size -= __n; 373053d81ceSMarshall Clow } 374053d81ceSMarshall Clow 375053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 376053d81ceSMarshall Clow void remove_suffix(size_type __n) _NOEXCEPT 377053d81ceSMarshall Clow { 378053d81ceSMarshall Clow _LIBCPP_ASSERT(__n <= size(), "remove_suffix() can't remove more than size()"); 379053d81ceSMarshall Clow __size -= __n; 380053d81ceSMarshall Clow } 381053d81ceSMarshall Clow 382053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 383053d81ceSMarshall Clow void swap(basic_string_view& __other) _NOEXCEPT 384053d81ceSMarshall Clow { 385053d81ceSMarshall Clow const value_type *__p = __data; 386053d81ceSMarshall Clow __data = __other.__data; 387053d81ceSMarshall Clow __other.__data = __p; 388053d81ceSMarshall Clow 389053d81ceSMarshall Clow size_type __sz = __size; 390053d81ceSMarshall Clow __size = __other.__size; 391053d81ceSMarshall Clow __other.__size = __sz; 392053d81ceSMarshall Clow } 393053d81ceSMarshall Clow 39406e2b737SArthur O'Dwyer _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX17 395053d81ceSMarshall Clow size_type copy(_CharT* __s, size_type __n, size_type __pos = 0) const 396053d81ceSMarshall Clow { 397053d81ceSMarshall Clow if (__pos > size()) 3980fc8cec7SMarshall Clow __throw_out_of_range("string_view::copy"); 399053d81ceSMarshall Clow size_type __rlen = _VSTD::min(__n, size() - __pos); 4001c7fe126SMarshall Clow _Traits::copy(__s, data() + __pos, __rlen); 401053d81ceSMarshall Clow return __rlen; 402053d81ceSMarshall Clow } 403053d81ceSMarshall Clow 404053d81ceSMarshall Clow _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY 405053d81ceSMarshall Clow basic_string_view substr(size_type __pos = 0, size_type __n = npos) const 406053d81ceSMarshall Clow { 407053d81ceSMarshall Clow return __pos > size() 4080fc8cec7SMarshall Clow ? (__throw_out_of_range("string_view::substr"), basic_string_view()) 409053d81ceSMarshall Clow : basic_string_view(data() + __pos, _VSTD::min(__n, size() - __pos)); 410053d81ceSMarshall Clow } 411053d81ceSMarshall Clow 412053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 int compare(basic_string_view __sv) const _NOEXCEPT 413053d81ceSMarshall Clow { 414053d81ceSMarshall Clow size_type __rlen = _VSTD::min( size(), __sv.size()); 415053d81ceSMarshall Clow int __retval = _Traits::compare(data(), __sv.data(), __rlen); 416053d81ceSMarshall Clow if ( __retval == 0 ) // first __rlen chars matched 417053d81ceSMarshall Clow __retval = size() == __sv.size() ? 0 : ( size() < __sv.size() ? -1 : 1 ); 418053d81ceSMarshall Clow return __retval; 419053d81ceSMarshall Clow } 420053d81ceSMarshall Clow 421053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 422053d81ceSMarshall Clow int compare(size_type __pos1, size_type __n1, basic_string_view __sv) const 423053d81ceSMarshall Clow { 424053d81ceSMarshall Clow return substr(__pos1, __n1).compare(__sv); 425053d81ceSMarshall Clow } 426053d81ceSMarshall Clow 427053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 428053d81ceSMarshall Clow int compare( size_type __pos1, size_type __n1, 4299ffacf3dSEric Fiselier basic_string_view __sv, size_type __pos2, size_type __n2) const 430053d81ceSMarshall Clow { 4319ffacf3dSEric Fiselier return substr(__pos1, __n1).compare(__sv.substr(__pos2, __n2)); 432053d81ceSMarshall Clow } 433053d81ceSMarshall Clow 434053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 435aa849bc2SMarshall Clow int compare(const _CharT* __s) const _NOEXCEPT 436053d81ceSMarshall Clow { 437053d81ceSMarshall Clow return compare(basic_string_view(__s)); 438053d81ceSMarshall Clow } 439053d81ceSMarshall Clow 440053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 441053d81ceSMarshall Clow int compare(size_type __pos1, size_type __n1, const _CharT* __s) const 442053d81ceSMarshall Clow { 443053d81ceSMarshall Clow return substr(__pos1, __n1).compare(basic_string_view(__s)); 444053d81ceSMarshall Clow } 445053d81ceSMarshall Clow 446053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 447053d81ceSMarshall Clow int compare(size_type __pos1, size_type __n1, const _CharT* __s, size_type __n2) const 448053d81ceSMarshall Clow { 449053d81ceSMarshall Clow return substr(__pos1, __n1).compare(basic_string_view(__s, __n2)); 450053d81ceSMarshall Clow } 451053d81ceSMarshall Clow 452053d81ceSMarshall Clow // find 453053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 454053d81ceSMarshall Clow size_type find(basic_string_view __s, size_type __pos = 0) const _NOEXCEPT 455053d81ceSMarshall Clow { 456053d81ceSMarshall Clow _LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find(): received nullptr"); 457053d81ceSMarshall Clow return __str_find<value_type, size_type, traits_type, npos> 458053d81ceSMarshall Clow (data(), size(), __s.data(), __pos, __s.size()); 459053d81ceSMarshall Clow } 460053d81ceSMarshall Clow 461053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 462053d81ceSMarshall Clow size_type find(_CharT __c, size_type __pos = 0) const _NOEXCEPT 463053d81ceSMarshall Clow { 464053d81ceSMarshall Clow return __str_find<value_type, size_type, traits_type, npos> 465053d81ceSMarshall Clow (data(), size(), __c, __pos); 466053d81ceSMarshall Clow } 467053d81ceSMarshall Clow 468053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 469dea74b28Szoecarver size_type find(const _CharT* __s, size_type __pos, size_type __n) const _NOEXCEPT 470053d81ceSMarshall Clow { 471053d81ceSMarshall Clow _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find(): received nullptr"); 472053d81ceSMarshall Clow return __str_find<value_type, size_type, traits_type, npos> 473053d81ceSMarshall Clow (data(), size(), __s, __pos, __n); 474053d81ceSMarshall Clow } 475053d81ceSMarshall Clow 476053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 477dea74b28Szoecarver size_type find(const _CharT* __s, size_type __pos = 0) const _NOEXCEPT 478053d81ceSMarshall Clow { 479053d81ceSMarshall Clow _LIBCPP_ASSERT(__s != nullptr, "string_view::find(): received nullptr"); 480053d81ceSMarshall Clow return __str_find<value_type, size_type, traits_type, npos> 481053d81ceSMarshall Clow (data(), size(), __s, __pos, traits_type::length(__s)); 482053d81ceSMarshall Clow } 483053d81ceSMarshall Clow 484053d81ceSMarshall Clow // rfind 485053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 486053d81ceSMarshall Clow size_type rfind(basic_string_view __s, size_type __pos = npos) const _NOEXCEPT 487053d81ceSMarshall Clow { 488053d81ceSMarshall Clow _LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find(): received nullptr"); 489053d81ceSMarshall Clow return __str_rfind<value_type, size_type, traits_type, npos> 490053d81ceSMarshall Clow (data(), size(), __s.data(), __pos, __s.size()); 491053d81ceSMarshall Clow } 492053d81ceSMarshall Clow 493053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 494053d81ceSMarshall Clow size_type rfind(_CharT __c, size_type __pos = npos) const _NOEXCEPT 495053d81ceSMarshall Clow { 496053d81ceSMarshall Clow return __str_rfind<value_type, size_type, traits_type, npos> 497053d81ceSMarshall Clow (data(), size(), __c, __pos); 498053d81ceSMarshall Clow } 499053d81ceSMarshall Clow 500053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 501dea74b28Szoecarver size_type rfind(const _CharT* __s, size_type __pos, size_type __n) const _NOEXCEPT 502053d81ceSMarshall Clow { 503053d81ceSMarshall Clow _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::rfind(): received nullptr"); 504053d81ceSMarshall Clow return __str_rfind<value_type, size_type, traits_type, npos> 505053d81ceSMarshall Clow (data(), size(), __s, __pos, __n); 506053d81ceSMarshall Clow } 507053d81ceSMarshall Clow 508053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 509dea74b28Szoecarver size_type rfind(const _CharT* __s, size_type __pos=npos) const _NOEXCEPT 510053d81ceSMarshall Clow { 511053d81ceSMarshall Clow _LIBCPP_ASSERT(__s != nullptr, "string_view::rfind(): received nullptr"); 512053d81ceSMarshall Clow return __str_rfind<value_type, size_type, traits_type, npos> 513053d81ceSMarshall Clow (data(), size(), __s, __pos, traits_type::length(__s)); 514053d81ceSMarshall Clow } 515053d81ceSMarshall Clow 516053d81ceSMarshall Clow // find_first_of 517053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 518053d81ceSMarshall Clow size_type find_first_of(basic_string_view __s, size_type __pos = 0) const _NOEXCEPT 519053d81ceSMarshall Clow { 520053d81ceSMarshall Clow _LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_first_of(): received nullptr"); 521053d81ceSMarshall Clow return __str_find_first_of<value_type, size_type, traits_type, npos> 522053d81ceSMarshall Clow (data(), size(), __s.data(), __pos, __s.size()); 523053d81ceSMarshall Clow } 524053d81ceSMarshall Clow 525053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 526053d81ceSMarshall Clow size_type find_first_of(_CharT __c, size_type __pos = 0) const _NOEXCEPT 527053d81ceSMarshall Clow { return find(__c, __pos); } 528053d81ceSMarshall Clow 529053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 530dea74b28Szoecarver size_type find_first_of(const _CharT* __s, size_type __pos, size_type __n) const _NOEXCEPT 531053d81ceSMarshall Clow { 532053d81ceSMarshall Clow _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_first_of(): received nullptr"); 533053d81ceSMarshall Clow return __str_find_first_of<value_type, size_type, traits_type, npos> 534053d81ceSMarshall Clow (data(), size(), __s, __pos, __n); 535053d81ceSMarshall Clow } 536053d81ceSMarshall Clow 537053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 538dea74b28Szoecarver size_type find_first_of(const _CharT* __s, size_type __pos=0) const _NOEXCEPT 539053d81ceSMarshall Clow { 540053d81ceSMarshall Clow _LIBCPP_ASSERT(__s != nullptr, "string_view::find_first_of(): received nullptr"); 541053d81ceSMarshall Clow return __str_find_first_of<value_type, size_type, traits_type, npos> 542053d81ceSMarshall Clow (data(), size(), __s, __pos, traits_type::length(__s)); 543053d81ceSMarshall Clow } 544053d81ceSMarshall Clow 545053d81ceSMarshall Clow // find_last_of 546053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 547053d81ceSMarshall Clow size_type find_last_of(basic_string_view __s, size_type __pos=npos) const _NOEXCEPT 548053d81ceSMarshall Clow { 549053d81ceSMarshall Clow _LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_last_of(): received nullptr"); 550053d81ceSMarshall Clow return __str_find_last_of<value_type, size_type, traits_type, npos> 551053d81ceSMarshall Clow (data(), size(), __s.data(), __pos, __s.size()); 552053d81ceSMarshall Clow } 553053d81ceSMarshall Clow 554053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 555053d81ceSMarshall Clow size_type find_last_of(_CharT __c, size_type __pos = npos) const _NOEXCEPT 556053d81ceSMarshall Clow { return rfind(__c, __pos); } 557053d81ceSMarshall Clow 558053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 559dea74b28Szoecarver size_type find_last_of(const _CharT* __s, size_type __pos, size_type __n) const _NOEXCEPT 560053d81ceSMarshall Clow { 561053d81ceSMarshall Clow _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_last_of(): received nullptr"); 562053d81ceSMarshall Clow return __str_find_last_of<value_type, size_type, traits_type, npos> 563053d81ceSMarshall Clow (data(), size(), __s, __pos, __n); 564053d81ceSMarshall Clow } 565053d81ceSMarshall Clow 566053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 567dea74b28Szoecarver size_type find_last_of(const _CharT* __s, size_type __pos=npos) const _NOEXCEPT 568053d81ceSMarshall Clow { 569053d81ceSMarshall Clow _LIBCPP_ASSERT(__s != nullptr, "string_view::find_last_of(): received nullptr"); 570053d81ceSMarshall Clow return __str_find_last_of<value_type, size_type, traits_type, npos> 571053d81ceSMarshall Clow (data(), size(), __s, __pos, traits_type::length(__s)); 572053d81ceSMarshall Clow } 573053d81ceSMarshall Clow 574053d81ceSMarshall Clow // find_first_not_of 575053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 576053d81ceSMarshall Clow size_type find_first_not_of(basic_string_view __s, size_type __pos=0) const _NOEXCEPT 577053d81ceSMarshall Clow { 578053d81ceSMarshall Clow _LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_first_not_of(): received nullptr"); 579053d81ceSMarshall Clow return __str_find_first_not_of<value_type, size_type, traits_type, npos> 580053d81ceSMarshall Clow (data(), size(), __s.data(), __pos, __s.size()); 581053d81ceSMarshall Clow } 582053d81ceSMarshall Clow 583053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 584053d81ceSMarshall Clow size_type find_first_not_of(_CharT __c, size_type __pos=0) const _NOEXCEPT 585053d81ceSMarshall Clow { 586053d81ceSMarshall Clow return __str_find_first_not_of<value_type, size_type, traits_type, npos> 587053d81ceSMarshall Clow (data(), size(), __c, __pos); 588053d81ceSMarshall Clow } 589053d81ceSMarshall Clow 590053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 591dea74b28Szoecarver size_type find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const _NOEXCEPT 592053d81ceSMarshall Clow { 593053d81ceSMarshall Clow _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_first_not_of(): received nullptr"); 594053d81ceSMarshall Clow return __str_find_first_not_of<value_type, size_type, traits_type, npos> 595053d81ceSMarshall Clow (data(), size(), __s, __pos, __n); 596053d81ceSMarshall Clow } 597053d81ceSMarshall Clow 598053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 599dea74b28Szoecarver size_type find_first_not_of(const _CharT* __s, size_type __pos=0) const _NOEXCEPT 600053d81ceSMarshall Clow { 601053d81ceSMarshall Clow _LIBCPP_ASSERT(__s != nullptr, "string_view::find_first_not_of(): received nullptr"); 602053d81ceSMarshall Clow return __str_find_first_not_of<value_type, size_type, traits_type, npos> 603053d81ceSMarshall Clow (data(), size(), __s, __pos, traits_type::length(__s)); 604053d81ceSMarshall Clow } 605053d81ceSMarshall Clow 606053d81ceSMarshall Clow // find_last_not_of 607053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 608053d81ceSMarshall Clow size_type find_last_not_of(basic_string_view __s, size_type __pos=npos) const _NOEXCEPT 609053d81ceSMarshall Clow { 610053d81ceSMarshall Clow _LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_last_not_of(): received nullptr"); 611053d81ceSMarshall Clow return __str_find_last_not_of<value_type, size_type, traits_type, npos> 612053d81ceSMarshall Clow (data(), size(), __s.data(), __pos, __s.size()); 613053d81ceSMarshall Clow } 614053d81ceSMarshall Clow 615053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 616053d81ceSMarshall Clow size_type find_last_not_of(_CharT __c, size_type __pos=npos) const _NOEXCEPT 617053d81ceSMarshall Clow { 618053d81ceSMarshall Clow return __str_find_last_not_of<value_type, size_type, traits_type, npos> 619053d81ceSMarshall Clow (data(), size(), __c, __pos); 620053d81ceSMarshall Clow } 621053d81ceSMarshall Clow 622053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 623dea74b28Szoecarver size_type find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const _NOEXCEPT 624053d81ceSMarshall Clow { 625053d81ceSMarshall Clow _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_last_not_of(): received nullptr"); 626053d81ceSMarshall Clow return __str_find_last_not_of<value_type, size_type, traits_type, npos> 627053d81ceSMarshall Clow (data(), size(), __s, __pos, __n); 628053d81ceSMarshall Clow } 629053d81ceSMarshall Clow 630053d81ceSMarshall Clow _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 631dea74b28Szoecarver size_type find_last_not_of(const _CharT* __s, size_type __pos=npos) const _NOEXCEPT 632053d81ceSMarshall Clow { 633053d81ceSMarshall Clow _LIBCPP_ASSERT(__s != nullptr, "string_view::find_last_not_of(): received nullptr"); 634053d81ceSMarshall Clow return __str_find_last_not_of<value_type, size_type, traits_type, npos> 635053d81ceSMarshall Clow (data(), size(), __s, __pos, traits_type::length(__s)); 636053d81ceSMarshall Clow } 637053d81ceSMarshall Clow 638800259c9SMarshall Clow#if _LIBCPP_STD_VER > 17 639ae0e037fSArthur O'Dwyer constexpr _LIBCPP_INLINE_VISIBILITY 640ae0e037fSArthur O'Dwyer bool starts_with(basic_string_view __s) const noexcept 641800259c9SMarshall Clow { return size() >= __s.size() && compare(0, __s.size(), __s) == 0; } 642800259c9SMarshall Clow 643ae0e037fSArthur O'Dwyer constexpr _LIBCPP_INLINE_VISIBILITY 644ae0e037fSArthur O'Dwyer bool starts_with(value_type __c) const noexcept 645800259c9SMarshall Clow { return !empty() && _Traits::eq(front(), __c); } 646800259c9SMarshall Clow 647ae0e037fSArthur O'Dwyer constexpr _LIBCPP_INLINE_VISIBILITY 648ae0e037fSArthur O'Dwyer bool starts_with(const value_type* __s) const noexcept 649800259c9SMarshall Clow { return starts_with(basic_string_view(__s)); } 650800259c9SMarshall Clow 651ae0e037fSArthur O'Dwyer constexpr _LIBCPP_INLINE_VISIBILITY 652ae0e037fSArthur O'Dwyer bool ends_with(basic_string_view __s) const noexcept 653800259c9SMarshall Clow { return size() >= __s.size() && compare(size() - __s.size(), npos, __s) == 0; } 654800259c9SMarshall Clow 655ae0e037fSArthur O'Dwyer constexpr _LIBCPP_INLINE_VISIBILITY 656ae0e037fSArthur O'Dwyer bool ends_with(value_type __c) const noexcept 657800259c9SMarshall Clow { return !empty() && _Traits::eq(back(), __c); } 658800259c9SMarshall Clow 659ae0e037fSArthur O'Dwyer constexpr _LIBCPP_INLINE_VISIBILITY 660ae0e037fSArthur O'Dwyer bool ends_with(const value_type* __s) const noexcept 661800259c9SMarshall Clow { return ends_with(basic_string_view(__s)); } 662800259c9SMarshall Clow#endif 663800259c9SMarshall Clow 6646ac9cb2aSWim Leflere#if _LIBCPP_STD_VER > 20 6656ac9cb2aSWim Leflere constexpr _LIBCPP_INLINE_VISIBILITY 6666ac9cb2aSWim Leflere bool contains(basic_string_view __sv) const noexcept 6676ac9cb2aSWim Leflere { return find(__sv) != npos; } 6686ac9cb2aSWim Leflere 6696ac9cb2aSWim Leflere constexpr _LIBCPP_INLINE_VISIBILITY 6706ac9cb2aSWim Leflere bool contains(value_type __c) const noexcept 6716ac9cb2aSWim Leflere { return find(__c) != npos; } 6726ac9cb2aSWim Leflere 6736ac9cb2aSWim Leflere constexpr _LIBCPP_INLINE_VISIBILITY 6746ac9cb2aSWim Leflere bool contains(const value_type* __s) const 6756ac9cb2aSWim Leflere { return find(__s) != npos; } 6766ac9cb2aSWim Leflere#endif 6776ac9cb2aSWim Leflere 678053d81ceSMarshall Clowprivate: 679053d81ceSMarshall Clow const value_type* __data; 680053d81ceSMarshall Clow size_type __size; 681053d81ceSMarshall Clow}; 682053d81ceSMarshall Clow 68301ace074SMark de Wever#if _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_RANGES) 68401ace074SMark de Wevertemplate <class _CharT, class _Traits> 685462f8f06SChristopher Di Bellainline constexpr bool ranges::enable_view<basic_string_view<_CharT, _Traits>> = true; 686462f8f06SChristopher Di Bella 687462f8f06SChristopher Di Bellatemplate <class _CharT, class _Traits> 68801ace074SMark de Weverinline constexpr bool ranges::enable_borrowed_range<basic_string_view<_CharT, _Traits> > = true; 68901ace074SMark de Wever#endif // _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_RANGES) 690053d81ceSMarshall Clow 6914be7f489SJoe Loser// [string.view.deduct] 6924be7f489SJoe Loser 6934be7f489SJoe Loser#if _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_RANGES) 6944be7f489SJoe Losertemplate <contiguous_iterator _It, sized_sentinel_for<_It> _End> 6954be7f489SJoe Loser basic_string_view(_It, _End) -> basic_string_view<iter_value_t<_It>>; 6964be7f489SJoe Loser#endif 6974be7f489SJoe Loser 698053d81ceSMarshall Clow// [string.view.comparison] 699053d81ceSMarshall Clow// operator == 700053d81ceSMarshall Clowtemplate<class _CharT, class _Traits> 701053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 702053d81ceSMarshall Clowbool operator==(basic_string_view<_CharT, _Traits> __lhs, 703053d81ceSMarshall Clow basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT 704053d81ceSMarshall Clow{ 705053d81ceSMarshall Clow if ( __lhs.size() != __rhs.size()) return false; 706053d81ceSMarshall Clow return __lhs.compare(__rhs) == 0; 707053d81ceSMarshall Clow} 708053d81ceSMarshall Clow 709053d81ceSMarshall Clowtemplate<class _CharT, class _Traits> 710053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 711053d81ceSMarshall Clowbool operator==(basic_string_view<_CharT, _Traits> __lhs, 712053d81ceSMarshall Clow typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT 713053d81ceSMarshall Clow{ 714053d81ceSMarshall Clow if ( __lhs.size() != __rhs.size()) return false; 715053d81ceSMarshall Clow return __lhs.compare(__rhs) == 0; 716053d81ceSMarshall Clow} 717053d81ceSMarshall Clow 718053d81ceSMarshall Clowtemplate<class _CharT, class _Traits> 719053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 720053d81ceSMarshall Clowbool operator==(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs, 721053d81ceSMarshall Clow basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT 722053d81ceSMarshall Clow{ 723053d81ceSMarshall Clow if ( __lhs.size() != __rhs.size()) return false; 724053d81ceSMarshall Clow return __lhs.compare(__rhs) == 0; 725053d81ceSMarshall Clow} 726053d81ceSMarshall Clow 727053d81ceSMarshall Clow 728053d81ceSMarshall Clow// operator != 729053d81ceSMarshall Clowtemplate<class _CharT, class _Traits> 730053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 731053d81ceSMarshall Clowbool operator!=(basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT 732053d81ceSMarshall Clow{ 733053d81ceSMarshall Clow if ( __lhs.size() != __rhs.size()) 734053d81ceSMarshall Clow return true; 735053d81ceSMarshall Clow return __lhs.compare(__rhs) != 0; 736053d81ceSMarshall Clow} 737053d81ceSMarshall Clow 738053d81ceSMarshall Clowtemplate<class _CharT, class _Traits> 739053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 740053d81ceSMarshall Clowbool operator!=(basic_string_view<_CharT, _Traits> __lhs, 741053d81ceSMarshall Clow typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT 742053d81ceSMarshall Clow{ 743053d81ceSMarshall Clow if ( __lhs.size() != __rhs.size()) 744053d81ceSMarshall Clow return true; 745053d81ceSMarshall Clow return __lhs.compare(__rhs) != 0; 746053d81ceSMarshall Clow} 747053d81ceSMarshall Clow 748053d81ceSMarshall Clowtemplate<class _CharT, class _Traits> 749053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 750053d81ceSMarshall Clowbool operator!=(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs, 751053d81ceSMarshall Clow basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT 752053d81ceSMarshall Clow{ 753053d81ceSMarshall Clow if ( __lhs.size() != __rhs.size()) 754053d81ceSMarshall Clow return true; 755053d81ceSMarshall Clow return __lhs.compare(__rhs) != 0; 756053d81ceSMarshall Clow} 757053d81ceSMarshall Clow 758053d81ceSMarshall Clow 759053d81ceSMarshall Clow// operator < 760053d81ceSMarshall Clowtemplate<class _CharT, class _Traits> 761053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 762053d81ceSMarshall Clowbool operator<(basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT 763053d81ceSMarshall Clow{ 764053d81ceSMarshall Clow return __lhs.compare(__rhs) < 0; 765053d81ceSMarshall Clow} 766053d81ceSMarshall Clow 767053d81ceSMarshall Clowtemplate<class _CharT, class _Traits> 768053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 769053d81ceSMarshall Clowbool operator<(basic_string_view<_CharT, _Traits> __lhs, 770053d81ceSMarshall Clow typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT 771053d81ceSMarshall Clow{ 772053d81ceSMarshall Clow return __lhs.compare(__rhs) < 0; 773053d81ceSMarshall Clow} 774053d81ceSMarshall Clow 775053d81ceSMarshall Clowtemplate<class _CharT, class _Traits> 776053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 777053d81ceSMarshall Clowbool operator<(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs, 778053d81ceSMarshall Clow basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT 779053d81ceSMarshall Clow{ 780053d81ceSMarshall Clow return __lhs.compare(__rhs) < 0; 781053d81ceSMarshall Clow} 782053d81ceSMarshall Clow 783053d81ceSMarshall Clow 784053d81ceSMarshall Clow// operator > 785053d81ceSMarshall Clowtemplate<class _CharT, class _Traits> 786053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 787053d81ceSMarshall Clowbool operator> (basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT 788053d81ceSMarshall Clow{ 789053d81ceSMarshall Clow return __lhs.compare(__rhs) > 0; 790053d81ceSMarshall Clow} 791053d81ceSMarshall Clow 792053d81ceSMarshall Clowtemplate<class _CharT, class _Traits> 793053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 794053d81ceSMarshall Clowbool operator>(basic_string_view<_CharT, _Traits> __lhs, 795053d81ceSMarshall Clow typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT 796053d81ceSMarshall Clow{ 797053d81ceSMarshall Clow return __lhs.compare(__rhs) > 0; 798053d81ceSMarshall Clow} 799053d81ceSMarshall Clow 800053d81ceSMarshall Clowtemplate<class _CharT, class _Traits> 801053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 802053d81ceSMarshall Clowbool operator>(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs, 803053d81ceSMarshall Clow basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT 804053d81ceSMarshall Clow{ 805053d81ceSMarshall Clow return __lhs.compare(__rhs) > 0; 806053d81ceSMarshall Clow} 807053d81ceSMarshall Clow 808053d81ceSMarshall Clow 809053d81ceSMarshall Clow// operator <= 810053d81ceSMarshall Clowtemplate<class _CharT, class _Traits> 811053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 812053d81ceSMarshall Clowbool operator<=(basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT 813053d81ceSMarshall Clow{ 814053d81ceSMarshall Clow return __lhs.compare(__rhs) <= 0; 815053d81ceSMarshall Clow} 816053d81ceSMarshall Clow 817053d81ceSMarshall Clowtemplate<class _CharT, class _Traits> 818053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 819053d81ceSMarshall Clowbool operator<=(basic_string_view<_CharT, _Traits> __lhs, 820053d81ceSMarshall Clow typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT 821053d81ceSMarshall Clow{ 822053d81ceSMarshall Clow return __lhs.compare(__rhs) <= 0; 823053d81ceSMarshall Clow} 824053d81ceSMarshall Clow 825053d81ceSMarshall Clowtemplate<class _CharT, class _Traits> 826053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 827053d81ceSMarshall Clowbool operator<=(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs, 828053d81ceSMarshall Clow basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT 829053d81ceSMarshall Clow{ 830053d81ceSMarshall Clow return __lhs.compare(__rhs) <= 0; 831053d81ceSMarshall Clow} 832053d81ceSMarshall Clow 833053d81ceSMarshall Clow 834053d81ceSMarshall Clow// operator >= 835053d81ceSMarshall Clowtemplate<class _CharT, class _Traits> 836053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 837053d81ceSMarshall Clowbool operator>=(basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT 838053d81ceSMarshall Clow{ 839053d81ceSMarshall Clow return __lhs.compare(__rhs) >= 0; 840053d81ceSMarshall Clow} 841053d81ceSMarshall Clow 842053d81ceSMarshall Clow 843053d81ceSMarshall Clowtemplate<class _CharT, class _Traits> 844053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 845053d81ceSMarshall Clowbool operator>=(basic_string_view<_CharT, _Traits> __lhs, 846053d81ceSMarshall Clow typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT 847053d81ceSMarshall Clow{ 848053d81ceSMarshall Clow return __lhs.compare(__rhs) >= 0; 849053d81ceSMarshall Clow} 850053d81ceSMarshall Clow 851053d81ceSMarshall Clowtemplate<class _CharT, class _Traits> 852053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 853053d81ceSMarshall Clowbool operator>=(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs, 854053d81ceSMarshall Clow basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT 855053d81ceSMarshall Clow{ 856053d81ceSMarshall Clow return __lhs.compare(__rhs) >= 0; 857053d81ceSMarshall Clow} 858053d81ceSMarshall Clow 859af4a29afSEric Fiselier 860af4a29afSEric Fiseliertemplate<class _CharT, class _Traits> 861af4a29afSEric Fiselierbasic_ostream<_CharT, _Traits>& 862af4a29afSEric Fiselieroperator<<(basic_ostream<_CharT, _Traits>& __os, 863af4a29afSEric Fiselier basic_string_view<_CharT, _Traits> __str); 864af4a29afSEric Fiselier 865053d81ceSMarshall Clow// [string.view.hash] 86693184302SMarshall Clowtemplate<class _CharT> 86793184302SMarshall Clowstruct _LIBCPP_TEMPLATE_VIS hash<basic_string_view<_CharT, char_traits<_CharT> > > 86893184302SMarshall Clow : public unary_function<basic_string_view<_CharT, char_traits<_CharT> >, size_t> 869053d81ceSMarshall Clow{ 870a86710f1SLouis Dionne _LIBCPP_INLINE_VISIBILITY 87193184302SMarshall Clow size_t operator()(const basic_string_view<_CharT, char_traits<_CharT> > __val) const _NOEXCEPT { 872053d81ceSMarshall Clow return __do_string_hash(__val.data(), __val.data() + __val.size()); 873053d81ceSMarshall Clow } 874a86710f1SLouis Dionne}; 875053d81ceSMarshall Clow 8768fd58a6bSMarshall Clow 8778fd58a6bSMarshall Clow#if _LIBCPP_STD_VER > 11 8788fd58a6bSMarshall Clowinline namespace literals 8798fd58a6bSMarshall Clow{ 8808fd58a6bSMarshall Clow inline namespace string_view_literals 8818fd58a6bSMarshall Clow { 8828fd58a6bSMarshall Clow inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR 88359b48302SMarshall Clow basic_string_view<char> operator "" sv(const char *__str, size_t __len) _NOEXCEPT 8848fd58a6bSMarshall Clow { 8858fd58a6bSMarshall Clow return basic_string_view<char> (__str, __len); 8868fd58a6bSMarshall Clow } 8878fd58a6bSMarshall Clow 888f4c1258dSLouis Dionne#ifndef _LIBCPP_HAS_NO_WIDE_CHARACTERS 8898fd58a6bSMarshall Clow inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR 89059b48302SMarshall Clow basic_string_view<wchar_t> operator "" sv(const wchar_t *__str, size_t __len) _NOEXCEPT 8918fd58a6bSMarshall Clow { 8928fd58a6bSMarshall Clow return basic_string_view<wchar_t> (__str, __len); 8938fd58a6bSMarshall Clow } 894f4c1258dSLouis Dionne#endif 8958fd58a6bSMarshall Clow 8965c40c994SArthur O'Dwyer#ifndef _LIBCPP_HAS_NO_CHAR8_T 8977dad0bd6SMarshall Clow inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR 8987dad0bd6SMarshall Clow basic_string_view<char8_t> operator "" sv(const char8_t *__str, size_t __len) _NOEXCEPT 8997dad0bd6SMarshall Clow { 9007dad0bd6SMarshall Clow return basic_string_view<char8_t> (__str, __len); 9017dad0bd6SMarshall Clow } 9027dad0bd6SMarshall Clow#endif 9037dad0bd6SMarshall Clow 9048fd58a6bSMarshall Clow inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR 90559b48302SMarshall Clow basic_string_view<char16_t> operator "" sv(const char16_t *__str, size_t __len) _NOEXCEPT 9068fd58a6bSMarshall Clow { 9078fd58a6bSMarshall Clow return basic_string_view<char16_t> (__str, __len); 9088fd58a6bSMarshall Clow } 9098fd58a6bSMarshall Clow 9108fd58a6bSMarshall Clow inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR 91159b48302SMarshall Clow basic_string_view<char32_t> operator "" sv(const char32_t *__str, size_t __len) _NOEXCEPT 9128fd58a6bSMarshall Clow { 9138fd58a6bSMarshall Clow return basic_string_view<char32_t> (__str, __len); 9148fd58a6bSMarshall Clow } 9158fd58a6bSMarshall Clow } 9168fd58a6bSMarshall Clow} 9178fd58a6bSMarshall Clow#endif 918053d81ceSMarshall Clow_LIBCPP_END_NAMESPACE_STD 919053d81ceSMarshall Clow 920a016efb1SEric Fiselier_LIBCPP_POP_MACROS 921a016efb1SEric Fiselier 922053d81ceSMarshall Clow#endif // _LIBCPP_STRING_VIEW 923