1053d81ceSMarshall Clow// -*- C++ -*-
2053d81ceSMarshall Clow//===------------------------ string_view ---------------------------------===//
3053d81ceSMarshall Clow//
4053d81ceSMarshall Clow//                     The LLVM Compiler Infrastructure
5053d81ceSMarshall Clow//
6053d81ceSMarshall Clow// This file is distributed under the University of Illinois Open Source
7053d81ceSMarshall Clow// License. See LICENSE.TXT for details.
8053d81ceSMarshall Clow//
9053d81ceSMarshall Clow//===----------------------------------------------------------------------===//
10053d81ceSMarshall Clow
11053d81ceSMarshall Clow#ifndef _LIBCPP_STRING_VIEW
12053d81ceSMarshall Clow#define _LIBCPP_STRING_VIEW
13053d81ceSMarshall Clow
14053d81ceSMarshall Clow/*
15053d81ceSMarshall Clowstring_view synopsis
16053d81ceSMarshall Clow
17053d81ceSMarshall Clownamespace std {
18053d81ceSMarshall Clow
19053d81ceSMarshall Clow    // 7.2, Class template basic_string_view
20053d81ceSMarshall Clow    template<class charT, class traits = char_traits<charT>>
21053d81ceSMarshall Clow        class basic_string_view;
22053d81ceSMarshall Clow
23053d81ceSMarshall Clow    // 7.9, basic_string_view non-member comparison functions
24053d81ceSMarshall Clow    template<class charT, class traits>
25053d81ceSMarshall Clow    constexpr bool operator==(basic_string_view<charT, traits> x,
26053d81ceSMarshall Clow                              basic_string_view<charT, traits> y) noexcept;
27053d81ceSMarshall Clow    template<class charT, class traits>
28053d81ceSMarshall Clow    constexpr bool operator!=(basic_string_view<charT, traits> x,
29053d81ceSMarshall Clow                              basic_string_view<charT, traits> y) noexcept;
30053d81ceSMarshall Clow    template<class charT, class traits>
31053d81ceSMarshall Clow    constexpr bool operator< (basic_string_view<charT, traits> x,
32053d81ceSMarshall Clow                                 basic_string_view<charT, traits> y) noexcept;
33053d81ceSMarshall Clow    template<class charT, class traits>
34053d81ceSMarshall Clow    constexpr bool operator> (basic_string_view<charT, traits> x,
35053d81ceSMarshall Clow                              basic_string_view<charT, traits> y) noexcept;
36053d81ceSMarshall Clow    template<class charT, class traits>
37053d81ceSMarshall Clow    constexpr bool operator<=(basic_string_view<charT, traits> x,
38053d81ceSMarshall Clow                                 basic_string_view<charT, traits> y) noexcept;
39053d81ceSMarshall Clow    template<class charT, class traits>
40053d81ceSMarshall Clow    constexpr bool operator>=(basic_string_view<charT, traits> x,
41053d81ceSMarshall Clow                              basic_string_view<charT, traits> y) noexcept;
42053d81ceSMarshall Clow    // see below, sufficient additional overloads of comparison functions
43053d81ceSMarshall Clow
44053d81ceSMarshall Clow    // 7.10, Inserters and extractors
45053d81ceSMarshall Clow    template<class charT, class traits>
46053d81ceSMarshall Clow      basic_ostream<charT, traits>&
47053d81ceSMarshall Clow        operator<<(basic_ostream<charT, traits>& os,
48053d81ceSMarshall Clow                   basic_string_view<charT, traits> str);
49053d81ceSMarshall Clow
50053d81ceSMarshall Clow    // basic_string_view typedef names
51053d81ceSMarshall Clow    typedef basic_string_view<char> string_view;
52053d81ceSMarshall Clow    typedef basic_string_view<char16_t> u16string_view;
53053d81ceSMarshall Clow    typedef basic_string_view<char32_t> u32string_view;
54053d81ceSMarshall Clow    typedef basic_string_view<wchar_t> wstring_view;
55053d81ceSMarshall Clow
56053d81ceSMarshall Clow    template<class charT, class traits = char_traits<charT>>
57053d81ceSMarshall Clow    class basic_string_view {
58053d81ceSMarshall Clow      public:
59053d81ceSMarshall Clow      // types
60053d81ceSMarshall Clow      typedef traits traits_type;
61053d81ceSMarshall Clow      typedef charT value_type;
62053d81ceSMarshall Clow      typedef charT* pointer;
63053d81ceSMarshall Clow      typedef const charT* const_pointer;
64053d81ceSMarshall Clow      typedef charT& reference;
65053d81ceSMarshall Clow      typedef const charT& const_reference;
66053d81ceSMarshall Clow      typedef implementation-defined const_iterator;
67053d81ceSMarshall Clow      typedef const_iterator iterator;
68053d81ceSMarshall Clow      typedef reverse_iterator<const_iterator> const_reverse_iterator;
69053d81ceSMarshall Clow      typedef const_reverse_iterator reverse_iterator;
70053d81ceSMarshall Clow      typedef size_t size_type;
71053d81ceSMarshall Clow      typedef ptrdiff_t difference_type;
72053d81ceSMarshall Clow      static constexpr size_type npos = size_type(-1);
73053d81ceSMarshall Clow
74053d81ceSMarshall Clow      // 7.3, basic_string_view constructors and assignment operators
75053d81ceSMarshall Clow      constexpr basic_string_view() noexcept;
76053d81ceSMarshall Clow      constexpr basic_string_view(const basic_string_view&) noexcept = default;
77053d81ceSMarshall Clow      basic_string_view& operator=(const basic_string_view&) noexcept = default;
78053d81ceSMarshall Clow      template<class Allocator>
79053d81ceSMarshall Clow      constexpr basic_string_view(const charT* str);
80053d81ceSMarshall Clow      constexpr basic_string_view(const charT* str, size_type len);
81053d81ceSMarshall Clow
82053d81ceSMarshall Clow      // 7.4, basic_string_view iterator support
83053d81ceSMarshall Clow      constexpr const_iterator begin() const noexcept;
84053d81ceSMarshall Clow      constexpr const_iterator end() const noexcept;
85053d81ceSMarshall Clow      constexpr const_iterator cbegin() const noexcept;
86053d81ceSMarshall Clow      constexpr const_iterator cend() const noexcept;
87053d81ceSMarshall Clow      const_reverse_iterator rbegin() const noexcept;
88053d81ceSMarshall Clow      const_reverse_iterator rend() const noexcept;
89053d81ceSMarshall Clow      const_reverse_iterator crbegin() const noexcept;
90053d81ceSMarshall Clow      const_reverse_iterator crend() const noexcept;
91053d81ceSMarshall Clow
92053d81ceSMarshall Clow      // 7.5, basic_string_view capacity
93053d81ceSMarshall Clow      constexpr size_type size() const noexcept;
94053d81ceSMarshall Clow      constexpr size_type length() const noexcept;
95053d81ceSMarshall Clow      constexpr size_type max_size() const noexcept;
96053d81ceSMarshall Clow      constexpr bool empty() const noexcept;
97053d81ceSMarshall Clow
98053d81ceSMarshall Clow      // 7.6, basic_string_view element access
99053d81ceSMarshall Clow      constexpr const_reference operator[](size_type pos) const;
100053d81ceSMarshall Clow      constexpr const_reference at(size_type pos) const;
101053d81ceSMarshall Clow      constexpr const_reference front() const;
102053d81ceSMarshall Clow      constexpr const_reference back() const;
103053d81ceSMarshall Clow      constexpr const_pointer data() const noexcept;
104053d81ceSMarshall Clow
105053d81ceSMarshall Clow      // 7.7, basic_string_view modifiers
106053d81ceSMarshall Clow      constexpr void clear() noexcept;
107053d81ceSMarshall Clow      constexpr void remove_prefix(size_type n);
108053d81ceSMarshall Clow      constexpr void remove_suffix(size_type n);
109053d81ceSMarshall Clow      constexpr void swap(basic_string_view& s) noexcept;
110053d81ceSMarshall Clow
111053d81ceSMarshall Clow      size_type copy(charT* s, size_type n, size_type pos = 0) const;
112053d81ceSMarshall Clow
113053d81ceSMarshall Clow      constexpr basic_string_view substr(size_type pos = 0, size_type n = npos) const;
114053d81ceSMarshall Clow      constexpr int compare(basic_string_view s) const noexcept;
115053d81ceSMarshall Clow      constexpr int compare(size_type pos1, size_type n1, basic_string_view s) const;
116053d81ceSMarshall Clow      constexpr int compare(size_type pos1, size_type n1,
117053d81ceSMarshall Clow                            basic_string_view s, size_type pos2, size_type n2) const;
118053d81ceSMarshall Clow      constexpr int compare(const charT* s) const;
119053d81ceSMarshall Clow      constexpr int compare(size_type pos1, size_type n1, const charT* s) const;
120053d81ceSMarshall Clow      constexpr int compare(size_type pos1, size_type n1,
121053d81ceSMarshall Clow                            const charT* s, size_type n2) const;
122053d81ceSMarshall Clow      constexpr size_type find(basic_string_view s, size_type pos = 0) const noexcept;
123053d81ceSMarshall Clow      constexpr size_type find(charT c, size_type pos = 0) const noexcept;
124053d81ceSMarshall Clow      constexpr size_type find(const charT* s, size_type pos, size_type n) const;
125053d81ceSMarshall Clow      constexpr size_type find(const charT* s, size_type pos = 0) const;
126053d81ceSMarshall Clow      constexpr size_type rfind(basic_string_view s, size_type pos = npos) const noexcept;
127053d81ceSMarshall Clow      constexpr size_type rfind(charT c, size_type pos = npos) const noexcept;
128053d81ceSMarshall Clow      constexpr size_type rfind(const charT* s, size_type pos, size_type n) const;
129053d81ceSMarshall Clow      constexpr size_type rfind(const charT* s, size_type pos = npos) const;
130053d81ceSMarshall Clow      constexpr size_type find_first_of(basic_string_view s, size_type pos = 0) const noexcept;
131053d81ceSMarshall Clow      constexpr size_type find_first_of(charT c, size_type pos = 0) const noexcept;
132053d81ceSMarshall Clow      constexpr size_type find_first_of(const charT* s, size_type pos, size_type n) const;
133053d81ceSMarshall Clow      constexpr size_type find_first_of(const charT* s, size_type pos = 0) const;
134053d81ceSMarshall Clow      constexpr size_type find_last_of(basic_string_view s, size_type pos = npos) const noexcept;
135053d81ceSMarshall Clow      constexpr size_type find_last_of(charT c, size_type pos = npos) const noexcept;
136053d81ceSMarshall Clow      constexpr size_type find_last_of(const charT* s, size_type pos, size_type n) const;
137053d81ceSMarshall Clow      constexpr size_type find_last_of(const charT* s, size_type pos = npos) const;
138053d81ceSMarshall Clow      constexpr size_type find_first_not_of(basic_string_view s, size_type pos = 0) const noexcept;
139053d81ceSMarshall Clow      constexpr size_type find_first_not_of(charT c, size_type pos = 0) const noexcept;
140053d81ceSMarshall Clow      constexpr size_type find_first_not_of(const charT* s, size_type pos, size_type n) const;
141053d81ceSMarshall Clow      constexpr size_type find_first_not_of(const charT* s, size_type pos = 0) const;
142053d81ceSMarshall Clow      constexpr size_type find_last_not_of(basic_string_view s, size_type pos = npos) const noexcept;
143053d81ceSMarshall Clow      constexpr size_type find_last_not_of(charT c, size_type pos = npos) const noexcept;
144053d81ceSMarshall Clow      constexpr size_type find_last_not_of(const charT* s, size_type pos, size_type n) const;
145053d81ceSMarshall Clow      constexpr size_type find_last_not_of(const charT* s, size_type pos = npos) const;
146053d81ceSMarshall Clow
147053d81ceSMarshall Clow     private:
148053d81ceSMarshall Clow      const_pointer data_;  // exposition only
149053d81ceSMarshall Clow      size_type     size_;  // exposition only
150053d81ceSMarshall Clow    };
151053d81ceSMarshall Clow
152053d81ceSMarshall Clow  // 7.11, Hash support
153053d81ceSMarshall Clow  template <class T> struct hash;
154053d81ceSMarshall Clow  template <> struct hash<string_view>;
155053d81ceSMarshall Clow  template <> struct hash<u16string_view>;
156053d81ceSMarshall Clow  template <> struct hash<u32string_view>;
157053d81ceSMarshall Clow  template <> struct hash<wstring_view>;
158053d81ceSMarshall Clow
1598fd58a6bSMarshall Clow  constexpr basic_string<char>     operator "" s( const char *str,     size_t len ); // C++17
1608fd58a6bSMarshall Clow  constexpr basic_string<wchar_t>  operator "" s( const wchar_t *str,  size_t len ); // C++17
1618fd58a6bSMarshall Clow  constexpr basic_string<char16_t> operator "" s( const char16_t *str, size_t len ); // C++17
1628fd58a6bSMarshall Clow  constexpr basic_string<char32_t> operator "" s( const char32_t *str, size_t len ); // C++17
1638fd58a6bSMarshall Clow
164053d81ceSMarshall Clow}  // namespace std
165053d81ceSMarshall Clow
166053d81ceSMarshall Clow
167053d81ceSMarshall Clow*/
168053d81ceSMarshall Clow
169053d81ceSMarshall Clow#include <__config>
170053d81ceSMarshall Clow
171053d81ceSMarshall Clow#include <__string>
172ca648c97SEric Fiselier#include <algorithm>
173053d81ceSMarshall Clow#include <iterator>
174ca648c97SEric Fiselier#include <limits>
175ca648c97SEric Fiselier#include <stdexcept>
176053d81ceSMarshall Clow#include <__debug>
177053d81ceSMarshall Clow
178053d81ceSMarshall Clow#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
179053d81ceSMarshall Clow#pragma GCC system_header
180053d81ceSMarshall Clow#endif
181053d81ceSMarshall Clow
182053d81ceSMarshall Clow_LIBCPP_BEGIN_NAMESPACE_STD
183053d81ceSMarshall Clow
184053d81ceSMarshall Clowtemplate<class _CharT, class _Traits = char_traits<_CharT> >
185e2f2d1edSEric Fiselierclass _LIBCPP_TEMPLATE_VIS basic_string_view {
186053d81ceSMarshall Clowpublic:
187053d81ceSMarshall Clow	// types
188053d81ceSMarshall Clow	typedef _Traits                                    traits_type;
189053d81ceSMarshall Clow	typedef _CharT                                     value_type;
190053d81ceSMarshall Clow	typedef const _CharT*                              pointer;
191053d81ceSMarshall Clow	typedef const _CharT*                              const_pointer;
192053d81ceSMarshall Clow	typedef const _CharT&                              reference;
193053d81ceSMarshall Clow	typedef const _CharT&                              const_reference;
194053d81ceSMarshall Clow	typedef const_pointer                              const_iterator; // See [string.view.iterators]
195053d81ceSMarshall Clow	typedef const_iterator                             iterator;
196053d81ceSMarshall Clow	typedef _VSTD::reverse_iterator<const_iterator>    const_reverse_iterator;
197053d81ceSMarshall Clow	typedef const_reverse_iterator                     reverse_iterator;
198053d81ceSMarshall Clow	typedef size_t                                     size_type;
199053d81ceSMarshall Clow	typedef ptrdiff_t                                  difference_type;
200053d81ceSMarshall Clow	static _LIBCPP_CONSTEXPR const size_type npos = -1; // size_type(-1);
201053d81ceSMarshall Clow
202*4069c2bcSMarshall Clow    static_assert(is_pod<value_type>::value, "Character type of basic_string_view must be a POD");
203*4069c2bcSMarshall Clow    static_assert((is_same<_CharT, typename traits_type::char_type>::value),
204*4069c2bcSMarshall Clow                  "traits_type::char_type must be the same type as CharT");
205*4069c2bcSMarshall Clow
206053d81ceSMarshall Clow	// [string.view.cons], construct/copy
207053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
208053d81ceSMarshall Clow	basic_string_view() _NOEXCEPT : __data (nullptr), __size(0) {}
209053d81ceSMarshall Clow
210053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
211053d81ceSMarshall Clow	basic_string_view(const basic_string_view&) _NOEXCEPT = default;
212053d81ceSMarshall Clow
213cddeb751SMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
214053d81ceSMarshall Clow	basic_string_view& operator=(const basic_string_view&) _NOEXCEPT = default;
215053d81ceSMarshall Clow
216053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
217053d81ceSMarshall Clow	basic_string_view(const _CharT* __s, size_type __len)
218053d81ceSMarshall Clow		: __data(__s), __size(__len)
219053d81ceSMarshall Clow	{
220187db169SMarshall Clow// #if _LIBCPP_STD_VER > 11
221187db169SMarshall Clow//         _LIBCPP_ASSERT(__len == 0 || __s != nullptr, "string_view::string_view(_CharT *, size_t): received nullptr");
222187db169SMarshall Clow// #endif
223053d81ceSMarshall Clow	}
224053d81ceSMarshall Clow
225053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
226053d81ceSMarshall Clow	basic_string_view(const _CharT* __s)
227053d81ceSMarshall Clow		: __data(__s), __size(_Traits::length(__s)) {}
228053d81ceSMarshall Clow
229053d81ceSMarshall Clow	// [string.view.iterators], iterators
230053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
231053d81ceSMarshall Clow	const_iterator begin()  const _NOEXCEPT { return cbegin(); }
232053d81ceSMarshall Clow
233053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
234053d81ceSMarshall Clow	const_iterator end()    const _NOEXCEPT { return cend(); }
235053d81ceSMarshall Clow
236053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
237053d81ceSMarshall Clow	const_iterator cbegin() const _NOEXCEPT { return __data; }
238053d81ceSMarshall Clow
239053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
240053d81ceSMarshall Clow	const_iterator cend()   const _NOEXCEPT { return __data + __size; }
241053d81ceSMarshall Clow
242cddeb751SMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX14 _LIBCPP_INLINE_VISIBILITY
243053d81ceSMarshall Clow	const_reverse_iterator rbegin()   const _NOEXCEPT { return const_reverse_iterator(cend()); }
244053d81ceSMarshall Clow
245cddeb751SMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX14 _LIBCPP_INLINE_VISIBILITY
246053d81ceSMarshall Clow	const_reverse_iterator rend()     const _NOEXCEPT { return const_reverse_iterator(cbegin()); }
247053d81ceSMarshall Clow
248cddeb751SMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX14 _LIBCPP_INLINE_VISIBILITY
249053d81ceSMarshall Clow	const_reverse_iterator crbegin()  const _NOEXCEPT { return const_reverse_iterator(cend()); }
250053d81ceSMarshall Clow
251cddeb751SMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX14 _LIBCPP_INLINE_VISIBILITY
252053d81ceSMarshall Clow	const_reverse_iterator crend()    const _NOEXCEPT { return const_reverse_iterator(cbegin()); }
253053d81ceSMarshall Clow
254053d81ceSMarshall Clow	// [string.view.capacity], capacity
255053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
256053d81ceSMarshall Clow	size_type size()     const _NOEXCEPT { return __size; }
257053d81ceSMarshall Clow
258053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
259053d81ceSMarshall Clow	size_type length()   const _NOEXCEPT { return __size; }
260053d81ceSMarshall Clow
261053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
262053d81ceSMarshall Clow	size_type max_size() const _NOEXCEPT { return numeric_limits<size_type>::max(); }
263053d81ceSMarshall Clow
264053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR bool _LIBCPP_INLINE_VISIBILITY
265053d81ceSMarshall Clow	empty()         const _NOEXCEPT { return __size == 0; }
266053d81ceSMarshall Clow
267053d81ceSMarshall Clow	// [string.view.access], element access
268053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
269053d81ceSMarshall Clow	const_reference operator[](size_type __pos) const _NOEXCEPT { return __data[__pos]; }
270053d81ceSMarshall Clow
271053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
272053d81ceSMarshall Clow	const_reference at(size_type __pos) const
273053d81ceSMarshall Clow	{
274053d81ceSMarshall Clow		return __pos >= size()
2750fc8cec7SMarshall Clow			? (__throw_out_of_range("string_view::at"), __data[0])
276053d81ceSMarshall Clow			: __data[__pos];
277053d81ceSMarshall Clow	}
278053d81ceSMarshall Clow
279053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
280053d81ceSMarshall Clow	const_reference front() const
281053d81ceSMarshall Clow	{
282053d81ceSMarshall Clow		return _LIBCPP_ASSERT(!empty(), "string_view::front(): string is empty"), __data[0];
283053d81ceSMarshall Clow	}
284053d81ceSMarshall Clow
285053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
286053d81ceSMarshall Clow	const_reference back() const
287053d81ceSMarshall Clow	{
288053d81ceSMarshall Clow		return _LIBCPP_ASSERT(!empty(), "string_view::back(): string is empty"), __data[__size-1];
289053d81ceSMarshall Clow	}
290053d81ceSMarshall Clow
291053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
292053d81ceSMarshall Clow	const_pointer data() const _NOEXCEPT { return __data; }
293053d81ceSMarshall Clow
294053d81ceSMarshall Clow	// [string.view.modifiers], modifiers:
295053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
296053d81ceSMarshall Clow	void clear() _NOEXCEPT
297053d81ceSMarshall Clow	{
298053d81ceSMarshall Clow		__data = nullptr;
299053d81ceSMarshall Clow		__size = 0;
300053d81ceSMarshall Clow	}
301053d81ceSMarshall Clow
302053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
303053d81ceSMarshall Clow	void remove_prefix(size_type __n) _NOEXCEPT
304053d81ceSMarshall Clow	{
305053d81ceSMarshall Clow		_LIBCPP_ASSERT(__n <= size(), "remove_prefix() can't remove more than size()");
306053d81ceSMarshall Clow		__data += __n;
307053d81ceSMarshall Clow		__size -= __n;
308053d81ceSMarshall Clow	}
309053d81ceSMarshall Clow
310053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
311053d81ceSMarshall Clow	void remove_suffix(size_type __n) _NOEXCEPT
312053d81ceSMarshall Clow	{
313053d81ceSMarshall Clow		_LIBCPP_ASSERT(__n <= size(), "remove_suffix() can't remove more than size()");
314053d81ceSMarshall Clow		__size -= __n;
315053d81ceSMarshall Clow	}
316053d81ceSMarshall Clow
317053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
318053d81ceSMarshall Clow	void swap(basic_string_view& __other) _NOEXCEPT
319053d81ceSMarshall Clow	{
320053d81ceSMarshall Clow		const value_type *__p = __data;
321053d81ceSMarshall Clow		__data = __other.__data;
322053d81ceSMarshall Clow		__other.__data = __p;
323053d81ceSMarshall Clow
324053d81ceSMarshall Clow		size_type __sz = __size;
325053d81ceSMarshall Clow		__size = __other.__size;
326053d81ceSMarshall Clow		__other.__size = __sz;
327053d81ceSMarshall Clow	}
328053d81ceSMarshall Clow
329053d81ceSMarshall Clow	_LIBCPP_INLINE_VISIBILITY
330053d81ceSMarshall Clow	size_type copy(_CharT* __s, size_type __n, size_type __pos = 0) const
331053d81ceSMarshall Clow	{
332053d81ceSMarshall Clow		if (__pos > size())
3330fc8cec7SMarshall Clow			__throw_out_of_range("string_view::copy");
334053d81ceSMarshall Clow		size_type __rlen = _VSTD::min(__n, size() - __pos);
3351c7fe126SMarshall Clow		_Traits::copy(__s, data() + __pos, __rlen);
336053d81ceSMarshall Clow		return __rlen;
337053d81ceSMarshall Clow	}
338053d81ceSMarshall Clow
339053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
340053d81ceSMarshall Clow	basic_string_view substr(size_type __pos = 0, size_type __n = npos) const
341053d81ceSMarshall Clow	{
342053d81ceSMarshall Clow		return __pos > size()
3430fc8cec7SMarshall Clow			? (__throw_out_of_range("string_view::substr"), basic_string_view())
344053d81ceSMarshall Clow			: basic_string_view(data() + __pos, _VSTD::min(__n, size() - __pos));
345053d81ceSMarshall Clow	}
346053d81ceSMarshall Clow
347053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 int compare(basic_string_view __sv) const _NOEXCEPT
348053d81ceSMarshall Clow	{
349053d81ceSMarshall Clow		size_type __rlen = _VSTD::min( size(), __sv.size());
350053d81ceSMarshall Clow		int __retval = _Traits::compare(data(), __sv.data(), __rlen);
351053d81ceSMarshall Clow		if ( __retval == 0 ) // first __rlen chars matched
352053d81ceSMarshall Clow			__retval = size() == __sv.size() ? 0 : ( size() < __sv.size() ? -1 : 1 );
353053d81ceSMarshall Clow		return __retval;
354053d81ceSMarshall Clow	}
355053d81ceSMarshall Clow
356053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
357053d81ceSMarshall Clow	int compare(size_type __pos1, size_type __n1, basic_string_view __sv) const
358053d81ceSMarshall Clow	{
359053d81ceSMarshall Clow		return substr(__pos1, __n1).compare(__sv);
360053d81ceSMarshall Clow	}
361053d81ceSMarshall Clow
362053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
363053d81ceSMarshall Clow	int compare(                       size_type __pos1, size_type __n1,
364053d81ceSMarshall Clow				basic_string_view _sv, size_type __pos2, size_type __n2) const
365053d81ceSMarshall Clow	{
366053d81ceSMarshall Clow		return substr(__pos1, __n1).compare(_sv.substr(__pos2, __n2));
367053d81ceSMarshall Clow	}
368053d81ceSMarshall Clow
369053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
370aa849bc2SMarshall Clow	int compare(const _CharT* __s) const _NOEXCEPT
371053d81ceSMarshall Clow	{
372053d81ceSMarshall Clow		return compare(basic_string_view(__s));
373053d81ceSMarshall Clow	}
374053d81ceSMarshall Clow
375053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
376053d81ceSMarshall Clow	int compare(size_type __pos1, size_type __n1, const _CharT* __s) const
377053d81ceSMarshall Clow	{
378053d81ceSMarshall Clow		return substr(__pos1, __n1).compare(basic_string_view(__s));
379053d81ceSMarshall Clow	}
380053d81ceSMarshall Clow
381053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
382053d81ceSMarshall Clow	int compare(size_type __pos1, size_type __n1, const _CharT* __s, size_type __n2) const
383053d81ceSMarshall Clow	{
384053d81ceSMarshall Clow		return substr(__pos1, __n1).compare(basic_string_view(__s, __n2));
385053d81ceSMarshall Clow	}
386053d81ceSMarshall Clow
387053d81ceSMarshall Clow	// find
388053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
389053d81ceSMarshall Clow	size_type find(basic_string_view __s, size_type __pos = 0) const _NOEXCEPT
390053d81ceSMarshall Clow	{
391053d81ceSMarshall Clow		_LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find(): received nullptr");
392053d81ceSMarshall Clow		return __str_find<value_type, size_type, traits_type, npos>
393053d81ceSMarshall Clow			(data(), size(), __s.data(), __pos, __s.size());
394053d81ceSMarshall Clow	}
395053d81ceSMarshall Clow
396053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
397053d81ceSMarshall Clow	size_type find(_CharT __c, size_type __pos = 0) const _NOEXCEPT
398053d81ceSMarshall Clow	{
399053d81ceSMarshall Clow		return __str_find<value_type, size_type, traits_type, npos>
400053d81ceSMarshall Clow			(data(), size(), __c, __pos);
401053d81ceSMarshall Clow	}
402053d81ceSMarshall Clow
403053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
404053d81ceSMarshall Clow	size_type find(const _CharT* __s, size_type __pos, size_type __n) const
405053d81ceSMarshall Clow	{
406053d81ceSMarshall Clow		_LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find(): received nullptr");
407053d81ceSMarshall Clow		return __str_find<value_type, size_type, traits_type, npos>
408053d81ceSMarshall Clow			(data(), size(), __s, __pos, __n);
409053d81ceSMarshall Clow	}
410053d81ceSMarshall Clow
411053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
412053d81ceSMarshall Clow	size_type find(const _CharT* __s, size_type __pos = 0) const
413053d81ceSMarshall Clow	{
414053d81ceSMarshall Clow		_LIBCPP_ASSERT(__s != nullptr, "string_view::find(): received nullptr");
415053d81ceSMarshall Clow		return __str_find<value_type, size_type, traits_type, npos>
416053d81ceSMarshall Clow			(data(), size(), __s, __pos, traits_type::length(__s));
417053d81ceSMarshall Clow	}
418053d81ceSMarshall Clow
419053d81ceSMarshall Clow	// rfind
420053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
421053d81ceSMarshall Clow	size_type rfind(basic_string_view __s, size_type __pos = npos) const _NOEXCEPT
422053d81ceSMarshall Clow	{
423053d81ceSMarshall Clow		_LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find(): received nullptr");
424053d81ceSMarshall Clow		return __str_rfind<value_type, size_type, traits_type, npos>
425053d81ceSMarshall Clow			(data(), size(), __s.data(), __pos, __s.size());
426053d81ceSMarshall Clow	}
427053d81ceSMarshall Clow
428053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
429053d81ceSMarshall Clow	size_type rfind(_CharT __c, size_type __pos = npos) const _NOEXCEPT
430053d81ceSMarshall Clow	{
431053d81ceSMarshall Clow		return __str_rfind<value_type, size_type, traits_type, npos>
432053d81ceSMarshall Clow			(data(), size(), __c, __pos);
433053d81ceSMarshall Clow	}
434053d81ceSMarshall Clow
435053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
436053d81ceSMarshall Clow	size_type rfind(const _CharT* __s, size_type __pos, size_type __n) const
437053d81ceSMarshall Clow	{
438053d81ceSMarshall Clow		_LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::rfind(): received nullptr");
439053d81ceSMarshall Clow		return __str_rfind<value_type, size_type, traits_type, npos>
440053d81ceSMarshall Clow			(data(), size(), __s, __pos, __n);
441053d81ceSMarshall Clow	}
442053d81ceSMarshall Clow
443053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
444053d81ceSMarshall Clow	size_type rfind(const _CharT* __s, size_type __pos=npos) const
445053d81ceSMarshall Clow	{
446053d81ceSMarshall Clow		_LIBCPP_ASSERT(__s != nullptr, "string_view::rfind(): received nullptr");
447053d81ceSMarshall Clow		return __str_rfind<value_type, size_type, traits_type, npos>
448053d81ceSMarshall Clow			(data(), size(), __s, __pos, traits_type::length(__s));
449053d81ceSMarshall Clow	}
450053d81ceSMarshall Clow
451053d81ceSMarshall Clow	// find_first_of
452053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
453053d81ceSMarshall Clow	size_type find_first_of(basic_string_view __s, size_type __pos = 0) const _NOEXCEPT
454053d81ceSMarshall Clow	{
455053d81ceSMarshall Clow		_LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_first_of(): received nullptr");
456053d81ceSMarshall Clow		return __str_find_first_of<value_type, size_type, traits_type, npos>
457053d81ceSMarshall Clow			(data(), size(), __s.data(), __pos, __s.size());
458053d81ceSMarshall Clow	}
459053d81ceSMarshall Clow
460053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
461053d81ceSMarshall Clow	size_type find_first_of(_CharT __c, size_type __pos = 0) const _NOEXCEPT
462053d81ceSMarshall Clow	{ return find(__c, __pos); }
463053d81ceSMarshall Clow
464053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
465053d81ceSMarshall Clow	size_type find_first_of(const _CharT* __s, size_type __pos, size_type __n) const
466053d81ceSMarshall Clow	{
467053d81ceSMarshall Clow		_LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_first_of(): received nullptr");
468053d81ceSMarshall Clow		return __str_find_first_of<value_type, size_type, traits_type, npos>
469053d81ceSMarshall Clow			(data(), size(), __s, __pos, __n);
470053d81ceSMarshall Clow	}
471053d81ceSMarshall Clow
472053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
473053d81ceSMarshall Clow	size_type find_first_of(const _CharT* __s, size_type __pos=0) const
474053d81ceSMarshall Clow	{
475053d81ceSMarshall Clow		_LIBCPP_ASSERT(__s != nullptr, "string_view::find_first_of(): received nullptr");
476053d81ceSMarshall Clow		return __str_find_first_of<value_type, size_type, traits_type, npos>
477053d81ceSMarshall Clow			(data(), size(), __s, __pos, traits_type::length(__s));
478053d81ceSMarshall Clow	}
479053d81ceSMarshall Clow
480053d81ceSMarshall Clow	// find_last_of
481053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
482053d81ceSMarshall Clow	size_type find_last_of(basic_string_view __s, size_type __pos=npos) const _NOEXCEPT
483053d81ceSMarshall Clow	{
484053d81ceSMarshall Clow		_LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_last_of(): received nullptr");
485053d81ceSMarshall Clow		return __str_find_last_of<value_type, size_type, traits_type, npos>
486053d81ceSMarshall Clow			(data(), size(), __s.data(), __pos, __s.size());
487053d81ceSMarshall Clow	}
488053d81ceSMarshall Clow
489053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
490053d81ceSMarshall Clow	size_type find_last_of(_CharT __c, size_type __pos = npos) const _NOEXCEPT
491053d81ceSMarshall Clow	{ return rfind(__c, __pos); }
492053d81ceSMarshall Clow
493053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
494053d81ceSMarshall Clow	size_type find_last_of(const _CharT* __s, size_type __pos, size_type __n) const
495053d81ceSMarshall Clow	{
496053d81ceSMarshall Clow		_LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_last_of(): received nullptr");
497053d81ceSMarshall Clow		return __str_find_last_of<value_type, size_type, traits_type, npos>
498053d81ceSMarshall Clow			(data(), size(), __s, __pos, __n);
499053d81ceSMarshall Clow	}
500053d81ceSMarshall Clow
501053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
502053d81ceSMarshall Clow	size_type find_last_of(const _CharT* __s, size_type __pos=npos) const
503053d81ceSMarshall Clow	{
504053d81ceSMarshall Clow		_LIBCPP_ASSERT(__s != nullptr, "string_view::find_last_of(): received nullptr");
505053d81ceSMarshall Clow		return __str_find_last_of<value_type, size_type, traits_type, npos>
506053d81ceSMarshall Clow			(data(), size(), __s, __pos, traits_type::length(__s));
507053d81ceSMarshall Clow	}
508053d81ceSMarshall Clow
509053d81ceSMarshall Clow	// find_first_not_of
510053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
511053d81ceSMarshall Clow	size_type find_first_not_of(basic_string_view __s, size_type __pos=0) const _NOEXCEPT
512053d81ceSMarshall Clow	{
513053d81ceSMarshall Clow		_LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_first_not_of(): received nullptr");
514053d81ceSMarshall Clow		return __str_find_first_not_of<value_type, size_type, traits_type, npos>
515053d81ceSMarshall Clow			(data(), size(), __s.data(), __pos, __s.size());
516053d81ceSMarshall Clow	}
517053d81ceSMarshall Clow
518053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
519053d81ceSMarshall Clow	size_type find_first_not_of(_CharT __c, size_type __pos=0) const _NOEXCEPT
520053d81ceSMarshall Clow	{
521053d81ceSMarshall Clow		return __str_find_first_not_of<value_type, size_type, traits_type, npos>
522053d81ceSMarshall Clow			(data(), size(), __c, __pos);
523053d81ceSMarshall Clow	}
524053d81ceSMarshall Clow
525053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
526053d81ceSMarshall Clow	size_type find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const
527053d81ceSMarshall Clow	{
528053d81ceSMarshall Clow		_LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_first_not_of(): received nullptr");
529053d81ceSMarshall Clow		return __str_find_first_not_of<value_type, size_type, traits_type, npos>
530053d81ceSMarshall Clow			(data(), size(), __s, __pos, __n);
531053d81ceSMarshall Clow	}
532053d81ceSMarshall Clow
533053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
534053d81ceSMarshall Clow	size_type find_first_not_of(const _CharT* __s, size_type __pos=0) const
535053d81ceSMarshall Clow	{
536053d81ceSMarshall Clow		_LIBCPP_ASSERT(__s != nullptr, "string_view::find_first_not_of(): received nullptr");
537053d81ceSMarshall Clow		return __str_find_first_not_of<value_type, size_type, traits_type, npos>
538053d81ceSMarshall Clow			(data(), size(), __s, __pos, traits_type::length(__s));
539053d81ceSMarshall Clow	}
540053d81ceSMarshall Clow
541053d81ceSMarshall Clow	// find_last_not_of
542053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
543053d81ceSMarshall Clow	size_type find_last_not_of(basic_string_view __s, size_type __pos=npos) const _NOEXCEPT
544053d81ceSMarshall Clow	{
545053d81ceSMarshall Clow		_LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_last_not_of(): received nullptr");
546053d81ceSMarshall Clow		return __str_find_last_not_of<value_type, size_type, traits_type, npos>
547053d81ceSMarshall Clow			(data(), size(), __s.data(), __pos, __s.size());
548053d81ceSMarshall Clow	}
549053d81ceSMarshall Clow
550053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
551053d81ceSMarshall Clow	size_type find_last_not_of(_CharT __c, size_type __pos=npos) const _NOEXCEPT
552053d81ceSMarshall Clow	{
553053d81ceSMarshall Clow		return __str_find_last_not_of<value_type, size_type, traits_type, npos>
554053d81ceSMarshall Clow			(data(), size(), __c, __pos);
555053d81ceSMarshall Clow	}
556053d81ceSMarshall Clow
557053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
558053d81ceSMarshall Clow	size_type find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const
559053d81ceSMarshall Clow	{
560053d81ceSMarshall Clow		_LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_last_not_of(): received nullptr");
561053d81ceSMarshall Clow		return __str_find_last_not_of<value_type, size_type, traits_type, npos>
562053d81ceSMarshall Clow			(data(), size(), __s, __pos, __n);
563053d81ceSMarshall Clow	}
564053d81ceSMarshall Clow
565053d81ceSMarshall Clow	_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
566053d81ceSMarshall Clow	size_type find_last_not_of(const _CharT* __s, size_type __pos=npos) const
567053d81ceSMarshall Clow	{
568053d81ceSMarshall Clow		_LIBCPP_ASSERT(__s != nullptr, "string_view::find_last_not_of(): received nullptr");
569053d81ceSMarshall Clow		return __str_find_last_not_of<value_type, size_type, traits_type, npos>
570053d81ceSMarshall Clow			(data(), size(), __s, __pos, traits_type::length(__s));
571053d81ceSMarshall Clow	}
572053d81ceSMarshall Clow
573053d81ceSMarshall Clowprivate:
574053d81ceSMarshall Clow	const   value_type* __data;
575053d81ceSMarshall Clow	size_type           __size;
576053d81ceSMarshall Clow};
577053d81ceSMarshall Clow
578053d81ceSMarshall Clow
579053d81ceSMarshall Clow// [string.view.comparison]
580053d81ceSMarshall Clow// operator ==
581053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
582053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
583053d81ceSMarshall Clowbool operator==(basic_string_view<_CharT, _Traits> __lhs,
584053d81ceSMarshall Clow				basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
585053d81ceSMarshall Clow{
586053d81ceSMarshall Clow	if ( __lhs.size() != __rhs.size()) return false;
587053d81ceSMarshall Clow	return __lhs.compare(__rhs) == 0;
588053d81ceSMarshall Clow}
589053d81ceSMarshall Clow
590053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
591053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
592053d81ceSMarshall Clowbool operator==(basic_string_view<_CharT, _Traits> __lhs,
593053d81ceSMarshall Clow				typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
594053d81ceSMarshall Clow{
595053d81ceSMarshall Clow	if ( __lhs.size() != __rhs.size()) return false;
596053d81ceSMarshall Clow	return __lhs.compare(__rhs) == 0;
597053d81ceSMarshall Clow}
598053d81ceSMarshall Clow
599053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
600053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
601053d81ceSMarshall Clowbool operator==(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
602053d81ceSMarshall Clow				basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
603053d81ceSMarshall Clow{
604053d81ceSMarshall Clow	if ( __lhs.size() != __rhs.size()) return false;
605053d81ceSMarshall Clow	return __lhs.compare(__rhs) == 0;
606053d81ceSMarshall Clow}
607053d81ceSMarshall Clow
608053d81ceSMarshall Clow
609053d81ceSMarshall Clow// operator !=
610053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
611053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
612053d81ceSMarshall Clowbool operator!=(basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
613053d81ceSMarshall Clow{
614053d81ceSMarshall Clow	if ( __lhs.size() != __rhs.size())
615053d81ceSMarshall Clow		return true;
616053d81ceSMarshall Clow	return __lhs.compare(__rhs) != 0;
617053d81ceSMarshall Clow}
618053d81ceSMarshall Clow
619053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
620053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
621053d81ceSMarshall Clowbool operator!=(basic_string_view<_CharT, _Traits> __lhs,
622053d81ceSMarshall Clow				typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
623053d81ceSMarshall Clow{
624053d81ceSMarshall Clow	if ( __lhs.size() != __rhs.size())
625053d81ceSMarshall Clow		return true;
626053d81ceSMarshall Clow	return __lhs.compare(__rhs) != 0;
627053d81ceSMarshall Clow}
628053d81ceSMarshall Clow
629053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
630053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
631053d81ceSMarshall Clowbool operator!=(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
632053d81ceSMarshall Clow				basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
633053d81ceSMarshall Clow{
634053d81ceSMarshall Clow	if ( __lhs.size() != __rhs.size())
635053d81ceSMarshall Clow		return true;
636053d81ceSMarshall Clow	return __lhs.compare(__rhs) != 0;
637053d81ceSMarshall Clow}
638053d81ceSMarshall Clow
639053d81ceSMarshall Clow
640053d81ceSMarshall Clow// operator <
641053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
642053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
643053d81ceSMarshall Clowbool operator<(basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
644053d81ceSMarshall Clow{
645053d81ceSMarshall Clow	return __lhs.compare(__rhs) < 0;
646053d81ceSMarshall Clow}
647053d81ceSMarshall Clow
648053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
649053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
650053d81ceSMarshall Clowbool operator<(basic_string_view<_CharT, _Traits> __lhs,
651053d81ceSMarshall Clow				typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
652053d81ceSMarshall Clow{
653053d81ceSMarshall Clow	return __lhs.compare(__rhs) < 0;
654053d81ceSMarshall Clow}
655053d81ceSMarshall Clow
656053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
657053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
658053d81ceSMarshall Clowbool operator<(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
659053d81ceSMarshall Clow				basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
660053d81ceSMarshall Clow{
661053d81ceSMarshall Clow	return __lhs.compare(__rhs) < 0;
662053d81ceSMarshall Clow}
663053d81ceSMarshall Clow
664053d81ceSMarshall Clow
665053d81ceSMarshall Clow// operator >
666053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
667053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
668053d81ceSMarshall Clowbool operator> (basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
669053d81ceSMarshall Clow{
670053d81ceSMarshall Clow	return __lhs.compare(__rhs) > 0;
671053d81ceSMarshall Clow}
672053d81ceSMarshall Clow
673053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
674053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
675053d81ceSMarshall Clowbool operator>(basic_string_view<_CharT, _Traits> __lhs,
676053d81ceSMarshall Clow				typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
677053d81ceSMarshall Clow{
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	return __lhs.compare(__rhs) > 0;
687053d81ceSMarshall Clow}
688053d81ceSMarshall Clow
689053d81ceSMarshall Clow
690053d81ceSMarshall Clow// operator <=
691053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
692053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
693053d81ceSMarshall Clowbool operator<=(basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
694053d81ceSMarshall Clow{
695053d81ceSMarshall Clow	return __lhs.compare(__rhs) <= 0;
696053d81ceSMarshall Clow}
697053d81ceSMarshall Clow
698053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
699053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
700053d81ceSMarshall Clowbool operator<=(basic_string_view<_CharT, _Traits> __lhs,
701053d81ceSMarshall Clow				typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
702053d81ceSMarshall Clow{
703053d81ceSMarshall Clow	return __lhs.compare(__rhs) <= 0;
704053d81ceSMarshall Clow}
705053d81ceSMarshall Clow
706053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
707053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
708053d81ceSMarshall Clowbool operator<=(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
709053d81ceSMarshall Clow				basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
710053d81ceSMarshall Clow{
711053d81ceSMarshall Clow	return __lhs.compare(__rhs) <= 0;
712053d81ceSMarshall Clow}
713053d81ceSMarshall Clow
714053d81ceSMarshall Clow
715053d81ceSMarshall Clow// operator >=
716053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
717053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
718053d81ceSMarshall Clowbool operator>=(basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
719053d81ceSMarshall Clow{
720053d81ceSMarshall Clow	return __lhs.compare(__rhs) >= 0;
721053d81ceSMarshall Clow}
722053d81ceSMarshall Clow
723053d81ceSMarshall Clow
724053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
725053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
726053d81ceSMarshall Clowbool operator>=(basic_string_view<_CharT, _Traits> __lhs,
727053d81ceSMarshall Clow				typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
728053d81ceSMarshall Clow{
729053d81ceSMarshall Clow	return __lhs.compare(__rhs) >= 0;
730053d81ceSMarshall Clow}
731053d81ceSMarshall Clow
732053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
733053d81ceSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
734053d81ceSMarshall Clowbool operator>=(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
735053d81ceSMarshall Clow				basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
736053d81ceSMarshall Clow{
737053d81ceSMarshall Clow	return __lhs.compare(__rhs) >= 0;
738053d81ceSMarshall Clow}
739053d81ceSMarshall Clow
740053d81ceSMarshall Clowtypedef basic_string_view<char>     string_view;
741053d81ceSMarshall Clowtypedef basic_string_view<char16_t> u16string_view;
742053d81ceSMarshall Clowtypedef basic_string_view<char32_t> u32string_view;
743053d81ceSMarshall Clowtypedef basic_string_view<wchar_t>  wstring_view;
744053d81ceSMarshall Clow
745053d81ceSMarshall Clow// [string.view.hash]
746053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
747e2f2d1edSEric Fiselierstruct _LIBCPP_TEMPLATE_VIS hash<basic_string_view<_CharT, _Traits> >
748053d81ceSMarshall Clow    : public unary_function<basic_string_view<_CharT, _Traits>, size_t>
749053d81ceSMarshall Clow{
750053d81ceSMarshall Clow    size_t operator()(const basic_string_view<_CharT, _Traits> __val) const _NOEXCEPT;
751053d81ceSMarshall Clow};
752053d81ceSMarshall Clow
753053d81ceSMarshall Clowtemplate<class _CharT, class _Traits>
754053d81ceSMarshall Clowsize_t
755053d81ceSMarshall Clowhash<basic_string_view<_CharT, _Traits> >::operator()(
756053d81ceSMarshall Clow        const basic_string_view<_CharT, _Traits> __val) const _NOEXCEPT
757053d81ceSMarshall Clow{
758053d81ceSMarshall Clow    return __do_string_hash(__val.data(), __val.data() + __val.size());
759053d81ceSMarshall Clow}
760053d81ceSMarshall Clow
7618fd58a6bSMarshall Clow
7628fd58a6bSMarshall Clow#if _LIBCPP_STD_VER > 11
7638fd58a6bSMarshall Clowinline namespace literals
7648fd58a6bSMarshall Clow{
7658fd58a6bSMarshall Clow  inline namespace string_view_literals
7668fd58a6bSMarshall Clow  {
7678fd58a6bSMarshall Clow    inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
7688fd58a6bSMarshall Clow    basic_string_view<char> operator "" sv(const char *__str, size_t __len)
7698fd58a6bSMarshall Clow    {
7708fd58a6bSMarshall Clow        return basic_string_view<char> (__str, __len);
7718fd58a6bSMarshall Clow    }
7728fd58a6bSMarshall Clow
7738fd58a6bSMarshall Clow    inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
7748fd58a6bSMarshall Clow    basic_string_view<wchar_t> operator "" sv(const wchar_t *__str, size_t __len)
7758fd58a6bSMarshall Clow    {
7768fd58a6bSMarshall Clow        return basic_string_view<wchar_t> (__str, __len);
7778fd58a6bSMarshall Clow    }
7788fd58a6bSMarshall Clow
7798fd58a6bSMarshall Clow    inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
7808fd58a6bSMarshall Clow    basic_string_view<char16_t> operator "" sv(const char16_t *__str, size_t __len)
7818fd58a6bSMarshall Clow    {
7828fd58a6bSMarshall Clow        return basic_string_view<char16_t> (__str, __len);
7838fd58a6bSMarshall Clow    }
7848fd58a6bSMarshall Clow
7858fd58a6bSMarshall Clow    inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
7868fd58a6bSMarshall Clow    basic_string_view<char32_t> operator "" sv(const char32_t *__str, size_t __len)
7878fd58a6bSMarshall Clow    {
7888fd58a6bSMarshall Clow        return basic_string_view<char32_t> (__str, __len);
7898fd58a6bSMarshall Clow    }
7908fd58a6bSMarshall Clow  }
7918fd58a6bSMarshall Clow}
7928fd58a6bSMarshall Clow#endif
793053d81ceSMarshall Clow_LIBCPP_END_NAMESPACE_STD
794053d81ceSMarshall Clow
795053d81ceSMarshall Clow#endif // _LIBCPP_STRING_VIEW
796