blob: 66b426ad90323cc709261a3688c3d20a8e8926c9 [file] [log] [blame]
Marshall Clow5aa8fa22014-06-11 16:44:55 +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_LFTS_STRING_VIEW
12#define _LIBCPP_LFTS_STRING_VIEW
13
14/*
15string_view synopsis
16
17namespace std {
18 namespace experimental {
19 inline namespace library_fundamentals_v1 {
20
21 // 7.2, Class template basic_string_view
22 template<class charT, class traits = char_traits<charT>>
23 class basic_string_view;
24
25 // 7.9, basic_string_view non-member comparison functions
26 template<class charT, class traits>
27 constexpr bool operator==(basic_string_view<charT, traits> x,
28 basic_string_view<charT, traits> y) noexcept;
29 template<class charT, class traits>
30 constexpr bool operator!=(basic_string_view<charT, traits> x,
31 basic_string_view<charT, traits> y) noexcept;
32 template<class charT, class traits>
33 constexpr bool operator< (basic_string_view<charT, traits> x,
34 basic_string_view<charT, traits> y) noexcept;
35 template<class charT, class traits>
36 constexpr bool operator> (basic_string_view<charT, traits> x,
37 basic_string_view<charT, traits> y) noexcept;
38 template<class charT, class traits>
39 constexpr bool operator<=(basic_string_view<charT, traits> x,
40 basic_string_view<charT, traits> y) noexcept;
41 template<class charT, class traits>
42 constexpr bool operator>=(basic_string_view<charT, traits> x,
43 basic_string_view<charT, traits> y) noexcept;
44 // see below, sufficient additional overloads of comparison functions
45
46 // 7.10, Inserters and extractors
47 template<class charT, class traits>
48 basic_ostream<charT, traits>&
49 operator<<(basic_ostream<charT, traits>& os,
50 basic_string_view<charT, traits> str);
51
52 // basic_string_view typedef names
53 typedef basic_string_view<char> string_view;
54 typedef basic_string_view<char16_t> u16string_view;
55 typedef basic_string_view<char32_t> u32string_view;
56 typedef basic_string_view<wchar_t> wstring_view;
57
58 } // namespace fundamentals_v1
59 } // namespace experimental
60
61 // 7.11, Hash support
62 template <class T> struct hash;
63 template <> struct hash<experimental::string_view>;
64 template <> struct hash<experimental::u16string_view>;
65 template <> struct hash<experimental::u32string_view>;
66 template <> struct hash<experimental::wstring_view>;
67
68} // namespace std
69
70
71template<class charT, class traits = char_traits<charT>>
72class basic_string_view {
73 public:
74 // types
75 typedef traits traits_type;
76 typedef charT value_type;
77 typedef charT* pointer;
78 typedef const charT* const_pointer;
79 typedef charT& reference;
80 typedef const charT& const_reference;
81 typedef implementation-defined const_iterator; // See 7.4
82 typedef const_iterator iterator;22) Because basic_string_view refers to a constant sequence, iterator and const_iterator are the same type.
83 typedef reverse_iterator<const_iterator> const_reverse_iterator;
84 typedef const_reverse_iterator reverse_iterator;
85 typedef size_t size_type;
86 typedef ptrdiff_t difference_type;
87 static constexpr size_type npos = size_type(-1);
88
89 // 7.3, basic_string_view constructors and assignment operators
90 constexpr basic_string_view() noexcept;
91 constexpr basic_string_view(const basic_string_view&) noexcept = default;
92 basic_string_view& operator=(const basic_string_view&) noexcept = default;
93 template<class Allocator>
94 basic_string_view(const basic_string<charT, traits, Allocator>& str) noexcept;
95 constexpr basic_string_view(const charT* str);
96 constexpr basic_string_view(const charT* str, size_type len);
97
98 // 7.4, basic_string_view iterator support
99 constexpr const_iterator begin() const noexcept;
100 constexpr const_iterator end() const noexcept;
101 constexpr const_iterator cbegin() const noexcept;
102 constexpr const_iterator cend() const noexcept;
103 const_reverse_iterator rbegin() const noexcept;
104 const_reverse_iterator rend() const noexcept;
105 const_reverse_iterator crbegin() const noexcept;
106 const_reverse_iterator crend() const noexcept;
107
108 // 7.5, basic_string_view capacity
109 constexpr size_type size() const noexcept;
110 constexpr size_type length() const noexcept;
111 constexpr size_type max_size() const noexcept;
112 constexpr bool empty() const noexcept;
113
114 // 7.6, basic_string_view element access
115 constexpr const_reference operator[](size_type pos) const;
116 constexpr const_reference at(size_type pos) const;
117 constexpr const_reference front() const;
118 constexpr const_reference back() const;
119 constexpr const_pointer data() const noexcept;
120
121 // 7.7, basic_string_view modifiers
122 constexpr void clear() noexcept;
123 constexpr void remove_prefix(size_type n);
124 constexpr void remove_suffix(size_type n);
125 constexpr void swap(basic_string_view& s) noexcept;
126
127 // 7.8, basic_string_view string operations
128 template<class Allocator>
129 explicit operator basic_string<charT, traits, Allocator>() const;
130 template<class Allocator = allocator<charT>>
131 basic_string<charT, traits, Allocator> to_string(
132 const Allocator& a = Allocator()) const;
133
134 size_type copy(charT* s, size_type n, size_type pos = 0) const;
135
136 constexpr basic_string_view substr(size_type pos = 0, size_type n = npos) const;
137 constexpr int compare(basic_string_view s) const noexcept;
138 constexpr int compare(size_type pos1, size_type n1, basic_string_view s) const;
139 constexpr int compare(size_type pos1, size_type n1,
140 basic_string_view s, size_type pos2, size_type n2) const;
141 constexpr int compare(const charT* s) const;
142 constexpr int compare(size_type pos1, size_type n1, const charT* s) const;
143 constexpr int compare(size_type pos1, size_type n1,
144 const charT* s, size_type n2) const;
145 constexpr size_type find(basic_string_view s, size_type pos = 0) const noexcept;
146 constexpr size_type find(charT c, size_type pos = 0) const noexcept;
147 constexpr size_type find(const charT* s, size_type pos, size_type n) const;
148 constexpr size_type find(const charT* s, size_type pos = 0) const;
149 constexpr size_type rfind(basic_string_view s, size_type pos = npos) const noexcept;
150 constexpr size_type rfind(charT c, size_type pos = npos) const noexcept;
151 constexpr size_type rfind(const charT* s, size_type pos, size_type n) const;
152 constexpr size_type rfind(const charT* s, size_type pos = npos) const;
153 constexpr size_type find_first_of(basic_string_view s, size_type pos = 0) const noexcept;
154 constexpr size_type find_first_of(charT c, size_type pos = 0) const noexcept;
155 constexpr size_type find_first_of(const charT* s, size_type pos, size_type n) const;
156 constexpr size_type find_first_of(const charT* s, size_type pos = 0) const;
157 constexpr size_type find_last_of(basic_string_view s, size_type pos = npos) const noexcept;
158 constexpr size_type find_last_of(charT c, size_type pos = npos) const noexcept;
159 constexpr size_type find_last_of(const charT* s, size_type pos, size_type n) const;
160 constexpr size_type find_last_of(const charT* s, size_type pos = npos) const;
161 constexpr size_type find_first_not_of(basic_string_view s, size_type pos = 0) const noexcept;
162 constexpr size_type find_first_not_of(charT c, size_type pos = 0) const noexcept;
163 constexpr size_type find_first_not_of(const charT* s, size_type pos, size_type n) const;
164 constexpr size_type find_first_not_of(const charT* s, size_type pos = 0) const;
165 constexpr size_type find_last_not_of(basic_string_view s, size_type pos = npos) const noexcept;
166 constexpr size_type find_last_not_of(charT c, size_type pos = npos) const noexcept;
167 constexpr size_type find_last_not_of(const charT* s, size_type pos, size_type n) const;
168 constexpr size_type find_last_not_of(const charT* s, size_type pos = npos) const;
169
170 private:
171 const_pointer data_; // exposition only
172 size_type size_; // exposition only
173};
174
175
176*/
177
178#include <__config>
179
180#include <string>
181#include <algorithm>
182#include <iterator>
183#include <ostream>
184#include <iomanip>
185
186#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
187#pragma GCC system_header
188#endif
189
190namespace std {
191 namespace experimental {
192 inline namespace library_fundamentals_v1 {
193
194 template<class _CharT, class _Traits = _VSTD::char_traits<_CharT> >
195 class _LIBCPP_TYPE_VIS_ONLY basic_string_view {
196 public:
197 // types
198 typedef _Traits traits_type;
199 typedef _CharT value_type;
200 typedef const _CharT* pointer;
201 typedef const _CharT* const_pointer;
202 typedef const _CharT& reference;
203 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);
211
212 // [string.view.cons], construct/copy
213 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
214 basic_string_view() _NOEXCEPT : __data (nullptr), __size(0) {}
215
216 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
217 basic_string_view(const basic_string_view&) _NOEXCEPT = default;
218
219 _LIBCPP_INLINE_VISIBILITY
220 basic_string_view& operator=(const basic_string_view&) _NOEXCEPT = default;
221
222 template<class _Allocator>
223 _LIBCPP_INLINE_VISIBILITY
224 basic_string_view(const basic_string<_CharT, _Traits, _Allocator>& __str) _NOEXCEPT
225 : __data (__str.data()), __size(__str.size()) {}
226
227 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
228 basic_string_view(const _CharT* __s, size_type __len)
229 : __data(__s), __size(__len)
230 {
231 _LIBCPP_ASSERT(__len == 0 || __s != nullptr, "string_view::string_view(_CharT *, size_t): recieved nullptr");
232 }
233
234 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
235 basic_string_view(const _CharT* __s)
236 : __data(__s), __size(_Traits::length(__s)) {}
237
238 // [string.view.iterators], iterators
239 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
240 const_iterator begin() const _NOEXCEPT { return cbegin(); }
241
242 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
243 const_iterator end() const _NOEXCEPT { return cend(); }
244
245 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
246 const_iterator cbegin() const _NOEXCEPT { return __data; }
247
248 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
249 const_iterator cend() const _NOEXCEPT { return __data + __size; }
250
251 _LIBCPP_INLINE_VISIBILITY
252 const_reverse_iterator rbegin() const _NOEXCEPT { return const_reverse_iterator(cend()); }
253
254 _LIBCPP_INLINE_VISIBILITY
255 const_reverse_iterator rend() const _NOEXCEPT { return const_reverse_iterator(cbegin()); }
256
257 _LIBCPP_INLINE_VISIBILITY
258 const_reverse_iterator crbegin() const _NOEXCEPT { return const_reverse_iterator(cend()); }
259
260 _LIBCPP_INLINE_VISIBILITY
261 const_reverse_iterator crend() const _NOEXCEPT { return const_reverse_iterator(cbegin()); }
262
263 // [string.view.capacity], capacity
264 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
265 size_type size() const _NOEXCEPT { return __size; }
266
267 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
268 size_type length() const _NOEXCEPT { return __size; }
269
270 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
271 size_type max_size() const _NOEXCEPT { return _VSTD::numeric_limits<size_type>::max(); }
272
273 _LIBCPP_CONSTEXPR bool _LIBCPP_INLINE_VISIBILITY
274 empty() const _NOEXCEPT { return __size == 0; }
275
276 // [string.view.access], element access
277 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
278 const_reference operator[](size_type __pos) const { return __data[__pos]; }
279
280 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
281 const_reference at(size_type __pos) const
282 {
283 if (__pos >= size())
284 throw out_of_range("string_view::at");
285 return __data[__pos];
286 }
287
288 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
289 const_reference front() const
290 {
291 _LIBCPP_ASSERT(!empty(), "string_view::front(): string is empty");
292 return __data[0];
293 }
294
295 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
296 const_reference back() const
297 {
298 _LIBCPP_ASSERT(!empty(), "string_view::back(): string is empty");
299 return __data[__size-1];
300 }
301
302 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
303 const_pointer data() const _NOEXCEPT { return __data; }
304
305 // [string.view.modifiers], modifiers:
306 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
307 void clear() _NOEXCEPT
308 {
309 __data = nullptr;
310 __size = 0;
311 }
312
313 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
314 void remove_prefix(size_type __n) _NOEXCEPT
315 {
316 if (__n > __size)
317 __n = __size;
318 __data += __n;
319 __size -= __n;
320 }
321
322 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
323 void remove_suffix(size_type __n) _NOEXCEPT
324 {
325 if (__n > __size)
326 __n = __size;
327 __size -= __n;
328 }
329
330 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
331 void swap(basic_string_view& __other) _NOEXCEPT
332 {
333 const value_type *__p = __data;
334 __data = __other.__data;
335 __other.__data = __p;
336
337 size_type __sz = __size;
338 __size = __other.__size;
339 __other.__size = __sz;
340// _VSTD::swap( __data, __other.__data );
341// _VSTD::swap( __size, __other.__size );
342 }
343
344 // [string.view.ops], string operations:
345 template<class _Allocator>
346 _LIBCPP_INLINE_VISIBILITY
347 _LIBCPP_EXPLICIT operator basic_string<_CharT, _Traits, _Allocator>() const
348 { return basic_string<_CharT, _Traits, _Allocator>( begin(), end()); }
349
350 template<class _Allocator = allocator<_CharT> >
351 _LIBCPP_INLINE_VISIBILITY
352 basic_string<_CharT, _Traits, _Allocator> to_string( const _Allocator& __a = _Allocator())
353 { return basic_string<_CharT, _Traits, _Allocator> ( begin(), end(), __a ); }
354
355 size_type copy(_CharT* __s, size_type __n, size_type __pos = 0) const
356 {
357 if ( __pos > size())
358 throw out_of_range("string_view::copy");
359 size_type __rlen = _VSTD::min( __n, size() - __pos );
360 _VSTD::copy_n(begin() + __pos, __rlen, __s );
361 return __rlen;
362 }
363
364 _LIBCPP_CONSTEXPR_AFTER_CXX11 basic_string_view substr(size_type __pos = 0, size_type __n = npos) const
365 {
366 if (__pos > size())
367 throw out_of_range("string_view::substr");
368 size_type __rlen = _VSTD::min( __n, size() - __pos );
369 return basic_string_view(data() + __pos, __rlen);
370 }
371
372 _LIBCPP_CONSTEXPR_AFTER_CXX11 int compare(basic_string_view __sv) const _NOEXCEPT
373 {
374 size_type __rlen = _VSTD::min( size(), __sv.size());
375 int __retval = _Traits::compare(data(), __sv.data(), __rlen);
376 if ( __retval == 0 ) // first __rlen chars matched
377 __retval = size() == __sv.size() ? 0 : ( size() < __sv.size() ? -1 : 1 );
378 return __retval;
379 }
380
381 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
382 int compare(size_type __pos1, size_type __n1, basic_string_view __sv) const
383 {
384 return substr(__pos1, __n1).compare(__sv);
385 }
386
387 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
388 int compare( size_type __pos1, size_type __n1,
389 basic_string_view _sv, size_type __pos2, size_type __n2) const
390 {
391 return substr(__pos1, __n1).compare(_sv.substr(__pos2, __n2));
392 }
393
394 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
395 int compare(const _CharT* __s) const
396 {
397 return compare(basic_string_view(__s));
398 }
399
400 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
401 int compare(size_type __pos1, size_type __n1, const _CharT* __s) const
402 {
403 return substr(__pos1, __n1).compare(basic_string_view(__s));
404 }
405
406 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
407 int compare(size_type __pos1, size_type __n1, const _CharT* __s, size_type __n2) const
408 {
409 return substr(__pos1, __n1).compare(basic_string_view(__s, __n2));
410 }
411
412 // find
413 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
414 size_type find(basic_string_view __s, size_type __pos = 0) const _NOEXCEPT
415 {
416 _LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find(): recieved nullptr");
417 return _VSTD::__str_find<value_type, size_type, traits_type, npos>
418 (data(), size(), __s.data(), __pos, __s.size());
419 }
420
421 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
422 size_type find(_CharT __c, size_type __pos = 0) const _NOEXCEPT
423 {
424 return _VSTD::__str_find<value_type, size_type, traits_type, npos>
425 (data(), size(), __c, __pos);
426 }
427
428 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
429 size_type find(const _CharT* __s, size_type __pos, size_type __n) const
430 {
431 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find(): recieved nullptr");
432 return _VSTD::__str_find<value_type, size_type, traits_type, npos>
433 (data(), size(), __s, __pos, __n);
434 }
435
436 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
437 size_type find(const _CharT* __s, size_type __pos = 0) const
438 {
439 _LIBCPP_ASSERT(__s != nullptr, "string_view::find(): recieved nullptr");
440 return _VSTD::__str_find<value_type, size_type, traits_type, npos>
441 (data(), size(), __s, __pos, traits_type::length(__s));
442 }
443
444 // rfind
445 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
446 size_type rfind(basic_string_view __s, size_type __pos = npos) const _NOEXCEPT
447 {
448 _LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find(): recieved nullptr");
449 return _VSTD::__str_rfind<value_type, size_type, traits_type, npos>
450 (data(), size(), __s.data(), __pos, __s.size());
451 }
452
453 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
454 size_type rfind(_CharT __c, size_type __pos = npos) const _NOEXCEPT
455 {
456 return _VSTD::__str_rfind<value_type, size_type, traits_type, npos>
457 (data(), size(), __c, __pos);
458 }
459
460 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
461 size_type rfind(const _CharT* __s, size_type __pos, size_type __n) const
462 {
463 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::rfind(): recieved nullptr");
464 return _VSTD::__str_rfind<value_type, size_type, traits_type, npos>
465 (data(), size(), __s, __pos, __n);
466 }
467
468 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
469 size_type rfind(const _CharT* __s, size_type __pos=npos) const
470 {
471 _LIBCPP_ASSERT(__s != nullptr, "string_view::rfind(): recieved nullptr");
472 return _VSTD::__str_rfind<value_type, size_type, traits_type, npos>
473 (data(), size(), __s, __pos, traits_type::length(__s));
474 }
475
476 // find_first_of
477 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
478 size_type find_first_of(basic_string_view __s, size_type __pos = 0) const _NOEXCEPT
479 {
480 _LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_first_of(): recieved nullptr");
481 return _VSTD::__str_find_first_of<value_type, size_type, traits_type, npos>
482 (data(), size(), __s.data(), __pos, __s.size());
483 }
484
485 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
486 size_type find_first_of(_CharT __c, size_type __pos = 0) const _NOEXCEPT
487 { return find(__c, __pos); }
488
489 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
490 size_type find_first_of(const _CharT* __s, size_type __pos, size_type __n) const
491 {
492 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_first_of(): recieved nullptr");
493 return _VSTD::__str_find_first_of<value_type, size_type, traits_type, npos>
494 (data(), size(), __s, __pos, __n);
495 }
496
497 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
498 size_type find_first_of(const _CharT* __s, size_type __pos=0) const
499 {
500 _LIBCPP_ASSERT(__s != nullptr, "string_view::find_first_of(): recieved nullptr");
501 return _VSTD::__str_find_first_of<value_type, size_type, traits_type, npos>
502 (data(), size(), __s, __pos, traits_type::length(__s));
503 }
504
505 // find_last_of
506 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
507 size_type find_last_of(basic_string_view __s, size_type __pos=npos) const _NOEXCEPT
508 {
509 _LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_last_of(): recieved nullptr");
510 return _VSTD::__str_find_last_of<value_type, size_type, traits_type, npos>
511 (data(), size(), __s.data(), __pos, __s.size());
512 }
513
514 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
515 size_type find_last_of(_CharT __c, size_type __pos = npos) const _NOEXCEPT
516 { return rfind(__c, __pos); }
517
518 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
519 size_type find_last_of(const _CharT* __s, size_type __pos, size_type __n) const
520 {
521 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_last_of(): recieved nullptr");
522 return _VSTD::__str_find_last_of<value_type, size_type, traits_type, npos>
523 (data(), size(), __s, __pos, __n);
524 }
525
526 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
527 size_type find_last_of(const _CharT* __s, size_type __pos=npos) const
528 {
529 _LIBCPP_ASSERT(__s != nullptr, "string_view::find_last_of(): recieved nullptr");
530 return _VSTD::__str_find_last_of<value_type, size_type, traits_type, npos>
531 (data(), size(), __s, __pos, traits_type::length(__s));
532 }
533
534 // find_first_not_of
535 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
536 size_type find_first_not_of(basic_string_view __s, size_type __pos=0) const _NOEXCEPT
537 {
538 _LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_first_not_of(): recieved nullptr");
539 return _VSTD::__str_find_first_not_of<value_type, size_type, traits_type, npos>
540 (data(), size(), __s.data(), __pos, __s.size());
541 }
542
543 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
544 size_type find_first_not_of(_CharT __c, size_type __pos=0) const _NOEXCEPT
545 {
546 return _VSTD::__str_find_first_not_of<value_type, size_type, traits_type, npos>
547 (data(), size(), __c, __pos);
548 }
549
550 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
551 size_type find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const
552 {
553 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_first_not_of(): recieved nullptr");
554 return _VSTD::__str_find_first_not_of<value_type, size_type, traits_type, npos>
555 (data(), size(), __s, __pos, __n);
556 }
557
558 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
559 size_type find_first_not_of(const _CharT* __s, size_type __pos=0) const
560 {
561 _LIBCPP_ASSERT(__s != nullptr, "string_view::find_first_not_of(): recieved nullptr");
562 return _VSTD::__str_find_first_not_of<value_type, size_type, traits_type, npos>
563 (data(), size(), __s, __pos, traits_type::length(__s));
564 }
565
566 // find_last_not_of
567 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
568 size_type find_last_not_of(basic_string_view __s, size_type __pos=npos) const _NOEXCEPT
569 {
570 _LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_last_not_of(): recieved nullptr");
571 return _VSTD::__str_find_last_not_of<value_type, size_type, traits_type, npos>
572 (data(), size(), __s.data(), __pos, __s.size());
573 }
574
575 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
576 size_type find_last_not_of(_CharT __c, size_type __pos=npos) const _NOEXCEPT
577 {
578 return _VSTD::__str_find_last_not_of<value_type, size_type, traits_type, npos>
579 (data(), size(), __c, __pos);
580 }
581
582 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
583 size_type find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const
584 {
585 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_last_not_of(): recieved nullptr");
586 return _VSTD::__str_find_last_not_of<value_type, size_type, traits_type, npos>
587 (data(), size(), __s, __pos, __n);
588 }
589
590 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
591 size_type find_last_not_of(const _CharT* __s, size_type __pos=npos) const
592 {
593 _LIBCPP_ASSERT(__s != nullptr, "string_view::find_last_not_of(): recieved nullptr");
594 return _VSTD::__str_find_last_not_of<value_type, size_type, traits_type, npos>
595 (data(), size(), __s, __pos, traits_type::length(__s));
596 }
597
598 private:
599 const value_type* __data;
600 size_type __size;
601 };
602
603
604 // [string.view.comparison]
605 // operator ==
606 template<class _CharT, class _Traits>
607 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
608 bool operator==(basic_string_view<_CharT, _Traits> __lhs,
609 basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
610 {
611 if ( __lhs.size() != __rhs.size()) return false;
612 return __lhs.compare(__rhs) == 0;
613 }
614
615 template<class _CharT, class _Traits>
616 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
617 bool operator==(basic_string_view<_CharT, _Traits> __lhs,
618 typename _VSTD::common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
619 {
620 if ( __lhs.size() != __rhs.size()) return false;
621 return __lhs.compare(__rhs) == 0;
622 }
623
624 template<class _CharT, class _Traits>
625 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
626 bool operator==(typename _VSTD::common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
627 basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
628 {
629 if ( __lhs.size() != __rhs.size()) return false;
630 return __lhs.compare(__rhs) == 0;
631 }
632
633
634 // operator !=
635 template<class _CharT, class _Traits>
636 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
637 bool operator!=(basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
638 {
639 if ( __lhs.size() != __rhs.size())
640 return true;
641 return __lhs.compare(__rhs) != 0;
642 }
643
644 template<class _CharT, class _Traits>
645 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
646 bool operator!=(basic_string_view<_CharT, _Traits> __lhs,
647 typename _VSTD::common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
648 {
649 if ( __lhs.size() != __rhs.size())
650 return true;
651 return __lhs.compare(__rhs) != 0;
652 }
653
654 template<class _CharT, class _Traits>
655 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
656 bool operator!=(typename _VSTD::common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
657 basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
658 {
659 if ( __lhs.size() != __rhs.size())
660 return true;
661 return __lhs.compare(__rhs) != 0;
662 }
663
664
665 // operator <
666 template<class _CharT, class _Traits>
667 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
668 bool operator<(basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
669 {
670 return __lhs.compare(__rhs) < 0;
671 }
672
673 template<class _CharT, class _Traits>
674 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
675 bool operator<(basic_string_view<_CharT, _Traits> __lhs,
676 typename _VSTD::common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
677 {
678 return __lhs.compare(__rhs) < 0;
679 }
680
681 template<class _CharT, class _Traits>
682 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
683 bool operator<(typename _VSTD::common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
684 basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
685 {
686 return __lhs.compare(__rhs) < 0;
687 }
688
689
690 // operator >
691 template<class _CharT, class _Traits>
692 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
693 bool operator> (basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
694 {
695 return __lhs.compare(__rhs) > 0;
696 }
697
698 template<class _CharT, class _Traits>
699 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
700 bool operator>(basic_string_view<_CharT, _Traits> __lhs,
701 typename _VSTD::common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
702 {
703 return __lhs.compare(__rhs) > 0;
704 }
705
706 template<class _CharT, class _Traits>
707 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
708 bool operator>(typename _VSTD::common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
709 basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
710 {
711 return __lhs.compare(__rhs) > 0;
712 }
713
714
715 // operator <=
716 template<class _CharT, class _Traits>
717 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
718 bool operator<=(basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
719 {
720 return __lhs.compare(__rhs) <= 0;
721 }
722
723 template<class _CharT, class _Traits>
724 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
725 bool operator<=(basic_string_view<_CharT, _Traits> __lhs,
726 typename _VSTD::common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
727 {
728 return __lhs.compare(__rhs) <= 0;
729 }
730
731 template<class _CharT, class _Traits>
732 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
733 bool operator<=(typename _VSTD::common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
734 basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
735 {
736 return __lhs.compare(__rhs) <= 0;
737 }
738
739
740 // operator >=
741 template<class _CharT, class _Traits>
742 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
743 bool operator>=(basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
744 {
745 return __lhs.compare(__rhs) >= 0;
746 }
747
748
749 template<class _CharT, class _Traits>
750 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
751 bool operator>=(basic_string_view<_CharT, _Traits> __lhs,
752 typename _VSTD::common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
753 {
754 return __lhs.compare(__rhs) >= 0;
755 }
756
757 template<class _CharT, class _Traits>
758 _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
759 bool operator>=(typename _VSTD::common_type<basic_string_view<_CharT, _Traits> >::type __lhs,
760 basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
761 {
762 return __lhs.compare(__rhs) >= 0;
763 }
764
765
766 // [string.view.io]
767 template<class _CharT, class _Traits>
768 basic_ostream<_CharT, _Traits>&
769 operator<<(basic_ostream<_CharT, _Traits>& __os, basic_string_view<_CharT, _Traits> __sv)
770 {
771 return _VSTD::__put_character_sequence(__os, __sv.data(), __sv.size());
772 }
773
774 typedef basic_string_view<char> string_view;
775 typedef basic_string_view<char16_t> u16string_view;
776 typedef basic_string_view<char32_t> u32string_view;
777 typedef basic_string_view<wchar_t> wstring_view;
778
779}}} // close std::experimental::library_fundamentals_v1
780
781_LIBCPP_BEGIN_NAMESPACE_STD
782
783// [string.view.hash]
784// Shamelessly stolen from <string>
785template<class _CharT, class _Traits>
786struct _LIBCPP_TYPE_VIS_ONLY hash<std::experimental::basic_string_view<_CharT, _Traits> >
787 : public unary_function<std::experimental::basic_string_view<_CharT, _Traits>, size_t>
788{
789 size_t operator()(const std::experimental::basic_string_view<_CharT, _Traits>& __val) const _NOEXCEPT;
790};
791
792template<class _CharT, class _Traits>
793size_t
794hash<std::experimental::basic_string_view<_CharT, _Traits> >::operator()(
795 const std::experimental::basic_string_view<_CharT, _Traits>& __val) const _NOEXCEPT
796{
797 return __do_string_hash(__val.data(), __val.data() + __val.size());
798}
799
800#if _LIBCPP_STD_VER > 11
801template <class _CharT, class _Traits>
802__quoted_output_proxy<_CharT, const _CharT *, _Traits>
803quoted ( std::experimental::basic_string_view <_CharT, _Traits> __sv,
804 _CharT __delim = _CharT('"'), _CharT __escape=_CharT('\\'))
805{
806 return __quoted_output_proxy<_CharT, const _CharT *, _Traits>
807 ( __sv.data(), __sv.data() + __sv.size(), __delim, __escape );
808}
809#endif
810
811_LIBCPP_END_NAMESPACE_STD
812
813#endif // _LIBCPP_LFTS_STRING_VIEW