1053d81ceSMarshall Clow// -*- C++ -*-
2053d81ceSMarshall Clow//===------------------------ string_view ---------------------------------===//
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>
2301ace074SMark de Wever    inline constexpr bool ranges::enable_borrowed_range<basic_string_view<charT, traits>> = true;  // C++20
2401ace074SMark de Wever
25053d81ceSMarshall Clow    // 7.9, basic_string_view non-member comparison functions
26053d81ceSMarshall Clow    template<class charT, class traits>
27053d81ceSMarshall Clow    constexpr bool operator==(basic_string_view<charT, traits> x,
28053d81ceSMarshall Clow                              basic_string_view<charT, traits> y) noexcept;
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    // see below, sufficient additional overloads of comparison functions
45053d81ceSMarshall Clow
46053d81ceSMarshall Clow    // 7.10, Inserters and extractors
47053d81ceSMarshall Clow    template<class charT, class traits>
48053d81ceSMarshall Clow      basic_ostream<charT, traits>&
49053d81ceSMarshall Clow        operator<<(basic_ostream<charT, traits>& os,
50053d81ceSMarshall Clow                   basic_string_view<charT, traits> str);
51053d81ceSMarshall Clow
52053d81ceSMarshall Clow    // basic_string_view typedef names
53053d81ceSMarshall Clow    typedef basic_string_view<char> string_view;
5428f82becSMarek Kurdej    typedef basic_string_view<char8_t> u8string_view; // C++20
55053d81ceSMarshall Clow    typedef basic_string_view<char16_t> u16string_view;
56053d81ceSMarshall Clow    typedef basic_string_view<char32_t> u32string_view;
57053d81ceSMarshall Clow    typedef basic_string_view<wchar_t> wstring_view;
58053d81ceSMarshall Clow
59053d81ceSMarshall Clow    template<class charT, class traits = char_traits<charT>>
60053d81ceSMarshall Clow    class basic_string_view {
61053d81ceSMarshall Clow      public:
62053d81ceSMarshall Clow      // types
63053d81ceSMarshall Clow      typedef traits traits_type;
64053d81ceSMarshall Clow      typedef charT value_type;
65053d81ceSMarshall Clow      typedef charT* pointer;
66053d81ceSMarshall Clow      typedef const charT* const_pointer;
67053d81ceSMarshall Clow      typedef charT& reference;
68053d81ceSMarshall Clow      typedef const charT& const_reference;
69053d81ceSMarshall Clow      typedef implementation-defined const_iterator;
70053d81ceSMarshall Clow      typedef const_iterator iterator;
71053d81ceSMarshall Clow      typedef reverse_iterator<const_iterator> const_reverse_iterator;
72053d81ceSMarshall Clow      typedef const_reverse_iterator reverse_iterator;
73053d81ceSMarshall Clow      typedef size_t size_type;
74053d81ceSMarshall Clow      typedef ptrdiff_t difference_type;
75053d81ceSMarshall Clow      static constexpr size_type npos = size_type(-1);
76053d81ceSMarshall Clow
77053d81ceSMarshall Clow      // 7.3, basic_string_view constructors and assignment operators
78053d81ceSMarshall Clow      constexpr basic_string_view() noexcept;
79053d81ceSMarshall Clow      constexpr basic_string_view(const basic_string_view&) noexcept = default;
80053d81ceSMarshall Clow      basic_string_view& operator=(const basic_string_view&) noexcept = default;
81053d81ceSMarshall Clow      template<class Allocator>
82053d81ceSMarshall Clow      constexpr basic_string_view(const charT* str);
83053d81ceSMarshall Clow      constexpr basic_string_view(const charT* str, size_type len);
84053d81ceSMarshall Clow
85053d81ceSMarshall Clow      // 7.4, basic_string_view iterator support
86053d81ceSMarshall Clow      constexpr const_iterator begin() const noexcept;
87053d81ceSMarshall Clow      constexpr const_iterator end() const noexcept;
88053d81ceSMarshall Clow      constexpr const_iterator cbegin() const noexcept;
89053d81ceSMarshall Clow      constexpr const_iterator cend() const noexcept;
90053d81ceSMarshall Clow      const_reverse_iterator rbegin() const noexcept;
91053d81ceSMarshall Clow      const_reverse_iterator rend() const noexcept;
92053d81ceSMarshall Clow      const_reverse_iterator crbegin() const noexcept;
93053d81ceSMarshall Clow      const_reverse_iterator crend() const noexcept;
94053d81ceSMarshall Clow
95053d81ceSMarshall Clow      // 7.5, basic_string_view capacity
96053d81ceSMarshall Clow      constexpr size_type size() const noexcept;
97053d81ceSMarshall Clow      constexpr size_type length() const noexcept;
98053d81ceSMarshall Clow      constexpr size_type max_size() const noexcept;
99053d81ceSMarshall Clow      constexpr bool empty() const noexcept;
100053d81ceSMarshall Clow
101053d81ceSMarshall Clow      // 7.6, basic_string_view element access
102053d81ceSMarshall Clow      constexpr const_reference operator[](size_type pos) const;
103053d81ceSMarshall Clow      constexpr const_reference at(size_type pos) const;
104053d81ceSMarshall Clow      constexpr const_reference front() const;
105053d81ceSMarshall Clow      constexpr const_reference back() const;
106053d81ceSMarshall Clow      constexpr const_pointer data() const noexcept;
107053d81ceSMarshall Clow
108053d81ceSMarshall Clow      // 7.7, basic_string_view modifiers
109053d81ceSMarshall Clow      constexpr void remove_prefix(size_type n);
110053d81ceSMarshall Clow      constexpr void remove_suffix(size_type n);
111053d81ceSMarshall Clow      constexpr void swap(basic_string_view& s) noexcept;
112053d81ceSMarshall Clow
11306e2b737SArthur O'Dwyer      size_type copy(charT* s, size_type n, size_type pos = 0) const;  // constexpr in C++20
114053d81ceSMarshall Clow
115053d81ceSMarshall Clow      constexpr basic_string_view substr(size_type pos = 0, size_type n = npos) const;
116053d81ceSMarshall Clow      constexpr int compare(basic_string_view s) const noexcept;
117053d81ceSMarshall Clow      constexpr int compare(size_type pos1, size_type n1, basic_string_view s) const;
118053d81ceSMarshall Clow      constexpr int compare(size_type pos1, size_type n1,
119053d81ceSMarshall Clow                            basic_string_view s, size_type pos2, size_type n2) const;
120053d81ceSMarshall Clow      constexpr int compare(const charT* s) const;
121053d81ceSMarshall Clow      constexpr int compare(size_type pos1, size_type n1, const charT* s) const;
122053d81ceSMarshall Clow      constexpr int compare(size_type pos1, size_type n1,
123053d81ceSMarshall Clow                            const charT* s, size_type n2) const;
124053d81ceSMarshall Clow      constexpr size_type find(basic_string_view s, size_type pos = 0) const noexcept;
125053d81ceSMarshall Clow      constexpr size_type find(charT c, size_type pos = 0) const noexcept;
126dea74b28Szoecarver      constexpr size_type find(const charT* s, size_type pos, size_type n) const noexcept; // noexcept as an extension
127dea74b28Szoecarver      constexpr size_type find(const charT* s, size_type pos = 0) const noexcept; // noexcept as an extension
128053d81ceSMarshall Clow      constexpr size_type rfind(basic_string_view s, size_type pos = npos) const noexcept;
129053d81ceSMarshall Clow      constexpr size_type rfind(charT c, size_type pos = npos) const noexcept;
130dea74b28Szoecarver      constexpr size_type rfind(const charT* s, size_type pos, size_type n) const noexcept; // noexcept as an extension
131dea74b28Szoecarver      constexpr size_type rfind(const charT* s, size_type pos = npos) const noexcept; // noexcept as an extension
132053d81ceSMarshall Clow      constexpr size_type find_first_of(basic_string_view s, size_type pos = 0) const noexcept;
133053d81ceSMarshall Clow      constexpr size_type find_first_of(charT c, size_type pos = 0) const noexcept;
134dea74b28Szoecarver      constexpr size_type find_first_of(const charT* s, size_type pos, size_type n) const noexcept; // noexcept as an extension
135dea74b28Szoecarver      constexpr size_type find_first_of(const charT* s, size_type pos = 0) const noexcept; // noexcept as an extension
136053d81ceSMarshall Clow      constexpr size_type find_last_of(basic_string_view s, size_type pos = npos) const noexcept;
137053d81ceSMarshall Clow      constexpr size_type find_last_of(charT c, size_type pos = npos) const noexcept;
138dea74b28Szoecarver      constexpr size_type find_last_of(const charT* s, size_type pos, size_type n) const noexcept; // noexcept as an extension
139dea74b28Szoecarver      constexpr size_type find_last_of(const charT* s, size_type pos = npos) const noexcept; // noexcept as an extension
140053d81ceSMarshall Clow      constexpr size_type find_first_not_of(basic_string_view s, size_type pos = 0) const noexcept;
141053d81ceSMarshall Clow      constexpr size_type find_first_not_of(charT c, size_type pos = 0) const noexcept;
142dea74b28Szoecarver      constexpr size_type find_first_not_of(const charT* s, size_type pos, size_type n) const noexcept; // noexcept as an extension
143dea74b28Szoecarver      constexpr size_type find_first_not_of(const charT* s, size_type pos = 0) const noexcept; // noexcept as an extension
144053d81ceSMarshall Clow      constexpr size_type find_last_not_of(basic_string_view s, size_type pos = npos) const noexcept;
145053d81ceSMarshall Clow      constexpr size_type find_last_not_of(charT c, size_type pos = npos) const noexcept;
146dea74b28Szoecarver      constexpr size_type find_last_not_of(const charT* s, size_type pos, size_type n) const noexcept; // noexcept as an extension
147dea74b28Szoecarver      constexpr size_type find_last_not_of(const charT* s, size_type pos = npos) const noexcept; // noexcept as an extension
148053d81ceSMarshall Clow
149044b892cSMarek Kurdej      constexpr bool starts_with(basic_string_view s) const noexcept; // C++20
150044b892cSMarek Kurdej      constexpr bool starts_with(charT c) const noexcept;             // C++20
151044b892cSMarek Kurdej      constexpr bool starts_with(const charT* s) const;               // C++20
152044b892cSMarek Kurdej      constexpr bool ends_with(basic_string_view s) const noexcept;   // C++20
153044b892cSMarek Kurdej      constexpr bool ends_with(charT c) const noexcept;               // C++20
154044b892cSMarek Kurdej      constexpr bool ends_with(const charT* s) const;                 // C++20
155800259c9SMarshall Clow
1566ac9cb2aSWim Leflere      constexpr bool contains(basic_string_view s) const noexcept; // C++2b
1576ac9cb2aSWim Leflere      constexpr bool contains(charT c) const noexcept;             // C++2b
1586ac9cb2aSWim Leflere      constexpr bool contains(const charT* s) const;               // C++2b
1596ac9cb2aSWim Leflere
160053d81ceSMarshall Clow     private:
161053d81ceSMarshall Clow      const_pointer data_;  // exposition only
162053d81ceSMarshall Clow      size_type     size_;  // exposition only
163053d81ceSMarshall Clow    };
164053d81ceSMarshall Clow
165053d81ceSMarshall Clow  // 7.11, Hash support
166053d81ceSMarshall Clow  template <class T> struct hash;
167053d81ceSMarshall Clow  template <> struct hash<string_view>;
16828f82becSMarek Kurdej  template <> struct hash<u8string_view>; // C++20
169053d81ceSMarshall Clow  template <> struct hash<u16string_view>;
170053d81ceSMarshall Clow  template <> struct hash<u32string_view>;
171053d81ceSMarshall Clow  template <> struct hash<wstring_view>;
172053d81ceSMarshall Clow
17359b48302SMarshall Clow  constexpr basic_string_view<char>     operator "" sv( const char *str,     size_t len ) noexcept;
17459b48302SMarshall Clow  constexpr basic_string_view<wchar_t>  operator "" sv( const wchar_t *str,  size_t len ) noexcept;
17528f82becSMarek Kurdej  constexpr basic_string_view<char8_t>  operator "" sv( const char8_t *str,  size_t len ) noexcept; // C++20
17659b48302SMarshall Clow  constexpr basic_string_view<char16_t> operator "" sv( const char16_t *str, size_t len ) noexcept;
17759b48302SMarshall Clow  constexpr basic_string_view<char32_t> operator "" sv( const char32_t *str, size_t len ) noexcept;
1788fd58a6bSMarshall Clow
179053d81ceSMarshall Clow}  // namespace std
180053d81ceSMarshall Clow
181053d81ceSMarshall Clow
182053d81ceSMarshall Clow*/
183053d81ceSMarshall Clow
184053d81ceSMarshall Clow#include <__config>
185*bfbd73f8SArthur O'Dwyer#include <__debug>
18601ace074SMark de Wever#include <__ranges/enable_borrowed_range.h>
187053d81ceSMarshall Clow#include <__string>
188ca648c97SEric Fiselier#include <algorithm>
1892d0f1fa4SArthur O'Dwyer#include <compare>
190*bfbd73f8SArthur O'Dwyer#include <iosfwd>
191053d81ceSMarshall Clow#include <iterator>
192ca648c97SEric Fiselier#include <limits>
193ca648c97SEric Fiselier#include <stdexcept>
194f56972e2SMarshall Clow#include <version>
195053d81ceSMarshall Clow
196053d81ceSMarshall Clow#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
197053d81ceSMarshall Clow#pragma GCC system_header
198053d81ceSMarshall Clow#endif
199053d81ceSMarshall Clow
200a016efb1SEric Fiselier_LIBCPP_PUSH_MACROS
201a016efb1SEric Fiselier#include <__undef_macros>
202a016efb1SEric Fiselier
203a016efb1SEric Fiselier
204053d81ceSMarshall Clow_LIBCPP_BEGIN_NAMESPACE_STD
205053d81ceSMarshall Clow
206053d81ceSMarshall Clowtemplate<class _CharT, class _Traits = char_traits<_CharT> >
2072a2c228cSRichard Smith    class _LIBCPP_TEMPLATE_VIS basic_string_view;
2082a2c228cSRichard Smith
2092a2c228cSRichard Smithtypedef basic_string_view<char>     string_view;
2105c40c994SArthur O'Dwyer#ifndef _LIBCPP_HAS_NO_CHAR8_T
2112a2c228cSRichard Smithtypedef basic_string_view<char8_t>  u8string_view;
2122a2c228cSRichard Smith#endif
2132a2c228cSRichard Smithtypedef basic_string_view<char16_t> u16string_view;
2142a2c228cSRichard Smithtypedef basic_string_view<char32_t> u32string_view;
2152a2c228cSRichard Smithtypedef basic_string_view<wchar_t>  wstring_view;
2162a2c228cSRichard Smith
2172a2c228cSRichard Smithtemplate<class _CharT, class _Traits>
2182a2c228cSRichard Smithclass
2192a2c228cSRichard Smith    _LIBCPP_PREFERRED_NAME(string_view)
2205c40c994SArthur O'Dwyer#ifndef _LIBCPP_HAS_NO_CHAR8_T
2212a2c228cSRichard Smith    _LIBCPP_PREFERRED_NAME(u8string_view)
2222a2c228cSRichard Smith#endif
2232a2c228cSRichard Smith    _LIBCPP_PREFERRED_NAME(u16string_view)
2242a2c228cSRichard Smith    _LIBCPP_PREFERRED_NAME(u32string_view)
2252a2c228cSRichard Smith    _LIBCPP_PREFERRED_NAME(wstring_view)
2262a2c228cSRichard Smith    basic_string_view {
227053d81ceSMarshall Clowpublic:
228053d81ceSMarshall Clow    // types
229053d81ceSMarshall Clow    typedef _Traits                                    traits_type;
230053d81ceSMarshall Clow    typedef _CharT                                     value_type;
2317d661bb2SMarshall Clow    typedef _CharT*                                    pointer;
232053d81ceSMarshall Clow    typedef const _CharT*                              const_pointer;
2337d661bb2SMarshall Clow    typedef _CharT&                                    reference;
234053d81ceSMarshall Clow    typedef const _CharT&                              const_reference;
235053d81ceSMarshall Clow    typedef const_pointer                              const_iterator; // See [string.view.iterators]
236053d81ceSMarshall Clow    typedef const_iterator                             iterator;
237053d81ceSMarshall Clow    typedef _VSTD::reverse_iterator<const_iterator>    const_reverse_iterator;
238053d81ceSMarshall Clow    typedef const_reverse_iterator                     reverse_iterator;
239053d81ceSMarshall Clow    typedef size_t                                     size_type;
240053d81ceSMarshall Clow    typedef ptrdiff_t                                  difference_type;
241053d81ceSMarshall Clow    static _LIBCPP_CONSTEXPR const size_type npos = -1; // size_type(-1);
242053d81ceSMarshall Clow
2434a6f3c47SMarshall Clow    static_assert((!is_array<value_type>::value), "Character type of basic_string_view must not be an array");
2444a6f3c47SMarshall Clow    static_assert(( is_standard_layout<value_type>::value), "Character type of basic_string_view must be standard-layout");
2454a6f3c47SMarshall Clow    static_assert(( is_trivial<value_type>::value), "Character type of basic_string_view must be trivial");
2464069c2bcSMarshall Clow    static_assert((is_same<_CharT, typename traits_type::char_type>::value),
2474069c2bcSMarshall Clow                  "traits_type::char_type must be the same type as CharT");
2484069c2bcSMarshall Clow
249053d81ceSMarshall Clow    // [string.view.cons], construct/copy
250053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
251053d81ceSMarshall Clow    basic_string_view() _NOEXCEPT : __data (nullptr), __size(0) {}
252053d81ceSMarshall Clow
253053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
254053d81ceSMarshall Clow    basic_string_view(const basic_string_view&) _NOEXCEPT = default;
255053d81ceSMarshall Clow
256cddeb751SMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
257053d81ceSMarshall Clow    basic_string_view& operator=(const basic_string_view&) _NOEXCEPT = default;
258053d81ceSMarshall Clow
259053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
260ac2b3e3aSMarshall Clow    basic_string_view(const _CharT* __s, size_type __len) _NOEXCEPT
261053d81ceSMarshall Clow        : __data(__s), __size(__len)
262053d81ceSMarshall Clow    {
263f67524d4SMarshall Clow#if _LIBCPP_STD_VER > 11
264f67524d4SMarshall Clow    _LIBCPP_ASSERT(__len == 0 || __s != nullptr, "string_view::string_view(_CharT *, size_t): received nullptr");
265f67524d4SMarshall Clow#endif
266053d81ceSMarshall Clow    }
267053d81ceSMarshall Clow
268053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
269053d81ceSMarshall Clow    basic_string_view(const _CharT* __s)
270d586f92cSArthur O'Dwyer        : __data(__s), __size(_VSTD::__char_traits_length_checked<_Traits>(__s)) {}
271053d81ceSMarshall Clow
272053d81ceSMarshall Clow    // [string.view.iterators], iterators
273053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
274053d81ceSMarshall Clow    const_iterator begin()  const _NOEXCEPT { return cbegin(); }
275053d81ceSMarshall Clow
276053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
277053d81ceSMarshall Clow    const_iterator end()    const _NOEXCEPT { return cend(); }
278053d81ceSMarshall Clow
279053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
280053d81ceSMarshall Clow    const_iterator cbegin() const _NOEXCEPT { return __data; }
281053d81ceSMarshall Clow
282053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
283053d81ceSMarshall Clow    const_iterator cend()   const _NOEXCEPT { return __data + __size; }
284053d81ceSMarshall Clow
285cddeb751SMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX14 _LIBCPP_INLINE_VISIBILITY
286053d81ceSMarshall Clow    const_reverse_iterator rbegin()   const _NOEXCEPT { return const_reverse_iterator(cend()); }
287053d81ceSMarshall Clow
288cddeb751SMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX14 _LIBCPP_INLINE_VISIBILITY
289053d81ceSMarshall Clow    const_reverse_iterator rend()     const _NOEXCEPT { return const_reverse_iterator(cbegin()); }
290053d81ceSMarshall Clow
291cddeb751SMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX14 _LIBCPP_INLINE_VISIBILITY
292053d81ceSMarshall Clow    const_reverse_iterator crbegin()  const _NOEXCEPT { return const_reverse_iterator(cend()); }
293053d81ceSMarshall Clow
294cddeb751SMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX14 _LIBCPP_INLINE_VISIBILITY
295053d81ceSMarshall Clow    const_reverse_iterator crend()    const _NOEXCEPT { return const_reverse_iterator(cbegin()); }
296053d81ceSMarshall Clow
297053d81ceSMarshall Clow    // [string.view.capacity], capacity
298053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
299053d81ceSMarshall Clow    size_type size()     const _NOEXCEPT { return __size; }
300053d81ceSMarshall Clow
301053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
302053d81ceSMarshall Clow    size_type length()   const _NOEXCEPT { return __size; }
303053d81ceSMarshall Clow
304053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
305053d81ceSMarshall Clow    size_type max_size() const _NOEXCEPT { return numeric_limits<size_type>::max(); }
306053d81ceSMarshall Clow
30725a7ba45SMarshall Clow    _LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
30825a7ba45SMarshall Clow    bool empty()         const _NOEXCEPT { return __size == 0; }
309053d81ceSMarshall Clow
310053d81ceSMarshall Clow    // [string.view.access], element access
311053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
3129eff07a7SChris Palmer    const_reference operator[](size_type __pos) const _NOEXCEPT {
3139eff07a7SChris Palmer      return _LIBCPP_ASSERT(__pos < size(), "string_view[] index out of bounds"), __data[__pos];
3149eff07a7SChris Palmer    }
315053d81ceSMarshall Clow
316053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
317053d81ceSMarshall Clow    const_reference at(size_type __pos) const
318053d81ceSMarshall Clow    {
319053d81ceSMarshall Clow        return __pos >= size()
3200fc8cec7SMarshall Clow            ? (__throw_out_of_range("string_view::at"), __data[0])
321053d81ceSMarshall Clow            : __data[__pos];
322053d81ceSMarshall Clow    }
323053d81ceSMarshall Clow
324053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
3259ea0e473SMarshall Clow    const_reference front() const _NOEXCEPT
326053d81ceSMarshall Clow    {
327053d81ceSMarshall Clow        return _LIBCPP_ASSERT(!empty(), "string_view::front(): string is empty"), __data[0];
328053d81ceSMarshall Clow    }
329053d81ceSMarshall Clow
330053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
3319ea0e473SMarshall Clow    const_reference back() const _NOEXCEPT
332053d81ceSMarshall Clow    {
333053d81ceSMarshall Clow        return _LIBCPP_ASSERT(!empty(), "string_view::back(): string is empty"), __data[__size-1];
334053d81ceSMarshall Clow    }
335053d81ceSMarshall Clow
336053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
337053d81ceSMarshall Clow    const_pointer data() const _NOEXCEPT { return __data; }
338053d81ceSMarshall Clow
339053d81ceSMarshall Clow    // [string.view.modifiers], modifiers:
340053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
341053d81ceSMarshall Clow    void remove_prefix(size_type __n) _NOEXCEPT
342053d81ceSMarshall Clow    {
343053d81ceSMarshall Clow        _LIBCPP_ASSERT(__n <= size(), "remove_prefix() can't remove more than size()");
344053d81ceSMarshall Clow        __data += __n;
345053d81ceSMarshall Clow        __size -= __n;
346053d81ceSMarshall Clow    }
347053d81ceSMarshall Clow
348053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
349053d81ceSMarshall Clow    void remove_suffix(size_type __n) _NOEXCEPT
350053d81ceSMarshall Clow    {
351053d81ceSMarshall Clow        _LIBCPP_ASSERT(__n <= size(), "remove_suffix() can't remove more than size()");
352053d81ceSMarshall Clow        __size -= __n;
353053d81ceSMarshall Clow    }
354053d81ceSMarshall Clow
355053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
356053d81ceSMarshall Clow    void swap(basic_string_view& __other) _NOEXCEPT
357053d81ceSMarshall Clow    {
358053d81ceSMarshall Clow        const value_type *__p = __data;
359053d81ceSMarshall Clow        __data = __other.__data;
360053d81ceSMarshall Clow        __other.__data = __p;
361053d81ceSMarshall Clow
362053d81ceSMarshall Clow        size_type __sz = __size;
363053d81ceSMarshall Clow        __size = __other.__size;
364053d81ceSMarshall Clow        __other.__size = __sz;
365053d81ceSMarshall Clow    }
366053d81ceSMarshall Clow
36706e2b737SArthur O'Dwyer    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX17
368053d81ceSMarshall Clow    size_type copy(_CharT* __s, size_type __n, size_type __pos = 0) const
369053d81ceSMarshall Clow    {
370053d81ceSMarshall Clow        if (__pos > size())
3710fc8cec7SMarshall Clow            __throw_out_of_range("string_view::copy");
372053d81ceSMarshall Clow        size_type __rlen = _VSTD::min(__n, size() - __pos);
3731c7fe126SMarshall Clow        _Traits::copy(__s, data() + __pos, __rlen);
374053d81ceSMarshall Clow        return __rlen;
375053d81ceSMarshall Clow    }
376053d81ceSMarshall Clow
377053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
378053d81ceSMarshall Clow    basic_string_view substr(size_type __pos = 0, size_type __n = npos) const
379053d81ceSMarshall Clow    {
380053d81ceSMarshall Clow        return __pos > size()
3810fc8cec7SMarshall Clow            ? (__throw_out_of_range("string_view::substr"), basic_string_view())
382053d81ceSMarshall Clow            : basic_string_view(data() + __pos, _VSTD::min(__n, size() - __pos));
383053d81ceSMarshall Clow    }
384053d81ceSMarshall Clow
385053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 int compare(basic_string_view __sv) const _NOEXCEPT
386053d81ceSMarshall Clow    {
387053d81ceSMarshall Clow        size_type __rlen = _VSTD::min( size(), __sv.size());
388053d81ceSMarshall Clow        int __retval = _Traits::compare(data(), __sv.data(), __rlen);
389053d81ceSMarshall Clow        if ( __retval == 0 ) // first __rlen chars matched
390053d81ceSMarshall Clow            __retval = size() == __sv.size() ? 0 : ( size() < __sv.size() ? -1 : 1 );
391053d81ceSMarshall Clow        return __retval;
392053d81ceSMarshall Clow    }
393053d81ceSMarshall Clow
394053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
395053d81ceSMarshall Clow    int compare(size_type __pos1, size_type __n1, basic_string_view __sv) const
396053d81ceSMarshall Clow    {
397053d81ceSMarshall Clow        return substr(__pos1, __n1).compare(__sv);
398053d81ceSMarshall Clow    }
399053d81ceSMarshall Clow
400053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
401053d81ceSMarshall Clow    int compare(                       size_type __pos1, size_type __n1,
4029ffacf3dSEric Fiselier                basic_string_view __sv, size_type __pos2, size_type __n2) const
403053d81ceSMarshall Clow    {
4049ffacf3dSEric Fiselier        return substr(__pos1, __n1).compare(__sv.substr(__pos2, __n2));
405053d81ceSMarshall Clow    }
406053d81ceSMarshall Clow
407053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
408aa849bc2SMarshall Clow    int compare(const _CharT* __s) const _NOEXCEPT
409053d81ceSMarshall Clow    {
410053d81ceSMarshall Clow        return compare(basic_string_view(__s));
411053d81ceSMarshall Clow    }
412053d81ceSMarshall Clow
413053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
414053d81ceSMarshall Clow    int compare(size_type __pos1, size_type __n1, const _CharT* __s) const
415053d81ceSMarshall Clow    {
416053d81ceSMarshall Clow        return substr(__pos1, __n1).compare(basic_string_view(__s));
417053d81ceSMarshall Clow    }
418053d81ceSMarshall Clow
419053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
420053d81ceSMarshall Clow    int compare(size_type __pos1, size_type __n1, const _CharT* __s, size_type __n2) const
421053d81ceSMarshall Clow    {
422053d81ceSMarshall Clow        return substr(__pos1, __n1).compare(basic_string_view(__s, __n2));
423053d81ceSMarshall Clow    }
424053d81ceSMarshall Clow
425053d81ceSMarshall Clow    // find
426053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
427053d81ceSMarshall Clow    size_type find(basic_string_view __s, size_type __pos = 0) const _NOEXCEPT
428053d81ceSMarshall Clow    {
429053d81ceSMarshall Clow        _LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find(): received nullptr");
430053d81ceSMarshall Clow        return __str_find<value_type, size_type, traits_type, npos>
431053d81ceSMarshall Clow            (data(), size(), __s.data(), __pos, __s.size());
432053d81ceSMarshall Clow    }
433053d81ceSMarshall Clow
434053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
435053d81ceSMarshall Clow    size_type find(_CharT __c, size_type __pos = 0) const _NOEXCEPT
436053d81ceSMarshall Clow    {
437053d81ceSMarshall Clow        return __str_find<value_type, size_type, traits_type, npos>
438053d81ceSMarshall Clow            (data(), size(), __c, __pos);
439053d81ceSMarshall Clow    }
440053d81ceSMarshall Clow
441053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
442dea74b28Szoecarver    size_type find(const _CharT* __s, size_type __pos, size_type __n) const _NOEXCEPT
443053d81ceSMarshall Clow    {
444053d81ceSMarshall Clow        _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find(): received nullptr");
445053d81ceSMarshall Clow        return __str_find<value_type, size_type, traits_type, npos>
446053d81ceSMarshall Clow            (data(), size(), __s, __pos, __n);
447053d81ceSMarshall Clow    }
448053d81ceSMarshall Clow
449053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
450dea74b28Szoecarver    size_type find(const _CharT* __s, size_type __pos = 0) const _NOEXCEPT
451053d81ceSMarshall Clow    {
452053d81ceSMarshall Clow        _LIBCPP_ASSERT(__s != nullptr, "string_view::find(): received nullptr");
453053d81ceSMarshall Clow        return __str_find<value_type, size_type, traits_type, npos>
454053d81ceSMarshall Clow            (data(), size(), __s, __pos, traits_type::length(__s));
455053d81ceSMarshall Clow    }
456053d81ceSMarshall Clow
457053d81ceSMarshall Clow    // rfind
458053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
459053d81ceSMarshall Clow    size_type rfind(basic_string_view __s, size_type __pos = npos) const _NOEXCEPT
460053d81ceSMarshall Clow    {
461053d81ceSMarshall Clow        _LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find(): received nullptr");
462053d81ceSMarshall Clow        return __str_rfind<value_type, size_type, traits_type, npos>
463053d81ceSMarshall Clow            (data(), size(), __s.data(), __pos, __s.size());
464053d81ceSMarshall Clow    }
465053d81ceSMarshall Clow
466053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
467053d81ceSMarshall Clow    size_type rfind(_CharT __c, size_type __pos = npos) const _NOEXCEPT
468053d81ceSMarshall Clow    {
469053d81ceSMarshall Clow        return __str_rfind<value_type, size_type, traits_type, npos>
470053d81ceSMarshall Clow            (data(), size(), __c, __pos);
471053d81ceSMarshall Clow    }
472053d81ceSMarshall Clow
473053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
474dea74b28Szoecarver    size_type rfind(const _CharT* __s, size_type __pos, size_type __n) const _NOEXCEPT
475053d81ceSMarshall Clow    {
476053d81ceSMarshall Clow        _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::rfind(): received nullptr");
477053d81ceSMarshall Clow        return __str_rfind<value_type, size_type, traits_type, npos>
478053d81ceSMarshall Clow            (data(), size(), __s, __pos, __n);
479053d81ceSMarshall Clow    }
480053d81ceSMarshall Clow
481053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
482dea74b28Szoecarver    size_type rfind(const _CharT* __s, size_type __pos=npos) const _NOEXCEPT
483053d81ceSMarshall Clow    {
484053d81ceSMarshall Clow        _LIBCPP_ASSERT(__s != nullptr, "string_view::rfind(): received nullptr");
485053d81ceSMarshall Clow        return __str_rfind<value_type, size_type, traits_type, npos>
486053d81ceSMarshall Clow            (data(), size(), __s, __pos, traits_type::length(__s));
487053d81ceSMarshall Clow    }
488053d81ceSMarshall Clow
489053d81ceSMarshall Clow    // find_first_of
490053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
491053d81ceSMarshall Clow    size_type find_first_of(basic_string_view __s, size_type __pos = 0) const _NOEXCEPT
492053d81ceSMarshall Clow    {
493053d81ceSMarshall Clow        _LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_first_of(): received nullptr");
494053d81ceSMarshall Clow        return __str_find_first_of<value_type, size_type, traits_type, npos>
495053d81ceSMarshall Clow            (data(), size(), __s.data(), __pos, __s.size());
496053d81ceSMarshall Clow    }
497053d81ceSMarshall Clow
498053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
499053d81ceSMarshall Clow    size_type find_first_of(_CharT __c, size_type __pos = 0) const _NOEXCEPT
500053d81ceSMarshall Clow    { return find(__c, __pos); }
501053d81ceSMarshall Clow
502053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
503dea74b28Szoecarver    size_type find_first_of(const _CharT* __s, size_type __pos, size_type __n) const _NOEXCEPT
504053d81ceSMarshall Clow    {
505053d81ceSMarshall Clow        _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_first_of(): received nullptr");
506053d81ceSMarshall Clow        return __str_find_first_of<value_type, size_type, traits_type, npos>
507053d81ceSMarshall Clow            (data(), size(), __s, __pos, __n);
508053d81ceSMarshall Clow    }
509053d81ceSMarshall Clow
510053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
511dea74b28Szoecarver    size_type find_first_of(const _CharT* __s, size_type __pos=0) const _NOEXCEPT
512053d81ceSMarshall Clow    {
513053d81ceSMarshall Clow        _LIBCPP_ASSERT(__s != nullptr, "string_view::find_first_of(): received nullptr");
514053d81ceSMarshall Clow        return __str_find_first_of<value_type, size_type, traits_type, npos>
515053d81ceSMarshall Clow            (data(), size(), __s, __pos, traits_type::length(__s));
516053d81ceSMarshall Clow    }
517053d81ceSMarshall Clow
518053d81ceSMarshall Clow    // find_last_of
519053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
520053d81ceSMarshall Clow    size_type find_last_of(basic_string_view __s, size_type __pos=npos) const _NOEXCEPT
521053d81ceSMarshall Clow    {
522053d81ceSMarshall Clow        _LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_last_of(): received nullptr");
523053d81ceSMarshall Clow        return __str_find_last_of<value_type, size_type, traits_type, npos>
524053d81ceSMarshall Clow            (data(), size(), __s.data(), __pos, __s.size());
525053d81ceSMarshall Clow    }
526053d81ceSMarshall Clow
527053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
528053d81ceSMarshall Clow    size_type find_last_of(_CharT __c, size_type __pos = npos) const _NOEXCEPT
529053d81ceSMarshall Clow    { return rfind(__c, __pos); }
530053d81ceSMarshall Clow
531053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
532dea74b28Szoecarver    size_type find_last_of(const _CharT* __s, size_type __pos, size_type __n) const _NOEXCEPT
533053d81ceSMarshall Clow    {
534053d81ceSMarshall Clow        _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_last_of(): received nullptr");
535053d81ceSMarshall Clow        return __str_find_last_of<value_type, size_type, traits_type, npos>
536053d81ceSMarshall Clow            (data(), size(), __s, __pos, __n);
537053d81ceSMarshall Clow    }
538053d81ceSMarshall Clow
539053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
540dea74b28Szoecarver    size_type find_last_of(const _CharT* __s, size_type __pos=npos) const _NOEXCEPT
541053d81ceSMarshall Clow    {
542053d81ceSMarshall Clow        _LIBCPP_ASSERT(__s != nullptr, "string_view::find_last_of(): received nullptr");
543053d81ceSMarshall Clow        return __str_find_last_of<value_type, size_type, traits_type, npos>
544053d81ceSMarshall Clow            (data(), size(), __s, __pos, traits_type::length(__s));
545053d81ceSMarshall Clow    }
546053d81ceSMarshall Clow
547053d81ceSMarshall Clow    // find_first_not_of
548053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
549053d81ceSMarshall Clow    size_type find_first_not_of(basic_string_view __s, size_type __pos=0) const _NOEXCEPT
550053d81ceSMarshall Clow    {
551053d81ceSMarshall Clow        _LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_first_not_of(): received nullptr");
552053d81ceSMarshall Clow        return __str_find_first_not_of<value_type, size_type, traits_type, npos>
553053d81ceSMarshall Clow            (data(), size(), __s.data(), __pos, __s.size());
554053d81ceSMarshall Clow    }
555053d81ceSMarshall Clow
556053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
557053d81ceSMarshall Clow    size_type find_first_not_of(_CharT __c, size_type __pos=0) const _NOEXCEPT
558053d81ceSMarshall Clow    {
559053d81ceSMarshall Clow        return __str_find_first_not_of<value_type, size_type, traits_type, npos>
560053d81ceSMarshall Clow            (data(), size(), __c, __pos);
561053d81ceSMarshall Clow    }
562053d81ceSMarshall Clow
563053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
564dea74b28Szoecarver    size_type find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const _NOEXCEPT
565053d81ceSMarshall Clow    {
566053d81ceSMarshall Clow        _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_first_not_of(): received nullptr");
567053d81ceSMarshall Clow        return __str_find_first_not_of<value_type, size_type, traits_type, npos>
568053d81ceSMarshall Clow            (data(), size(), __s, __pos, __n);
569053d81ceSMarshall Clow    }
570053d81ceSMarshall Clow
571053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
572dea74b28Szoecarver    size_type find_first_not_of(const _CharT* __s, size_type __pos=0) const _NOEXCEPT
573053d81ceSMarshall Clow    {
574053d81ceSMarshall Clow        _LIBCPP_ASSERT(__s != nullptr, "string_view::find_first_not_of(): received nullptr");
575053d81ceSMarshall Clow        return __str_find_first_not_of<value_type, size_type, traits_type, npos>
576053d81ceSMarshall Clow            (data(), size(), __s, __pos, traits_type::length(__s));
577053d81ceSMarshall Clow    }
578053d81ceSMarshall Clow
579053d81ceSMarshall Clow    // find_last_not_of
580053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
581053d81ceSMarshall Clow    size_type find_last_not_of(basic_string_view __s, size_type __pos=npos) const _NOEXCEPT
582053d81ceSMarshall Clow    {
583053d81ceSMarshall Clow        _LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_last_not_of(): received nullptr");
584053d81ceSMarshall Clow        return __str_find_last_not_of<value_type, size_type, traits_type, npos>
585053d81ceSMarshall Clow            (data(), size(), __s.data(), __pos, __s.size());
586053d81ceSMarshall Clow    }
587053d81ceSMarshall Clow
588053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
589053d81ceSMarshall Clow    size_type find_last_not_of(_CharT __c, size_type __pos=npos) const _NOEXCEPT
590053d81ceSMarshall Clow    {
591053d81ceSMarshall Clow        return __str_find_last_not_of<value_type, size_type, traits_type, npos>
592053d81ceSMarshall Clow            (data(), size(), __c, __pos);
593053d81ceSMarshall Clow    }
594053d81ceSMarshall Clow
595053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
596dea74b28Szoecarver    size_type find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const _NOEXCEPT
597053d81ceSMarshall Clow    {
598053d81ceSMarshall Clow        _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_last_not_of(): received nullptr");
599053d81ceSMarshall Clow        return __str_find_last_not_of<value_type, size_type, traits_type, npos>
600053d81ceSMarshall Clow            (data(), size(), __s, __pos, __n);
601053d81ceSMarshall Clow    }
602053d81ceSMarshall Clow
603053d81ceSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
604dea74b28Szoecarver    size_type find_last_not_of(const _CharT* __s, size_type __pos=npos) const _NOEXCEPT
605053d81ceSMarshall Clow    {
606053d81ceSMarshall Clow        _LIBCPP_ASSERT(__s != nullptr, "string_view::find_last_not_of(): received nullptr");
607053d81ceSMarshall Clow        return __str_find_last_not_of<value_type, size_type, traits_type, npos>
608053d81ceSMarshall Clow            (data(), size(), __s, __pos, traits_type::length(__s));
609053d81ceSMarshall Clow    }
610053d81ceSMarshall Clow
611800259c9SMarshall Clow#if _LIBCPP_STD_VER > 17
612800259c9SMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
613800259c9SMarshall Clow    bool starts_with(basic_string_view __s) const _NOEXCEPT
614800259c9SMarshall Clow    { return size() >= __s.size() && compare(0, __s.size(), __s) == 0; }
615800259c9SMarshall Clow
616800259c9SMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
617800259c9SMarshall Clow    bool starts_with(value_type __c) const _NOEXCEPT
618800259c9SMarshall Clow    { return !empty() && _Traits::eq(front(), __c); }
619800259c9SMarshall Clow
620800259c9SMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
621800259c9SMarshall Clow    bool starts_with(const value_type* __s) const _NOEXCEPT
622800259c9SMarshall Clow    { return starts_with(basic_string_view(__s)); }
623800259c9SMarshall Clow
624800259c9SMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
625800259c9SMarshall Clow    bool ends_with(basic_string_view __s) const _NOEXCEPT
626800259c9SMarshall Clow    { return size() >= __s.size() && compare(size() - __s.size(), npos, __s) == 0; }
627800259c9SMarshall Clow
628800259c9SMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
629800259c9SMarshall Clow    bool ends_with(value_type __c) const _NOEXCEPT
630800259c9SMarshall Clow    { return !empty() && _Traits::eq(back(), __c); }
631800259c9SMarshall Clow
632800259c9SMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
633800259c9SMarshall Clow    bool ends_with(const value_type* __s) const _NOEXCEPT
634800259c9SMarshall Clow    { return ends_with(basic_string_view(__s)); }
635800259c9SMarshall Clow#endif
636800259c9SMarshall Clow
6376ac9cb2aSWim Leflere#if _LIBCPP_STD_VER > 20
6386ac9cb2aSWim Leflere    constexpr _LIBCPP_INLINE_VISIBILITY
6396ac9cb2aSWim Leflere    bool contains(basic_string_view __sv) const noexcept
6406ac9cb2aSWim Leflere    { return find(__sv) != npos; }
6416ac9cb2aSWim Leflere
6426ac9cb2aSWim Leflere    constexpr _LIBCPP_INLINE_VISIBILITY
6436ac9cb2aSWim Leflere    bool contains(value_type __c) const noexcept
6446ac9cb2aSWim Leflere    { return find(__c) != npos; }
6456ac9cb2aSWim Leflere
6466ac9cb2aSWim Leflere    constexpr _LIBCPP_INLINE_VISIBILITY
6476ac9cb2aSWim Leflere    bool contains(const value_type* __s) const
6486ac9cb2aSWim Leflere    { return find(__s) != npos; }
6496ac9cb2aSWim Leflere#endif
6506ac9cb2aSWim Leflere
651053d81ceSMarshall Clowprivate:
652053d81ceSMarshall Clow    const   value_type* __data;
653053d81ceSMarshall Clow    size_type           __size;
654053d81ceSMarshall Clow};
655053d81ceSMarshall Clow
65601ace074SMark de Wever#if _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_RANGES)
65701ace074SMark de Wevertemplate <class _CharT, class _Traits>
65801ace074SMark de Weverinline constexpr bool ranges::enable_borrowed_range<basic_string_view<_CharT, _Traits> > = true;
65901ace074SMark de Wever#endif // _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_RANGES)
660053d81ceSMarshall Clow
661053d81ceSMarshall Clow// [string.view.comparison]
662053d81ceSMarshall Clow// operator ==
663053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
664053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
665053d81ceSMarshall Clowbool operator==(basic_string_view<_CharT, _Traits> __lhs,
666053d81ceSMarshall Clow                basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
667053d81ceSMarshall Clow{
668053d81ceSMarshall Clow    if ( __lhs.size() != __rhs.size()) return false;
669053d81ceSMarshall Clow    return __lhs.compare(__rhs) == 0;
670053d81ceSMarshall Clow}
671053d81ceSMarshall Clow
672053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
673053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
674053d81ceSMarshall Clowbool operator==(basic_string_view<_CharT, _Traits> __lhs,
675053d81ceSMarshall Clow                typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
676053d81ceSMarshall Clow{
677053d81ceSMarshall Clow    if ( __lhs.size() != __rhs.size()) return false;
678053d81ceSMarshall Clow    return __lhs.compare(__rhs) == 0;
679053d81ceSMarshall Clow}
680053d81ceSMarshall Clow
681053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
682053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
683053d81ceSMarshall Clowbool operator==(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
684053d81ceSMarshall Clow                basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
685053d81ceSMarshall Clow{
686053d81ceSMarshall Clow    if ( __lhs.size() != __rhs.size()) return false;
687053d81ceSMarshall Clow    return __lhs.compare(__rhs) == 0;
688053d81ceSMarshall Clow}
689053d81ceSMarshall Clow
690053d81ceSMarshall Clow
691053d81ceSMarshall Clow// operator !=
692053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
693053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
694053d81ceSMarshall Clowbool operator!=(basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
695053d81ceSMarshall Clow{
696053d81ceSMarshall Clow    if ( __lhs.size() != __rhs.size())
697053d81ceSMarshall Clow        return true;
698053d81ceSMarshall Clow    return __lhs.compare(__rhs) != 0;
699053d81ceSMarshall Clow}
700053d81ceSMarshall Clow
701053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
702053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
703053d81ceSMarshall Clowbool operator!=(basic_string_view<_CharT, _Traits> __lhs,
704053d81ceSMarshall Clow                typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
705053d81ceSMarshall Clow{
706053d81ceSMarshall Clow    if ( __lhs.size() != __rhs.size())
707053d81ceSMarshall Clow        return true;
708053d81ceSMarshall Clow    return __lhs.compare(__rhs) != 0;
709053d81ceSMarshall Clow}
710053d81ceSMarshall Clow
711053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
712053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
713053d81ceSMarshall Clowbool operator!=(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
714053d81ceSMarshall Clow                basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
715053d81ceSMarshall Clow{
716053d81ceSMarshall Clow    if ( __lhs.size() != __rhs.size())
717053d81ceSMarshall Clow        return true;
718053d81ceSMarshall Clow    return __lhs.compare(__rhs) != 0;
719053d81ceSMarshall Clow}
720053d81ceSMarshall Clow
721053d81ceSMarshall Clow
722053d81ceSMarshall Clow// operator <
723053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
724053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
725053d81ceSMarshall Clowbool operator<(basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
726053d81ceSMarshall Clow{
727053d81ceSMarshall Clow    return __lhs.compare(__rhs) < 0;
728053d81ceSMarshall Clow}
729053d81ceSMarshall Clow
730053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
731053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
732053d81ceSMarshall Clowbool operator<(basic_string_view<_CharT, _Traits> __lhs,
733053d81ceSMarshall Clow                typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
734053d81ceSMarshall Clow{
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<(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
741053d81ceSMarshall Clow                basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
742053d81ceSMarshall Clow{
743053d81ceSMarshall Clow    return __lhs.compare(__rhs) < 0;
744053d81ceSMarshall Clow}
745053d81ceSMarshall Clow
746053d81ceSMarshall Clow
747053d81ceSMarshall Clow// operator >
748053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
749053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
750053d81ceSMarshall Clowbool operator> (basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
751053d81ceSMarshall Clow{
752053d81ceSMarshall Clow    return __lhs.compare(__rhs) > 0;
753053d81ceSMarshall Clow}
754053d81ceSMarshall Clow
755053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
756053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
757053d81ceSMarshall Clowbool operator>(basic_string_view<_CharT, _Traits> __lhs,
758053d81ceSMarshall Clow                typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
759053d81ceSMarshall Clow{
760053d81ceSMarshall Clow    return __lhs.compare(__rhs) > 0;
761053d81ceSMarshall Clow}
762053d81ceSMarshall Clow
763053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
764053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
765053d81ceSMarshall Clowbool operator>(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
766053d81ceSMarshall Clow                basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
767053d81ceSMarshall Clow{
768053d81ceSMarshall Clow    return __lhs.compare(__rhs) > 0;
769053d81ceSMarshall Clow}
770053d81ceSMarshall Clow
771053d81ceSMarshall Clow
772053d81ceSMarshall Clow// operator <=
773053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
774053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
775053d81ceSMarshall Clowbool operator<=(basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
776053d81ceSMarshall Clow{
777053d81ceSMarshall Clow    return __lhs.compare(__rhs) <= 0;
778053d81ceSMarshall Clow}
779053d81ceSMarshall Clow
780053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
781053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
782053d81ceSMarshall Clowbool operator<=(basic_string_view<_CharT, _Traits> __lhs,
783053d81ceSMarshall Clow                typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
784053d81ceSMarshall Clow{
785053d81ceSMarshall Clow    return __lhs.compare(__rhs) <= 0;
786053d81ceSMarshall Clow}
787053d81ceSMarshall Clow
788053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
789053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
790053d81ceSMarshall Clowbool operator<=(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
791053d81ceSMarshall Clow                basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
792053d81ceSMarshall Clow{
793053d81ceSMarshall Clow    return __lhs.compare(__rhs) <= 0;
794053d81ceSMarshall Clow}
795053d81ceSMarshall Clow
796053d81ceSMarshall Clow
797053d81ceSMarshall Clow// operator >=
798053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
799053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
800053d81ceSMarshall Clowbool operator>=(basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
801053d81ceSMarshall Clow{
802053d81ceSMarshall Clow    return __lhs.compare(__rhs) >= 0;
803053d81ceSMarshall Clow}
804053d81ceSMarshall Clow
805053d81ceSMarshall Clow
806053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
807053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
808053d81ceSMarshall Clowbool operator>=(basic_string_view<_CharT, _Traits> __lhs,
809053d81ceSMarshall Clow                typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
810053d81ceSMarshall Clow{
811053d81ceSMarshall Clow    return __lhs.compare(__rhs) >= 0;
812053d81ceSMarshall Clow}
813053d81ceSMarshall Clow
814053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
815053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
816053d81ceSMarshall Clowbool operator>=(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
817053d81ceSMarshall Clow                basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
818053d81ceSMarshall Clow{
819053d81ceSMarshall Clow    return __lhs.compare(__rhs) >= 0;
820053d81ceSMarshall Clow}
821053d81ceSMarshall Clow
822af4a29afSEric Fiselier
823af4a29afSEric Fiseliertemplate<class _CharT, class _Traits>
824af4a29afSEric Fiselierbasic_ostream<_CharT, _Traits>&
825af4a29afSEric Fiselieroperator<<(basic_ostream<_CharT, _Traits>& __os,
826af4a29afSEric Fiselier           basic_string_view<_CharT, _Traits> __str);
827af4a29afSEric Fiselier
828053d81ceSMarshall Clow// [string.view.hash]
82993184302SMarshall Clowtemplate<class _CharT>
83093184302SMarshall Clowstruct _LIBCPP_TEMPLATE_VIS hash<basic_string_view<_CharT, char_traits<_CharT> > >
83193184302SMarshall Clow    : public unary_function<basic_string_view<_CharT, char_traits<_CharT> >, size_t>
832053d81ceSMarshall Clow{
833a86710f1SLouis Dionne    _LIBCPP_INLINE_VISIBILITY
83493184302SMarshall Clow    size_t operator()(const basic_string_view<_CharT, char_traits<_CharT> > __val) const _NOEXCEPT {
835053d81ceSMarshall Clow        return __do_string_hash(__val.data(), __val.data() + __val.size());
836053d81ceSMarshall Clow    }
837a86710f1SLouis Dionne};
838053d81ceSMarshall Clow
8398fd58a6bSMarshall Clow
8408fd58a6bSMarshall Clow#if _LIBCPP_STD_VER > 11
8418fd58a6bSMarshall Clowinline namespace literals
8428fd58a6bSMarshall Clow{
8438fd58a6bSMarshall Clow  inline namespace string_view_literals
8448fd58a6bSMarshall Clow  {
8458fd58a6bSMarshall Clow    inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
84659b48302SMarshall Clow    basic_string_view<char> operator "" sv(const char *__str, size_t __len) _NOEXCEPT
8478fd58a6bSMarshall Clow    {
8488fd58a6bSMarshall Clow        return basic_string_view<char> (__str, __len);
8498fd58a6bSMarshall Clow    }
8508fd58a6bSMarshall Clow
8518fd58a6bSMarshall Clow    inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
85259b48302SMarshall Clow    basic_string_view<wchar_t> operator "" sv(const wchar_t *__str, size_t __len) _NOEXCEPT
8538fd58a6bSMarshall Clow    {
8548fd58a6bSMarshall Clow        return basic_string_view<wchar_t> (__str, __len);
8558fd58a6bSMarshall Clow    }
8568fd58a6bSMarshall Clow
8575c40c994SArthur O'Dwyer#ifndef _LIBCPP_HAS_NO_CHAR8_T
8587dad0bd6SMarshall Clow    inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
8597dad0bd6SMarshall Clow    basic_string_view<char8_t> operator "" sv(const char8_t *__str, size_t __len) _NOEXCEPT
8607dad0bd6SMarshall Clow    {
8617dad0bd6SMarshall Clow        return basic_string_view<char8_t> (__str, __len);
8627dad0bd6SMarshall Clow    }
8637dad0bd6SMarshall Clow#endif
8647dad0bd6SMarshall Clow
8658fd58a6bSMarshall Clow    inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
86659b48302SMarshall Clow    basic_string_view<char16_t> operator "" sv(const char16_t *__str, size_t __len) _NOEXCEPT
8678fd58a6bSMarshall Clow    {
8688fd58a6bSMarshall Clow        return basic_string_view<char16_t> (__str, __len);
8698fd58a6bSMarshall Clow    }
8708fd58a6bSMarshall Clow
8718fd58a6bSMarshall Clow    inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
87259b48302SMarshall Clow    basic_string_view<char32_t> operator "" sv(const char32_t *__str, size_t __len) _NOEXCEPT
8738fd58a6bSMarshall Clow    {
8748fd58a6bSMarshall Clow        return basic_string_view<char32_t> (__str, __len);
8758fd58a6bSMarshall Clow    }
8768fd58a6bSMarshall Clow  }
8778fd58a6bSMarshall Clow}
8788fd58a6bSMarshall Clow#endif
879053d81ceSMarshall Clow_LIBCPP_END_NAMESPACE_STD
880053d81ceSMarshall Clow
881a016efb1SEric Fiselier_LIBCPP_POP_MACROS
882a016efb1SEric Fiselier
883053d81ceSMarshall Clow#endif // _LIBCPP_STRING_VIEW
884