blob: 67fc60656f6e839ea1c4c99c90989d78b2db40c4 [file] [log] [blame]
Marshall Clow1e00d6d2016-07-21 05:31:241// -*- 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
106 constexpr void clear() noexcept;
107 constexpr void remove_prefix(size_type n);
108 constexpr void remove_suffix(size_type n);
109 constexpr void swap(basic_string_view& s) noexcept;
110
111 size_type copy(charT* s, size_type n, size_type pos = 0) const;
112
113 constexpr basic_string_view substr(size_type pos = 0, size_type n = npos) const;
114 constexpr int compare(basic_string_view s) const noexcept;
115 constexpr int compare(size_type pos1, size_type n1, basic_string_view s) const;
116 constexpr int compare(size_type pos1, size_type n1,
117 basic_string_view s, size_type pos2, size_type n2) const;
118 constexpr int compare(const charT* s) const;
119 constexpr int compare(size_type pos1, size_type n1, const charT* s) const;
120 constexpr int compare(size_type pos1, size_type n1,
121 const charT* s, size_type n2) const;
122 constexpr size_type find(basic_string_view s, size_type pos = 0) const noexcept;
123 constexpr size_type find(charT c, size_type pos = 0) const noexcept;
124 constexpr size_type find(const charT* s, size_type pos, size_type n) const;
125 constexpr size_type find(const charT* s, size_type pos = 0) const;
126 constexpr size_type rfind(basic_string_view s, size_type pos = npos) const noexcept;
127 constexpr size_type rfind(charT c, size_type pos = npos) const noexcept;
128 constexpr size_type rfind(const charT* s, size_type pos, size_type n) const;
129 constexpr size_type rfind(const charT* s, size_type pos = npos) const;
130 constexpr size_type find_first_of(basic_string_view s, size_type pos = 0) const noexcept;
131 constexpr size_type find_first_of(charT c, size_type pos = 0) const noexcept;
132 constexpr size_type find_first_of(const charT* s, size_type pos, size_type n) const;
133 constexpr size_type find_first_of(const charT* s, size_type pos = 0) const;
134 constexpr size_type find_last_of(basic_string_view s, size_type pos = npos) const noexcept;
135 constexpr size_type find_last_of(charT c, size_type pos = npos) const noexcept;
136 constexpr size_type find_last_of(const charT* s, size_type pos, size_type n) const;
137 constexpr size_type find_last_of(const charT* s, size_type pos = npos) const;
138 constexpr size_type find_first_not_of(basic_string_view s, size_type pos = 0) const noexcept;
139 constexpr size_type find_first_not_of(charT c, size_type pos = 0) const noexcept;
140 constexpr size_type find_first_not_of(const charT* s, size_type pos, size_type n) const;
141 constexpr size_type find_first_not_of(const charT* s, size_type pos = 0) const;
142 constexpr size_type find_last_not_of(basic_string_view s, size_type pos = npos) const noexcept;
143 constexpr size_type find_last_not_of(charT c, size_type pos = npos) const noexcept;
144 constexpr size_type find_last_not_of(const charT* s, size_type pos, size_type n) const;
145 constexpr size_type find_last_not_of(const charT* s, size_type pos = npos) const;
146
147 private:
148 const_pointer data_; // exposition only
149 size_type size_; // exposition only
150 };
151
152 // 7.11, Hash support
153 template <class T> struct hash;
154 template <> struct hash<string_view>;
155 template <> struct hash<u16string_view>;
156 template <> struct hash<u32string_view>;
157 template <> struct hash<wstring_view>;
158
159} // namespace std
160
161
162*/
163
164#include <__config>
165
166#include <__string>
167#include <algorithm>
168#include <iterator>
169#include <__debug>
170
171#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
172#pragma GCC system_header
173#endif
174
175_LIBCPP_BEGIN_NAMESPACE_STD
176
177template<class _CharT, class _Traits = char_traits<_CharT> >
178class _LIBCPP_TYPE_VIS_ONLY basic_string_view {
179public:
180// types
181typedef _Traits traits_type;
182typedef _CharT value_type;
183typedef const _CharT* pointer;
184typedef const _CharT* const_pointer;
185typedef const _CharT& reference;
186typedef const _CharT& const_reference;
187typedef const_pointer const_iterator; // See [string.view.iterators]
188typedef const_iterator iterator;
189typedef _VSTD::reverse_iterator<const_iterator> const_reverse_iterator;
190typedef const_reverse_iterator reverse_iterator;
191typedef size_t size_type;
192typedef ptrdiff_t difference_type;
193static _LIBCPP_CONSTEXPR const size_type npos = -1; // size_type(-1);
194
195// [string.view.cons], construct/copy
196_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
197basic_string_view() _NOEXCEPT : __data (nullptr), __size(0) {}
198
199_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
200basic_string_view(const basic_string_view&) _NOEXCEPT = default;
201
202_LIBCPP_INLINE_VISIBILITY
203basic_string_view& operator=(const basic_string_view&) _NOEXCEPT = default;
204
205_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
206basic_string_view(const _CharT* __s, size_type __len)
207: __data(__s), __size(__len)
208{
Marshall Clow15362332016-07-21 06:24:04209// #if _LIBCPP_STD_VER > 11
210// _LIBCPP_ASSERT(__len == 0 || __s != nullptr, "string_view::string_view(_CharT *, size_t): received nullptr");
211// #endif
Marshall Clow1e00d6d2016-07-21 05:31:24212}
213
214_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
215basic_string_view(const _CharT* __s)
216: __data(__s), __size(_Traits::length(__s)) {}
217
218// [string.view.iterators], iterators
219_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
220const_iterator begin() const _NOEXCEPT { return cbegin(); }
221
222_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
223const_iterator end() const _NOEXCEPT { return cend(); }
224
225_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
226const_iterator cbegin() const _NOEXCEPT { return __data; }
227
228_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
229const_iterator cend() const _NOEXCEPT { return __data + __size; }
230
231_LIBCPP_INLINE_VISIBILITY
232const_reverse_iterator rbegin() const _NOEXCEPT { return const_reverse_iterator(cend()); }
233
234_LIBCPP_INLINE_VISIBILITY
235const_reverse_iterator rend() const _NOEXCEPT { return const_reverse_iterator(cbegin()); }
236
237_LIBCPP_INLINE_VISIBILITY
238const_reverse_iterator crbegin() const _NOEXCEPT { return const_reverse_iterator(cend()); }
239
240_LIBCPP_INLINE_VISIBILITY
241const_reverse_iterator crend() const _NOEXCEPT { return const_reverse_iterator(cbegin()); }
242
243// [string.view.capacity], capacity
244_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
245size_type size() const _NOEXCEPT { return __size; }
246
247_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
248size_type length() const _NOEXCEPT { return __size; }
249
250_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
251size_type max_size() const _NOEXCEPT { return numeric_limits<size_type>::max(); }
252
253_LIBCPP_CONSTEXPR bool _LIBCPP_INLINE_VISIBILITY
254empty() const _NOEXCEPT { return __size == 0; }
255
256// [string.view.access], element access
257_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
258const_reference operator[](size_type __pos) const _NOEXCEPT { return __data[__pos]; }
259
260_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
261const_reference at(size_type __pos) const
262{
263return __pos >= size()
264? (__libcpp_throw(out_of_range("string_view::at")), __data[0])
265: __data[__pos];
266}
267
268_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
269const_reference front() const
270{
271return _LIBCPP_ASSERT(!empty(), "string_view::front(): string is empty"), __data[0];
272}
273
274_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
275const_reference back() const
276{
277return _LIBCPP_ASSERT(!empty(), "string_view::back(): string is empty"), __data[__size-1];
278}
279
280_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
281const_pointer data() const _NOEXCEPT { return __data; }
282
283// [string.view.modifiers], modifiers:
284_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
285void clear() _NOEXCEPT
286{
287__data = nullptr;
288__size = 0;
289}
290
291_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
292void remove_prefix(size_type __n) _NOEXCEPT
293{
294_LIBCPP_ASSERT(__n <= size(), "remove_prefix() can't remove more than size()");
295__data += __n;
296__size -= __n;
297}
298
299_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
300void remove_suffix(size_type __n) _NOEXCEPT
301{
302_LIBCPP_ASSERT(__n <= size(), "remove_suffix() can't remove more than size()");
303__size -= __n;
304}
305
306_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
307void swap(basic_string_view& __other) _NOEXCEPT
308{
309const value_type *__p = __data;
310__data = __other.__data;
311__other.__data = __p;
312
313size_type __sz = __size;
314__size = __other.__size;
315__other.__size = __sz;
316}
317
318_LIBCPP_INLINE_VISIBILITY
319size_type copy(_CharT* __s, size_type __n, size_type __pos = 0) const
320{
321if (__pos > size())
322__libcpp_throw(out_of_range("string_view::copy"));
323size_type __rlen = _VSTD::min( __n, size() - __pos );
324copy_n(begin() + __pos, __rlen, __s );
325return __rlen;
326}
327
328_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
329basic_string_view substr(size_type __pos = 0, size_type __n = npos) const
330{
331return __pos > size()
332? (__libcpp_throw((out_of_range("string_view::substr"))), basic_string_view())
333: basic_string_view(data() + __pos, _VSTD::min(__n, size() - __pos));
334}
335
336_LIBCPP_CONSTEXPR_AFTER_CXX11 int compare(basic_string_view __sv) const _NOEXCEPT
337{
338size_type __rlen = _VSTD::min( size(), __sv.size());
339int __retval = _Traits::compare(data(), __sv.data(), __rlen);
340if ( __retval == 0 ) // first __rlen chars matched
341__retval = size() == __sv.size() ? 0 : ( size() < __sv.size() ? -1 : 1 );
342return __retval;
343}
344
345_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
346int compare(size_type __pos1, size_type __n1, basic_string_view __sv) const
347{
348return substr(__pos1, __n1).compare(__sv);
349}
350
351_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
352int compare( size_type __pos1, size_type __n1,
353basic_string_view _sv, size_type __pos2, size_type __n2) const
354{
355return substr(__pos1, __n1).compare(_sv.substr(__pos2, __n2));
356}
357
358_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
Marshall Clowe6521d62016-07-28 04:52:02359int compare(const _CharT* __s) const _NOEXCEPT
Marshall Clow1e00d6d2016-07-21 05:31:24360{
361return compare(basic_string_view(__s));
362}
363
364_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
365int compare(size_type __pos1, size_type __n1, const _CharT* __s) const
366{
367return substr(__pos1, __n1).compare(basic_string_view(__s));
368}
369
370_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
371int compare(size_type __pos1, size_type __n1, const _CharT* __s, size_type __n2) const
372{
373return substr(__pos1, __n1).compare(basic_string_view(__s, __n2));
374}
375
376// find
377_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
378size_type find(basic_string_view __s, size_type __pos = 0) const _NOEXCEPT
379{
380_LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find(): received nullptr");
381return __str_find<value_type, size_type, traits_type, npos>
382(data(), size(), __s.data(), __pos, __s.size());
383}
384
385_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
386size_type find(_CharT __c, size_type __pos = 0) const _NOEXCEPT
387{
388return __str_find<value_type, size_type, traits_type, npos>
389(data(), size(), __c, __pos);
390}
391
392_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
393size_type find(const _CharT* __s, size_type __pos, size_type __n) const
394{
395_LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find(): received nullptr");
396return __str_find<value_type, size_type, traits_type, npos>
397(data(), size(), __s, __pos, __n);
398}
399
400_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
401size_type find(const _CharT* __s, size_type __pos = 0) const
402{
403_LIBCPP_ASSERT(__s != nullptr, "string_view::find(): received nullptr");
404return __str_find<value_type, size_type, traits_type, npos>
405(data(), size(), __s, __pos, traits_type::length(__s));
406}
407
408// rfind
409_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
410size_type rfind(basic_string_view __s, size_type __pos = npos) const _NOEXCEPT
411{
412_LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find(): received nullptr");
413return __str_rfind<value_type, size_type, traits_type, npos>
414(data(), size(), __s.data(), __pos, __s.size());
415}
416
417_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
418size_type rfind(_CharT __c, size_type __pos = npos) const _NOEXCEPT
419{
420return __str_rfind<value_type, size_type, traits_type, npos>
421(data(), size(), __c, __pos);
422}
423
424_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
425size_type rfind(const _CharT* __s, size_type __pos, size_type __n) const
426{
427_LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::rfind(): received nullptr");
428return __str_rfind<value_type, size_type, traits_type, npos>
429(data(), size(), __s, __pos, __n);
430}
431
432_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
433size_type rfind(const _CharT* __s, size_type __pos=npos) const
434{
435_LIBCPP_ASSERT(__s != nullptr, "string_view::rfind(): received nullptr");
436return __str_rfind<value_type, size_type, traits_type, npos>
437(data(), size(), __s, __pos, traits_type::length(__s));
438}
439
440// find_first_of
441_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
442size_type find_first_of(basic_string_view __s, size_type __pos = 0) const _NOEXCEPT
443{
444_LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_first_of(): received nullptr");
445return __str_find_first_of<value_type, size_type, traits_type, npos>
446(data(), size(), __s.data(), __pos, __s.size());
447}
448
449_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
450size_type find_first_of(_CharT __c, size_type __pos = 0) const _NOEXCEPT
451{ return find(__c, __pos); }
452
453_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
454size_type find_first_of(const _CharT* __s, size_type __pos, size_type __n) const
455{
456_LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_first_of(): received nullptr");
457return __str_find_first_of<value_type, size_type, traits_type, npos>
458(data(), size(), __s, __pos, __n);
459}
460
461_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
462size_type find_first_of(const _CharT* __s, size_type __pos=0) const
463{
464_LIBCPP_ASSERT(__s != nullptr, "string_view::find_first_of(): received nullptr");
465return __str_find_first_of<value_type, size_type, traits_type, npos>
466(data(), size(), __s, __pos, traits_type::length(__s));
467}
468
469// find_last_of
470_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
471size_type find_last_of(basic_string_view __s, size_type __pos=npos) const _NOEXCEPT
472{
473_LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_last_of(): received nullptr");
474return __str_find_last_of<value_type, size_type, traits_type, npos>
475(data(), size(), __s.data(), __pos, __s.size());
476}
477
478_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
479size_type find_last_of(_CharT __c, size_type __pos = npos) const _NOEXCEPT
480{ return rfind(__c, __pos); }
481
482_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
483size_type find_last_of(const _CharT* __s, size_type __pos, size_type __n) const
484{
485_LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_last_of(): received nullptr");
486return __str_find_last_of<value_type, size_type, traits_type, npos>
487(data(), size(), __s, __pos, __n);
488}
489
490_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
491size_type find_last_of(const _CharT* __s, size_type __pos=npos) const
492{
493_LIBCPP_ASSERT(__s != nullptr, "string_view::find_last_of(): received nullptr");
494return __str_find_last_of<value_type, size_type, traits_type, npos>
495(data(), size(), __s, __pos, traits_type::length(__s));
496}
497
498// find_first_not_of
499_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
500size_type find_first_not_of(basic_string_view __s, size_type __pos=0) const _NOEXCEPT
501{
502_LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_first_not_of(): received nullptr");
503return __str_find_first_not_of<value_type, size_type, traits_type, npos>
504(data(), size(), __s.data(), __pos, __s.size());
505}
506
507_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
508size_type find_first_not_of(_CharT __c, size_type __pos=0) const _NOEXCEPT
509{
510return __str_find_first_not_of<value_type, size_type, traits_type, npos>
511(data(), size(), __c, __pos);
512}
513
514_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
515size_type find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const
516{
517_LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_first_not_of(): received nullptr");
518return __str_find_first_not_of<value_type, size_type, traits_type, npos>
519(data(), size(), __s, __pos, __n);
520}
521
522_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
523size_type find_first_not_of(const _CharT* __s, size_type __pos=0) const
524{
525_LIBCPP_ASSERT(__s != nullptr, "string_view::find_first_not_of(): received nullptr");
526return __str_find_first_not_of<value_type, size_type, traits_type, npos>
527(data(), size(), __s, __pos, traits_type::length(__s));
528}
529
530// find_last_not_of
531_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
532size_type find_last_not_of(basic_string_view __s, size_type __pos=npos) const _NOEXCEPT
533{
534_LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_last_not_of(): received nullptr");
535return __str_find_last_not_of<value_type, size_type, traits_type, npos>
536(data(), size(), __s.data(), __pos, __s.size());
537}
538
539_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
540size_type find_last_not_of(_CharT __c, size_type __pos=npos) const _NOEXCEPT
541{
542return __str_find_last_not_of<value_type, size_type, traits_type, npos>
543(data(), size(), __c, __pos);
544}
545
546_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
547size_type find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const
548{
549_LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_last_not_of(): received nullptr");
550return __str_find_last_not_of<value_type, size_type, traits_type, npos>
551(data(), size(), __s, __pos, __n);
552}
553
554_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
555size_type find_last_not_of(const _CharT* __s, size_type __pos=npos) const
556{
557_LIBCPP_ASSERT(__s != nullptr, "string_view::find_last_not_of(): received nullptr");
558return __str_find_last_not_of<value_type, size_type, traits_type, npos>
559(data(), size(), __s, __pos, traits_type::length(__s));
560}
561
562private:
563const value_type* __data;
564size_type __size;
565};
566
567
568// [string.view.comparison]
569// operator ==
570template<class _CharT, class _Traits>
571_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
572bool operator==(basic_string_view<_CharT, _Traits> __lhs,
573basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
574{
575if ( __lhs.size() != __rhs.size()) return false;
576return __lhs.compare(__rhs) == 0;
577}
578
579template<class _CharT, class _Traits>
580_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
581bool operator==(basic_string_view<_CharT, _Traits> __lhs,
582typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
583{
584if ( __lhs.size() != __rhs.size()) return false;
585return __lhs.compare(__rhs) == 0;
586}
587
588template<class _CharT, class _Traits>
589_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
590bool operator==(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
591basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
592{
593if ( __lhs.size() != __rhs.size()) return false;
594return __lhs.compare(__rhs) == 0;
595}
596
597
598// operator !=
599template<class _CharT, class _Traits>
600_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
601bool operator!=(basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
602{
603if ( __lhs.size() != __rhs.size())
604return true;
605return __lhs.compare(__rhs) != 0;
606}
607
608template<class _CharT, class _Traits>
609_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
610bool operator!=(basic_string_view<_CharT, _Traits> __lhs,
611typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
612{
613if ( __lhs.size() != __rhs.size())
614return true;
615return __lhs.compare(__rhs) != 0;
616}
617
618template<class _CharT, class _Traits>
619_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
620bool operator!=(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
621basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
622{
623if ( __lhs.size() != __rhs.size())
624return true;
625return __lhs.compare(__rhs) != 0;
626}
627
628
629// operator <
630template<class _CharT, class _Traits>
631_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
632bool operator<(basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
633{
634return __lhs.compare(__rhs) < 0;
635}
636
637template<class _CharT, class _Traits>
638_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
639bool operator<(basic_string_view<_CharT, _Traits> __lhs,
640typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
641{
642return __lhs.compare(__rhs) < 0;
643}
644
645template<class _CharT, class _Traits>
646_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
647bool operator<(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
648basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
649{
650return __lhs.compare(__rhs) < 0;
651}
652
653
654// operator >
655template<class _CharT, class _Traits>
656_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
657bool operator> (basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
658{
659return __lhs.compare(__rhs) > 0;
660}
661
662template<class _CharT, class _Traits>
663_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
664bool operator>(basic_string_view<_CharT, _Traits> __lhs,
665typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
666{
667return __lhs.compare(__rhs) > 0;
668}
669
670template<class _CharT, class _Traits>
671_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
672bool operator>(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
673basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
674{
675return __lhs.compare(__rhs) > 0;
676}
677
678
679// operator <=
680template<class _CharT, class _Traits>
681_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
682bool operator<=(basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
683{
684return __lhs.compare(__rhs) <= 0;
685}
686
687template<class _CharT, class _Traits>
688_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
689bool operator<=(basic_string_view<_CharT, _Traits> __lhs,
690typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
691{
692return __lhs.compare(__rhs) <= 0;
693}
694
695template<class _CharT, class _Traits>
696_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
697bool operator<=(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
698basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
699{
700return __lhs.compare(__rhs) <= 0;
701}
702
703
704// operator >=
705template<class _CharT, class _Traits>
706_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
707bool operator>=(basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
708{
709return __lhs.compare(__rhs) >= 0;
710}
711
712
713template<class _CharT, class _Traits>
714_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
715bool operator>=(basic_string_view<_CharT, _Traits> __lhs,
716typename common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
717{
718return __lhs.compare(__rhs) >= 0;
719}
720
721template<class _CharT, class _Traits>
722_LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
723bool operator>=(typename common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
724basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
725{
726return __lhs.compare(__rhs) >= 0;
727}
728
729typedef basic_string_view<char> string_view;
730typedef basic_string_view<char16_t> u16string_view;
731typedef basic_string_view<char32_t> u32string_view;
732typedef basic_string_view<wchar_t> wstring_view;
733
734// [string.view.hash]
735template<class _CharT, class _Traits>
736struct _LIBCPP_TYPE_VIS_ONLY hash<basic_string_view<_CharT, _Traits> >
737 : public unary_function<basic_string_view<_CharT, _Traits>, size_t>
738{
739 size_t operator()(const basic_string_view<_CharT, _Traits> __val) const _NOEXCEPT;
740};
741
742template<class _CharT, class _Traits>
743size_t
744hash<basic_string_view<_CharT, _Traits> >::operator()(
745 const basic_string_view<_CharT, _Traits> __val) const _NOEXCEPT
746{
747 return __do_string_hash(__val.data(), __val.data() + __val.size());
748}
749
750#if _LIBCPP_STD_VER > 11
751
752template <class _CharT, class _Traits>
753__quoted_output_proxy<_CharT, const _CharT *, _Traits>
754quoted (basic_string_view <_CharT, _Traits> __sv,
755 _CharT __delim = _CharT('"'), _CharT __escape=_CharT('\\'))
756{
757 return __quoted_output_proxy<_CharT, const _CharT *, _Traits>
758 ( __sv.data(), __sv.data() + __sv.size(), __delim, __escape );
759}
760#endif // _LIBCPP_STD_VER > 11
761
762_LIBCPP_END_NAMESPACE_STD
763
764#endif // _LIBCPP_STRING_VIEW