blob: 7d783122f1230f87c18d08f0aa8264d2d0c7e808 [file] [log] [blame]
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001// -*- C++ -*-
2//===------------------------ string_view ---------------------------------===//
3//
4// The LLVM Compiler Infrastructure
5//
6// This file is distributed under the University of Illinois Open Source
7// License. See LICENSE.TXT for details.
8//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_STRING_VIEW
12#define _LIBCPP_STRING_VIEW
13
14/*
15string_view synopsis
16
17namespace std {
18
19 // 7.2, Class template basic_string_view
20 template<class charT, class traits = char_traits<charT>>
21 class basic_string_view;
22
23 // 7.9, basic_string_view non-member comparison functions
24 template<class charT, class traits>
25 constexpr bool operator==(basic_string_view<charT, traits> x,
26 basic_string_view<charT, traits> y) noexcept;
27 template<class charT, class traits>
28 constexpr bool operator!=(basic_string_view<charT, traits> x,
29 basic_string_view<charT, traits> y) noexcept;
30 template<class charT, class traits>
31 constexpr bool operator< (basic_string_view<charT, traits> x,
32 basic_string_view<charT, traits> y) noexcept;
33 template<class charT, class traits>
34 constexpr bool operator> (basic_string_view<charT, traits> x,
35 basic_string_view<charT, traits> y) noexcept;
36 template<class charT, class traits>
37 constexpr bool operator<=(basic_string_view<charT, traits> x,
38 basic_string_view<charT, traits> y) noexcept;
39 template<class charT, class traits>
40 constexpr bool operator>=(basic_string_view<charT, traits> x,
41 basic_string_view<charT, traits> y) noexcept;
42 // see below, sufficient additional overloads of comparison functions
43
44 // 7.10, Inserters and extractors
45 template<class charT, class traits>
46 basic_ostream<charT, traits>&
47 operator<<(basic_ostream<charT, traits>& os,
48 basic_string_view<charT, traits> str);
49
50 // basic_string_view typedef names
51 typedef basic_string_view<char> string_view;
52 typedef basic_string_view<char16_t> u16string_view;
53 typedef basic_string_view<char32_t> u32string_view;
54 typedef basic_string_view<wchar_t> wstring_view;
55
56 template<class charT, class traits = char_traits<charT>>
57 class basic_string_view {
58 public:
59 // types
60 typedef traits traits_type;
61 typedef charT value_type;
62 typedef charT* pointer;
63 typedef const charT* const_pointer;
64 typedef charT& reference;
65 typedef const charT& const_reference;
66 typedef implementation-defined const_iterator;
67 typedef const_iterator iterator;
68 typedef reverse_iterator<const_iterator> const_reverse_iterator;
69 typedef const_reverse_iterator reverse_iterator;
70 typedef size_t size_type;
71 typedef ptrdiff_t difference_type;
72 static constexpr size_type npos = size_type(-1);
73
74 // 7.3, basic_string_view constructors and assignment operators
75 constexpr basic_string_view() noexcept;
76 constexpr basic_string_view(const basic_string_view&) noexcept = default;
77 basic_string_view& operator=(const basic_string_view&) noexcept = default;
78 template<class Allocator>
79 constexpr basic_string_view(const charT* str);
80 constexpr basic_string_view(const charT* str, size_type len);
81
82 // 7.4, basic_string_view iterator support
83 constexpr const_iterator begin() const noexcept;
84 constexpr const_iterator end() const noexcept;
85 constexpr const_iterator cbegin() const noexcept;
86 constexpr const_iterator cend() const noexcept;
87 const_reverse_iterator rbegin() const noexcept;
88 const_reverse_iterator rend() const noexcept;
89 const_reverse_iterator crbegin() const noexcept;
90 const_reverse_iterator crend() const noexcept;
91
92 // 7.5, basic_string_view capacity
93 constexpr size_type size() const noexcept;
94 constexpr size_type length() const noexcept;
95 constexpr size_type max_size() const noexcept;
96 constexpr bool empty() const noexcept;
97
98 // 7.6, basic_string_view element access
99 constexpr const_reference operator[](size_type pos) const;
100 constexpr const_reference at(size_type pos) const;
101 constexpr const_reference front() const;
102 constexpr const_reference back() const;
103 constexpr const_pointer data() const noexcept;
104
105 // 7.7, basic_string_view modifiers
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000106 constexpr void remove_prefix(size_type n);
107 constexpr void remove_suffix(size_type n);
108 constexpr void swap(basic_string_view& s) noexcept;
109
110 size_type copy(charT* s, size_type n, size_type pos = 0) const;
111
112 constexpr basic_string_view substr(size_type pos = 0, size_type n = npos) const;
113 constexpr int compare(basic_string_view s) const noexcept;
114 constexpr int compare(size_type pos1, size_type n1, basic_string_view s) const;
115 constexpr int compare(size_type pos1, size_type n1,
116 basic_string_view s, size_type pos2, size_type n2) const;
117 constexpr int compare(const charT* s) const;
118 constexpr int compare(size_type pos1, size_type n1, const charT* s) const;
119 constexpr int compare(size_type pos1, size_type n1,
120 const charT* s, size_type n2) const;
121 constexpr size_type find(basic_string_view s, size_type pos = 0) const noexcept;
122 constexpr size_type find(charT c, size_type pos = 0) const noexcept;
123 constexpr size_type find(const charT* s, size_type pos, size_type n) const;
124 constexpr size_type find(const charT* s, size_type pos = 0) const;
125 constexpr size_type rfind(basic_string_view s, size_type pos = npos) const noexcept;
126 constexpr size_type rfind(charT c, size_type pos = npos) const noexcept;
127 constexpr size_type rfind(const charT* s, size_type pos, size_type n) const;
128 constexpr size_type rfind(const charT* s, size_type pos = npos) const;
129 constexpr size_type find_first_of(basic_string_view s, size_type pos = 0) const noexcept;
130 constexpr size_type find_first_of(charT c, size_type pos = 0) const noexcept;
131 constexpr size_type find_first_of(const charT* s, size_type pos, size_type n) const;
132 constexpr size_type find_first_of(const charT* s, size_type pos = 0) const;
133 constexpr size_type find_last_of(basic_string_view s, size_type pos = npos) const noexcept;
134 constexpr size_type find_last_of(charT c, size_type pos = npos) const noexcept;
135 constexpr size_type find_last_of(const charT* s, size_type pos, size_type n) const;
136 constexpr size_type find_last_of(const charT* s, size_type pos = npos) const;
137 constexpr size_type find_first_not_of(basic_string_view s, size_type pos = 0) const noexcept;
138 constexpr size_type find_first_not_of(charT c, size_type pos = 0) const noexcept;
139 constexpr size_type find_first_not_of(const charT* s, size_type pos, size_type n) const;
140 constexpr size_type find_first_not_of(const charT* s, size_type pos = 0) const;
141 constexpr size_type find_last_not_of(basic_string_view s, size_type pos = npos) const noexcept;
142 constexpr size_type find_last_not_of(charT c, size_type pos = npos) const noexcept;
143 constexpr size_type find_last_not_of(const charT* s, size_type pos, size_type n) const;
144 constexpr size_type find_last_not_of(const charT* s, size_type pos = npos) const;
145
Marshall Clow46b4ad52017-12-04 20:11:38 +0000146 constexpr bool starts_with(basic_string_view s) const noexcept; // C++2a
147 constexpr bool starts_with(charT c) const noexcept; // C++2a
148 constexpr bool starts_with(const charT* s) const; // C++2a
149 constexpr bool ends_with(basic_string_view s) const noexcept; // C++2a
150 constexpr bool ends_with(charT c) const noexcept; // C++2a
151 constexpr bool ends_with(const charT* s) const; // C++2a
152
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000153 private:
154 const_pointer data_; // exposition only
155 size_type size_; // exposition only
156 };
157
158 // 7.11, Hash support
159 template <class T> struct hash;
160 template <> struct hash<string_view>;
161 template <> struct hash<u16string_view>;
162 template <> struct hash<u32string_view>;
163 template <> struct hash<wstring_view>;
164
Marshall Clow66db4e42017-10-24 14:06:00 +0000165 constexpr basic_string_view<char> operator "" sv( const char *str, size_t len ) noexcept;
166 constexpr basic_string_view<wchar_t> operator "" sv( const wchar_t *str, size_t len ) noexcept;
167 constexpr basic_string_view<char16_t> operator "" sv( const char16_t *str, size_t len ) noexcept;
168 constexpr basic_string_view<char32_t> operator "" sv( const char32_t *str, size_t len ) noexcept;
Marshall Clow7d32d2f2017-01-09 18:07:34 +0000169
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000170} // namespace std
171
172
173*/
174
175#include <__config>
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000176#include <__string>
Eric Fiselier72a5c772016-12-05 23:53:23 +0000177#include <algorithm>
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000178#include <iterator>
Eric Fiselier72a5c772016-12-05 23:53:23 +0000179#include <limits>
180#include <stdexcept>
Marshall Clowe3973fd2018-09-12 19:41:40 +0000181#include <version>
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000182#include <__debug>
183
184#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
185#pragma GCC system_header
186#endif
187
Eric Fiselier018a3d52017-05-31 22:07:49 +0000188_LIBCPP_PUSH_MACROS
189#include <__undef_macros>
190
191
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000192_LIBCPP_BEGIN_NAMESPACE_STD
193
194template<class _CharT, class _Traits = char_traits<_CharT> >
Eric Fiselierc3589a82017-01-04 23:56:00 +0000195class _LIBCPP_TEMPLATE_VIS basic_string_view {
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000196public:
Marshall Clowf1729d92017-11-15 20:02:27 +0000197 // types
198 typedef _Traits traits_type;
199 typedef _CharT value_type;
Marshall Clowde0811a2017-12-20 16:31:40 +0000200 typedef _CharT* pointer;
Marshall Clowf1729d92017-11-15 20:02:27 +0000201 typedef const _CharT* const_pointer;
Marshall Clowde0811a2017-12-20 16:31:40 +0000202 typedef _CharT& reference;
Marshall Clowf1729d92017-11-15 20:02:27 +0000203 typedef const _CharT& const_reference;
204 typedef const_pointer const_iterator; // See [string.view.iterators]
205 typedef const_iterator iterator;
206 typedef _VSTD::reverse_iterator<const_iterator> const_reverse_iterator;
207 typedef const_reverse_iterator reverse_iterator;
208 typedef size_t size_type;
209 typedef ptrdiff_t difference_type;
210 static _LIBCPP_CONSTEXPR const size_type npos = -1; // size_type(-1);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000211
Marshall Clow256f1872018-03-21 00:36:05 +0000212 static_assert((!is_array<value_type>::value), "Character type of basic_string_view must not be an array");
213 static_assert(( is_standard_layout<value_type>::value), "Character type of basic_string_view must be standard-layout");
214 static_assert(( is_trivial<value_type>::value), "Character type of basic_string_view must be trivial");
Marshall Clow2d4c3fa2017-03-15 18:41:11 +0000215 static_assert((is_same<_CharT, typename traits_type::char_type>::value),
216 "traits_type::char_type must be the same type as CharT");
217
Marshall Clowf1729d92017-11-15 20:02:27 +0000218 // [string.view.cons], construct/copy
219 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
220 basic_string_view() _NOEXCEPT : __data (nullptr), __size(0) {}
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000221
Marshall Clowf1729d92017-11-15 20:02:27 +0000222 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
223 basic_string_view(const basic_string_view&) _NOEXCEPT = default;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000224
Marshall Clowf1729d92017-11-15 20:02:27 +0000225 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
226 basic_string_view& operator=(const basic_string_view&) _NOEXCEPT = default;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000227
Marshall Clowf1729d92017-11-15 20:02:27 +0000228 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
229 basic_string_view(const _CharT* __s, size_type __len) _NOEXCEPT
230 : __data(__s), __size(__len)
231 {
Marshall Clow15362332016-07-21 06:24:04 +0000232// #if _LIBCPP_STD_VER > 11
233// _LIBCPP_ASSERT(__len == 0 || __s != nullptr, "string_view::string_view(_CharT *, size_t): received nullptr");
234// #endif
Marshall Clowf1729d92017-11-15 20:02:27 +0000235 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000236
Marshall Clowf1729d92017-11-15 20:02:27 +0000237 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
238 basic_string_view(const _CharT* __s)
239 : __data(__s), __size(_Traits::length(__s)) {}
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000240
Marshall Clowf1729d92017-11-15 20:02:27 +0000241 // [string.view.iterators], iterators
242 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
243 const_iterator begin() const _NOEXCEPT { return cbegin(); }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000244
Marshall Clowf1729d92017-11-15 20:02:27 +0000245 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
246 const_iterator end() const _NOEXCEPT { return cend(); }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000247
Marshall Clowf1729d92017-11-15 20:02:27 +0000248 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
249 const_iterator cbegin() const _NOEXCEPT { return __data; }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000250
Marshall Clowf1729d92017-11-15 20:02:27 +0000251 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
252 const_iterator cend() const _NOEXCEPT { return __data + __size; }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000253
Marshall Clowf1729d92017-11-15 20:02:27 +0000254 _LIBCPP_CONSTEXPR_AFTER_CXX14 _LIBCPP_INLINE_VISIBILITY
255 const_reverse_iterator rbegin() const _NOEXCEPT { return const_reverse_iterator(cend()); }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000256
Marshall Clowf1729d92017-11-15 20:02:27 +0000257 _LIBCPP_CONSTEXPR_AFTER_CXX14 _LIBCPP_INLINE_VISIBILITY
258 const_reverse_iterator rend() const _NOEXCEPT { return const_reverse_iterator(cbegin()); }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000259
Marshall Clowf1729d92017-11-15 20:02:27 +0000260 _LIBCPP_CONSTEXPR_AFTER_CXX14 _LIBCPP_INLINE_VISIBILITY
261 const_reverse_iterator crbegin() const _NOEXCEPT { return const_reverse_iterator(cend()); }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000262
Marshall Clowf1729d92017-11-15 20:02:27 +0000263 _LIBCPP_CONSTEXPR_AFTER_CXX14 _LIBCPP_INLINE_VISIBILITY
264 const_reverse_iterator crend() const _NOEXCEPT { return const_reverse_iterator(cbegin()); }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000265
Marshall Clowf1729d92017-11-15 20:02:27 +0000266 // [string.view.capacity], capacity
267 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
268 size_type size() const _NOEXCEPT { return __size; }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000269
Marshall Clowf1729d92017-11-15 20:02:27 +0000270 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
271 size_type length() const _NOEXCEPT { return __size; }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000272
Marshall Clowf1729d92017-11-15 20:02:27 +0000273 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
274 size_type max_size() const _NOEXCEPT { return numeric_limits<size_type>::max(); }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000275
Marshall Clowf1729d92017-11-15 20:02:27 +0000276 _LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
277 bool empty() const _NOEXCEPT { return __size == 0; }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000278
Marshall Clowf1729d92017-11-15 20:02:27 +0000279 // [string.view.access], element access
280 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
281 const_reference operator[](size_type __pos) const _NOEXCEPT { return __data[__pos]; }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000282
Marshall Clowf1729d92017-11-15 20:02:27 +0000283 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
284 const_reference at(size_type __pos) const
285 {
286 return __pos >= size()
287 ? (__throw_out_of_range("string_view::at"), __data[0])
288 : __data[__pos];
289 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000290
Marshall Clowf1729d92017-11-15 20:02:27 +0000291 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
292 const_reference front() const
293 {
294 return _LIBCPP_ASSERT(!empty(), "string_view::front(): string is empty"), __data[0];
295 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000296
Marshall Clowf1729d92017-11-15 20:02:27 +0000297 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
298 const_reference back() const
299 {
300 return _LIBCPP_ASSERT(!empty(), "string_view::back(): string is empty"), __data[__size-1];
301 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000302
Marshall Clowf1729d92017-11-15 20:02:27 +0000303 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
304 const_pointer data() const _NOEXCEPT { return __data; }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000305
Marshall Clowf1729d92017-11-15 20:02:27 +0000306 // [string.view.modifiers], modifiers:
307 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
308 void remove_prefix(size_type __n) _NOEXCEPT
309 {
310 _LIBCPP_ASSERT(__n <= size(), "remove_prefix() can't remove more than size()");
311 __data += __n;
312 __size -= __n;
313 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000314
Marshall Clowf1729d92017-11-15 20:02:27 +0000315 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
316 void remove_suffix(size_type __n) _NOEXCEPT
317 {
318 _LIBCPP_ASSERT(__n <= size(), "remove_suffix() can't remove more than size()");
319 __size -= __n;
320 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000321
Marshall Clowf1729d92017-11-15 20:02:27 +0000322 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
323 void swap(basic_string_view& __other) _NOEXCEPT
324 {
325 const value_type *__p = __data;
326 __data = __other.__data;
327 __other.__data = __p;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000328
Marshall Clowf1729d92017-11-15 20:02:27 +0000329 size_type __sz = __size;
330 __size = __other.__size;
331 __other.__size = __sz;
332 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000333
Marshall Clowf1729d92017-11-15 20:02:27 +0000334 _LIBCPP_INLINE_VISIBILITY
335 size_type copy(_CharT* __s, size_type __n, size_type __pos = 0) const
336 {
337 if (__pos > size())
338 __throw_out_of_range("string_view::copy");
339 size_type __rlen = _VSTD::min(__n, size() - __pos);
340 _Traits::copy(__s, data() + __pos, __rlen);
341 return __rlen;
342 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000343
Marshall Clowf1729d92017-11-15 20:02:27 +0000344 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
345 basic_string_view substr(size_type __pos = 0, size_type __n = npos) const
346 {
347 return __pos > size()
348 ? (__throw_out_of_range("string_view::substr"), basic_string_view())
349 : basic_string_view(data() + __pos, _VSTD::min(__n, size() - __pos));
350 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000351
Marshall Clowf1729d92017-11-15 20:02:27 +0000352 _LIBCPP_CONSTEXPR_AFTER_CXX11 int compare(basic_string_view __sv) const _NOEXCEPT
353 {
354 size_type __rlen = _VSTD::min( size(), __sv.size());
355 int __retval = _Traits::compare(data(), __sv.data(), __rlen);
356 if ( __retval == 0 ) // first __rlen chars matched
357 __retval = size() == __sv.size() ? 0 : ( size() < __sv.size() ? -1 : 1 );
358 return __retval;
359 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000360
Marshall Clowf1729d92017-11-15 20:02:27 +0000361 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
362 int compare(size_type __pos1, size_type __n1, basic_string_view __sv) const
363 {
364 return substr(__pos1, __n1).compare(__sv);
365 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000366
Marshall Clowf1729d92017-11-15 20:02:27 +0000367 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
368 int compare( size_type __pos1, size_type __n1,
369 basic_string_view __sv, size_type __pos2, size_type __n2) const
370 {
371 return substr(__pos1, __n1).compare(__sv.substr(__pos2, __n2));
372 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000373
Marshall Clowf1729d92017-11-15 20:02:27 +0000374 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
375 int compare(const _CharT* __s) const _NOEXCEPT
376 {
377 return compare(basic_string_view(__s));
378 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000379
Marshall Clowf1729d92017-11-15 20:02:27 +0000380 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
381 int compare(size_type __pos1, size_type __n1, const _CharT* __s) const
382 {
383 return substr(__pos1, __n1).compare(basic_string_view(__s));
384 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000385
Marshall Clowf1729d92017-11-15 20:02:27 +0000386 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
387 int compare(size_type __pos1, size_type __n1, const _CharT* __s, size_type __n2) const
388 {
389 return substr(__pos1, __n1).compare(basic_string_view(__s, __n2));
390 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000391
Marshall Clowf1729d92017-11-15 20:02:27 +0000392 // find
393 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
394 size_type find(basic_string_view __s, size_type __pos = 0) const _NOEXCEPT
395 {
396 _LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find(): received nullptr");
397 return __str_find<value_type, size_type, traits_type, npos>
398 (data(), size(), __s.data(), __pos, __s.size());
399 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000400
Marshall Clowf1729d92017-11-15 20:02:27 +0000401 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
402 size_type find(_CharT __c, size_type __pos = 0) const _NOEXCEPT
403 {
404 return __str_find<value_type, size_type, traits_type, npos>
405 (data(), size(), __c, __pos);
406 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000407
Marshall Clowf1729d92017-11-15 20:02:27 +0000408 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
409 size_type find(const _CharT* __s, size_type __pos, size_type __n) const
410 {
411 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find(): received nullptr");
412 return __str_find<value_type, size_type, traits_type, npos>
413 (data(), size(), __s, __pos, __n);
414 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000415
Marshall Clowf1729d92017-11-15 20:02:27 +0000416 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
417 size_type find(const _CharT* __s, size_type __pos = 0) const
418 {
419 _LIBCPP_ASSERT(__s != nullptr, "string_view::find(): received nullptr");
420 return __str_find<value_type, size_type, traits_type, npos>
421 (data(), size(), __s, __pos, traits_type::length(__s));
422 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000423
Marshall Clowf1729d92017-11-15 20:02:27 +0000424 // rfind
425 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
426 size_type rfind(basic_string_view __s, size_type __pos = npos) const _NOEXCEPT
427 {
428 _LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find(): received nullptr");
429 return __str_rfind<value_type, size_type, traits_type, npos>
430 (data(), size(), __s.data(), __pos, __s.size());
431 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000432
Marshall Clowf1729d92017-11-15 20:02:27 +0000433 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
434 size_type rfind(_CharT __c, size_type __pos = npos) const _NOEXCEPT
435 {
436 return __str_rfind<value_type, size_type, traits_type, npos>
437 (data(), size(), __c, __pos);
438 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000439
Marshall Clowf1729d92017-11-15 20:02:27 +0000440 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
441 size_type rfind(const _CharT* __s, size_type __pos, size_type __n) const
442 {
443 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::rfind(): received nullptr");
444 return __str_rfind<value_type, size_type, traits_type, npos>
445 (data(), size(), __s, __pos, __n);
446 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000447
Marshall Clowf1729d92017-11-15 20:02:27 +0000448 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
449 size_type rfind(const _CharT* __s, size_type __pos=npos) const
450 {
451 _LIBCPP_ASSERT(__s != nullptr, "string_view::rfind(): received nullptr");
452 return __str_rfind<value_type, size_type, traits_type, npos>
453 (data(), size(), __s, __pos, traits_type::length(__s));
454 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000455
Marshall Clowf1729d92017-11-15 20:02:27 +0000456 // find_first_of
457 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
458 size_type find_first_of(basic_string_view __s, size_type __pos = 0) const _NOEXCEPT
459 {
460 _LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_first_of(): received nullptr");
461 return __str_find_first_of<value_type, size_type, traits_type, npos>
462 (data(), size(), __s.data(), __pos, __s.size());
463 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000464
Marshall Clowf1729d92017-11-15 20:02:27 +0000465 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
466 size_type find_first_of(_CharT __c, size_type __pos = 0) const _NOEXCEPT
467 { return find(__c, __pos); }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000468
Marshall Clowf1729d92017-11-15 20:02:27 +0000469 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
470 size_type find_first_of(const _CharT* __s, size_type __pos, size_type __n) const
471 {
472 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_first_of(): received nullptr");
473 return __str_find_first_of<value_type, size_type, traits_type, npos>
474 (data(), size(), __s, __pos, __n);
475 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000476
Marshall Clowf1729d92017-11-15 20:02:27 +0000477 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
478 size_type find_first_of(const _CharT* __s, size_type __pos=0) const
479 {
480 _LIBCPP_ASSERT(__s != nullptr, "string_view::find_first_of(): received nullptr");
481 return __str_find_first_of<value_type, size_type, traits_type, npos>
482 (data(), size(), __s, __pos, traits_type::length(__s));
483 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000484
Marshall Clowf1729d92017-11-15 20:02:27 +0000485 // find_last_of
486 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
487 size_type find_last_of(basic_string_view __s, size_type __pos=npos) const _NOEXCEPT
488 {
489 _LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_last_of(): received nullptr");
490 return __str_find_last_of<value_type, size_type, traits_type, npos>
491 (data(), size(), __s.data(), __pos, __s.size());
492 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000493
Marshall Clowf1729d92017-11-15 20:02:27 +0000494 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
495 size_type find_last_of(_CharT __c, size_type __pos = npos) const _NOEXCEPT
496 { return rfind(__c, __pos); }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000497
Marshall Clowf1729d92017-11-15 20:02:27 +0000498 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
499 size_type find_last_of(const _CharT* __s, size_type __pos, size_type __n) const
500 {
501 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_last_of(): received nullptr");
502 return __str_find_last_of<value_type, size_type, traits_type, npos>
503 (data(), size(), __s, __pos, __n);
504 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000505
Marshall Clowf1729d92017-11-15 20:02:27 +0000506 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
507 size_type find_last_of(const _CharT* __s, size_type __pos=npos) const
508 {
509 _LIBCPP_ASSERT(__s != nullptr, "string_view::find_last_of(): received nullptr");
510 return __str_find_last_of<value_type, size_type, traits_type, npos>
511 (data(), size(), __s, __pos, traits_type::length(__s));
512 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000513
Marshall Clowf1729d92017-11-15 20:02:27 +0000514 // find_first_not_of
515 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
516 size_type find_first_not_of(basic_string_view __s, size_type __pos=0) const _NOEXCEPT
517 {
518 _LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_first_not_of(): received nullptr");
519 return __str_find_first_not_of<value_type, size_type, traits_type, npos>
520 (data(), size(), __s.data(), __pos, __s.size());
521 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000522
Marshall Clowf1729d92017-11-15 20:02:27 +0000523 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
524 size_type find_first_not_of(_CharT __c, size_type __pos=0) const _NOEXCEPT
525 {
526 return __str_find_first_not_of<value_type, size_type, traits_type, npos>
527 (data(), size(), __c, __pos);
528 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000529
Marshall Clowf1729d92017-11-15 20:02:27 +0000530 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
531 size_type find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const
532 {
533 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_first_not_of(): received nullptr");
534 return __str_find_first_not_of<value_type, size_type, traits_type, npos>
535 (data(), size(), __s, __pos, __n);
536 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000537
Marshall Clowf1729d92017-11-15 20:02:27 +0000538 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
539 size_type find_first_not_of(const _CharT* __s, size_type __pos=0) const
540 {
541 _LIBCPP_ASSERT(__s != nullptr, "string_view::find_first_not_of(): received nullptr");
542 return __str_find_first_not_of<value_type, size_type, traits_type, npos>
543 (data(), size(), __s, __pos, traits_type::length(__s));
544 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000545
Marshall Clowf1729d92017-11-15 20:02:27 +0000546 // find_last_not_of
547 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
548 size_type find_last_not_of(basic_string_view __s, size_type __pos=npos) const _NOEXCEPT
549 {
550 _LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_last_not_of(): received nullptr");
551 return __str_find_last_not_of<value_type, size_type, traits_type, npos>
552 (data(), size(), __s.data(), __pos, __s.size());
553 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000554
Marshall Clowf1729d92017-11-15 20:02:27 +0000555 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
556 size_type find_last_not_of(_CharT __c, size_type __pos=npos) const _NOEXCEPT
557 {
558 return __str_find_last_not_of<value_type, size_type, traits_type, npos>
559 (data(), size(), __c, __pos);
560 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000561
Marshall Clowf1729d92017-11-15 20:02:27 +0000562 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
563 size_type find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const
564 {
565 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_last_not_of(): received nullptr");
566 return __str_find_last_not_of<value_type, size_type, traits_type, npos>
567 (data(), size(), __s, __pos, __n);
568 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000569
Marshall Clowf1729d92017-11-15 20:02:27 +0000570 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
571 size_type find_last_not_of(const _CharT* __s, size_type __pos=npos) const
572 {
573 _LIBCPP_ASSERT(__s != nullptr, "string_view::find_last_not_of(): received nullptr");
574 return __str_find_last_not_of<value_type, size_type, traits_type, npos>
575 (data(), size(), __s, __pos, traits_type::length(__s));
576 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000577
Marshall Clow46b4ad52017-12-04 20:11:38 +0000578#if _LIBCPP_STD_VER > 17
579 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
580 bool starts_with(basic_string_view __s) const _NOEXCEPT
581 { return size() >= __s.size() && compare(0, __s.size(), __s) == 0; }
582
583 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
584 bool starts_with(value_type __c) const _NOEXCEPT
585 { return !empty() && _Traits::eq(front(), __c); }
586
587 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
588 bool starts_with(const value_type* __s) const _NOEXCEPT
589 { return starts_with(basic_string_view(__s)); }
590
591 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
592 bool ends_with(basic_string_view __s) const _NOEXCEPT
593 { return size() >= __s.size() && compare(size() - __s.size(), npos, __s) == 0; }
594
595 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
596 bool ends_with(value_type __c) const _NOEXCEPT
597 { return !empty() && _Traits::eq(back(), __c); }
598
599 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
600 bool ends_with(const value_type* __s) const _NOEXCEPT
601 { return ends_with(basic_string_view(__s)); }
602#endif
603
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000604private:
Marshall Clowf1729d92017-11-15 20:02:27 +0000605 const value_type* __data;
606 size_type __size;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000607};
608
609
610// [string.view.comparison]
611// operator ==
612template<class _CharT, class _Traits>
613_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
614bool operator==(basic_string_view<_CharT, _Traits> __lhs,
Marshall Clowf1729d92017-11-15 20:02:27 +0000615 basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000616{
Marshall Clowf1729d92017-11-15 20:02:27 +0000617 if ( __lhs.size() != __rhs.size()) return false;
618 return __lhs.compare(__rhs) == 0;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000619}
620
621template<class _CharT, class _Traits>
622_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
623bool operator==(basic_string_view<_CharT, _Traits> __lhs,
Marshall Clowf1729d92017-11-15 20:02:27 +0000624 typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000625{
Marshall Clowf1729d92017-11-15 20:02:27 +0000626 if ( __lhs.size() != __rhs.size()) return false;
627 return __lhs.compare(__rhs) == 0;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000628}
629
630template<class _CharT, class _Traits>
631_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
632bool operator==(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
Marshall Clowf1729d92017-11-15 20:02:27 +0000633 basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000634{
Marshall Clowf1729d92017-11-15 20:02:27 +0000635 if ( __lhs.size() != __rhs.size()) return false;
636 return __lhs.compare(__rhs) == 0;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000637}
638
639
640// operator !=
641template<class _CharT, class _Traits>
642_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
643bool operator!=(basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
644{
Marshall Clowf1729d92017-11-15 20:02:27 +0000645 if ( __lhs.size() != __rhs.size())
646 return true;
647 return __lhs.compare(__rhs) != 0;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000648}
649
650template<class _CharT, class _Traits>
651_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
652bool operator!=(basic_string_view<_CharT, _Traits> __lhs,
Marshall Clowf1729d92017-11-15 20:02:27 +0000653 typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000654{
Marshall Clowf1729d92017-11-15 20:02:27 +0000655 if ( __lhs.size() != __rhs.size())
656 return true;
657 return __lhs.compare(__rhs) != 0;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000658}
659
660template<class _CharT, class _Traits>
661_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
662bool operator!=(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
Marshall Clowf1729d92017-11-15 20:02:27 +0000663 basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000664{
Marshall Clowf1729d92017-11-15 20:02:27 +0000665 if ( __lhs.size() != __rhs.size())
666 return true;
667 return __lhs.compare(__rhs) != 0;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000668}
669
670
671// operator <
672template<class _CharT, class _Traits>
673_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
674bool operator<(basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
675{
Marshall Clowf1729d92017-11-15 20:02:27 +0000676 return __lhs.compare(__rhs) < 0;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000677}
678
679template<class _CharT, class _Traits>
680_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
681bool operator<(basic_string_view<_CharT, _Traits> __lhs,
Marshall Clowf1729d92017-11-15 20:02:27 +0000682 typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000683{
Marshall Clowf1729d92017-11-15 20:02:27 +0000684 return __lhs.compare(__rhs) < 0;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000685}
686
687template<class _CharT, class _Traits>
688_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
689bool operator<(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
Marshall Clowf1729d92017-11-15 20:02:27 +0000690 basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000691{
Marshall Clowf1729d92017-11-15 20:02:27 +0000692 return __lhs.compare(__rhs) < 0;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000693}
694
695
696// operator >
697template<class _CharT, class _Traits>
698_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
699bool operator> (basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
700{
Marshall Clowf1729d92017-11-15 20:02:27 +0000701 return __lhs.compare(__rhs) > 0;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000702}
703
704template<class _CharT, class _Traits>
705_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
706bool operator>(basic_string_view<_CharT, _Traits> __lhs,
Marshall Clowf1729d92017-11-15 20:02:27 +0000707 typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000708{
Marshall Clowf1729d92017-11-15 20:02:27 +0000709 return __lhs.compare(__rhs) > 0;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000710}
711
712template<class _CharT, class _Traits>
713_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
714bool operator>(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
Marshall Clowf1729d92017-11-15 20:02:27 +0000715 basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000716{
Marshall Clowf1729d92017-11-15 20:02:27 +0000717 return __lhs.compare(__rhs) > 0;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000718}
719
720
721// operator <=
722template<class _CharT, class _Traits>
723_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
724bool operator<=(basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
725{
Marshall Clowf1729d92017-11-15 20:02:27 +0000726 return __lhs.compare(__rhs) <= 0;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000727}
728
729template<class _CharT, class _Traits>
730_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
731bool operator<=(basic_string_view<_CharT, _Traits> __lhs,
Marshall Clowf1729d92017-11-15 20:02:27 +0000732 typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000733{
Marshall Clowf1729d92017-11-15 20:02:27 +0000734 return __lhs.compare(__rhs) <= 0;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000735}
736
737template<class _CharT, class _Traits>
738_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
739bool operator<=(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
Marshall Clowf1729d92017-11-15 20:02:27 +0000740 basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000741{
Marshall Clowf1729d92017-11-15 20:02:27 +0000742 return __lhs.compare(__rhs) <= 0;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000743}
744
745
746// operator >=
747template<class _CharT, class _Traits>
748_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
749bool operator>=(basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
750{
Marshall Clowf1729d92017-11-15 20:02:27 +0000751 return __lhs.compare(__rhs) >= 0;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000752}
753
754
755template<class _CharT, class _Traits>
756_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
757bool operator>=(basic_string_view<_CharT, _Traits> __lhs,
Marshall Clowf1729d92017-11-15 20:02:27 +0000758 typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000759{
Marshall Clowf1729d92017-11-15 20:02:27 +0000760 return __lhs.compare(__rhs) >= 0;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000761}
762
763template<class _CharT, class _Traits>
764_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
765bool operator>=(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
Marshall Clowf1729d92017-11-15 20:02:27 +0000766 basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000767{
Marshall Clowf1729d92017-11-15 20:02:27 +0000768 return __lhs.compare(__rhs) >= 0;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000769}
770
771typedef basic_string_view<char> string_view;
Marshall Clow96484472018-12-11 04:35:44 +0000772#ifndef _LIBCPP_NO_HAS_CHAR8_T
773typedef basic_string_view<char8_t> u8string_view;
774#endif
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000775typedef basic_string_view<char16_t> u16string_view;
776typedef basic_string_view<char32_t> u32string_view;
777typedef basic_string_view<wchar_t> wstring_view;
778
779// [string.view.hash]
780template<class _CharT, class _Traits>
Eric Fiselierc3589a82017-01-04 23:56:00 +0000781struct _LIBCPP_TEMPLATE_VIS hash<basic_string_view<_CharT, _Traits> >
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000782 : public unary_function<basic_string_view<_CharT, _Traits>, size_t>
783{
Louis Dionne6bc632f2018-11-28 15:22:30 +0000784 _LIBCPP_INLINE_VISIBILITY
785 size_t operator()(const basic_string_view<_CharT, _Traits> __val) const _NOEXCEPT {
786 return __do_string_hash(__val.data(), __val.data() + __val.size());
787 }
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000788};
789
Marshall Clow7d32d2f2017-01-09 18:07:34 +0000790
791#if _LIBCPP_STD_VER > 11
792inline namespace literals
793{
794 inline namespace string_view_literals
795 {
796 inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
Marshall Clow66db4e42017-10-24 14:06:00 +0000797 basic_string_view<char> operator "" sv(const char *__str, size_t __len) _NOEXCEPT
Marshall Clow7d32d2f2017-01-09 18:07:34 +0000798 {
799 return basic_string_view<char> (__str, __len);
800 }
801
802 inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
Marshall Clow66db4e42017-10-24 14:06:00 +0000803 basic_string_view<wchar_t> operator "" sv(const wchar_t *__str, size_t __len) _NOEXCEPT
Marshall Clow7d32d2f2017-01-09 18:07:34 +0000804 {
805 return basic_string_view<wchar_t> (__str, __len);
806 }
807
Marshall Clow96484472018-12-11 04:35:44 +0000808#ifndef _LIBCPP_NO_HAS_CHAR8_T
809 inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
810 basic_string_view<char8_t> operator "" sv(const char8_t *__str, size_t __len) _NOEXCEPT
811 {
812 return basic_string_view<char8_t> (__str, __len);
813 }
814#endif
815
Marshall Clow7d32d2f2017-01-09 18:07:34 +0000816 inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
Marshall Clow66db4e42017-10-24 14:06:00 +0000817 basic_string_view<char16_t> operator "" sv(const char16_t *__str, size_t __len) _NOEXCEPT
Marshall Clow7d32d2f2017-01-09 18:07:34 +0000818 {
819 return basic_string_view<char16_t> (__str, __len);
820 }
821
822 inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
Marshall Clow66db4e42017-10-24 14:06:00 +0000823 basic_string_view<char32_t> operator "" sv(const char32_t *__str, size_t __len) _NOEXCEPT
Marshall Clow7d32d2f2017-01-09 18:07:34 +0000824 {
825 return basic_string_view<char32_t> (__str, __len);
826 }
827 }
828}
829#endif
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000830_LIBCPP_END_NAMESPACE_STD
831
Eric Fiselier018a3d52017-05-31 22:07:49 +0000832_LIBCPP_POP_MACROS
833
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000834#endif // _LIBCPP_STRING_VIEW