-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstring_view.hpp
1520 lines (1309 loc) · 54 KB
/
string_view.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
////////////////////////////////////////////////////////////////////////////////
/// \file string_view.hpp
///
/// \brief This header provides definitions from the C++ header <string_view>
////////////////////////////////////////////////////////////////////////////////
/*
The MIT License (MIT)
Copyright (c) 2016 Matthew Rodusek All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#ifndef BPSTD_STRING_VIEW_HPP
#define BPSTD_STRING_VIEW_HPP
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
# pragma once
#endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
#include "detail/config.hpp" // BPSTD_CPP14_CONSTEXPR
#include <algorithm> // std::min, std::max
#include <string> // std::char_traits
#include <ostream> // std::basic_ostream
#include <cstddef> // std::size_t
#include <memory> // std::allocator
#include <stdexcept> // std::out_of_range
#include <iterator> // std::reverse_iterator
#include <ios> // std::streamsize
namespace bpstd { // back-port std
//////////////////////////////////////////////////////////////////////////////
/// \brief A semantic non-owning wrapper around contiguous character
/// sequences.
///
/// This class describes an object that can refer to a constant contiguous
/// sequence of char-like objects with the first element of the sequence
/// at position zero.
//////////////////////////////////////////////////////////////////////////////
template <typename CharT, typename Traits = std::char_traits<CharT>>
class basic_string_view
{
//--------------------------------------------------------------------------
// Public Member Types
//--------------------------------------------------------------------------
public:
using char_type = CharT;
using traits_type = Traits;
using size_type = std::size_t;
using value_type = CharT;
using reference = value_type&;
using const_reference = const value_type&;
using pointer = value_type*;
using const_pointer = const value_type*;
using iterator = const CharT*;
using const_iterator = const CharT*;
using reverse_iterator = std::reverse_iterator<iterator>;
using const_reverse_iterator = std::reverse_iterator<const_iterator>;
//--------------------------------------------------------------------------
// Public Members
//--------------------------------------------------------------------------
public:
static constexpr size_type npos = size_type(-1);
//--------------------------------------------------------------------------
// Constructors
//--------------------------------------------------------------------------
public:
/// \brief Default constructs a basic_string_view without any content
constexpr basic_string_view() noexcept;
/// \brief Constructs a basic_string_view by copying another one
///
/// \param other the string view being copied
constexpr basic_string_view(const basic_string_view& other) noexcept = default;
/// \brief Constructs a basic_string_view by moving anothe rone
///
/// \param other the string view being moved
constexpr basic_string_view(basic_string_view&& other) noexcept = default;
/// \brief Constructs a basic_string_view from a std::basic_string
///
/// \param str the string to view
template <typename Allocator>
// cppcheck-suppress noExplicitConstructor
basic_string_view(const std::basic_string<CharT,Traits,Allocator>& str) noexcept;
/// \brief Constructs a basic_string_view from an ansi-string
///
/// \param str the string to view
// cppcheck-suppress noExplicitConstructor
constexpr basic_string_view(const char_type* str) noexcept;
/// \brief Constructs a basic_string_view from an ansi string of a given size
///
/// \param str the string to view
/// \param count the size of the string
constexpr basic_string_view(const char_type* str, size_type count) noexcept;
//--------------------------------------------------------------------------
// Assignment
//--------------------------------------------------------------------------
public:
/// \brief Assigns a basic_string_view from an ansi-string
///
/// \param view the string to view
/// \return reference to \c (*this)
basic_string_view& operator=(const basic_string_view& view) = default;
//--------------------------------------------------------------------------
// Capacity
//--------------------------------------------------------------------------
public:
/// \{
/// \brief Returns the length of the string, in terms of bytes
///
/// \return the length of the string, in terms of bytes
constexpr size_type size() const noexcept;
constexpr size_type length() const noexcept;
/// \}
/// \brief The largest possible number of char-like objects that can be
/// referred to by a basic_string_view.
/// \return Maximum number of characters
constexpr size_type max_size() const noexcept;
/// \brief Returns whether the basic_string_view is empty
/// (i.e. whether its length is 0).
///
/// \return whether the basic_string_view is empty
constexpr bool empty() const noexcept;
//--------------------------------------------------------------------------
// Element Access
//--------------------------------------------------------------------------
public:
/// \brief Gets the data of the current basic_string_view
///
/// \note This is an alias of #c_str
///
/// \return the data this basic_string_view contains
constexpr const char_type* data() const noexcept;
/// \brief Accesses the element at index \p pos
///
/// \param pos the index to access
/// \return const reference to the character
constexpr const_reference operator[](size_type pos) const noexcept;
/// \brief Accesses the element at index \p pos
///
/// \param pos the index to access
/// \return const reference to the character
constexpr const_reference at(size_type pos) const;
/// \brief Access the first character of the string
///
/// \note Undefined behavior if basic_string_view is empty
///
/// \return reference to the first character of the string
constexpr const_reference front() const noexcept;
/// \brief References the last character of the string
///
/// \note Undefined behavior if basic_string_view is empty
///
/// \return reference to the last character of the string
constexpr const_reference back() const noexcept;
//--------------------------------------------------------------------------
// Modifiers
//--------------------------------------------------------------------------
public:
/// \brief Moves the start of the view forward by n characters.
///
/// The behavior is undefined if n > size().
///
/// \param n number of characters to remove from the start of the view
BPSTD_CPP14_CONSTEXPR void remove_prefix(size_type n) noexcept;
/// \brief Moves the end of the view back by n characters.
///
/// The behavior is undefined if n > size().
///
/// \param n number of characters to remove from the end of the view
BPSTD_CPP14_CONSTEXPR void remove_suffix(size_type n) noexcept;
/// \brief Exchanges the view with that of v.
///
/// \param v view to swap with
BPSTD_CPP14_CONSTEXPR void swap(basic_string_view& v) noexcept;
//--------------------------------------------------------------------------
// Conversions
//--------------------------------------------------------------------------
public:
/// \brief Creates a basic_string with a copy of the content of the current
/// view.
///
/// \return A basic_string containing a copy of the characters of the
/// current view.
template <typename Allocator>
explicit constexpr operator std::basic_string<CharT, Traits, Allocator>() const;
//--------------------------------------------------------------------------
// Operations
//--------------------------------------------------------------------------
public:
/// \brief Copies the substring [pos, pos + rcount) to the character string pointed
/// to by dest, where rcount is the smaller of count and size() - pos.
///
/// \param dest pointer to the destination character string
/// \param count requested substring length
/// \param pos position of the first character
BPSTD_CPP14_CONSTEXPR size_type copy(char_type* dest,
size_type count = npos,
size_type pos = 0) const;
/// \brief Returns a substring of this viewed string
///
/// \param pos the position of the first character in the substring
/// \param len the length of the substring
/// \return the created substring
BPSTD_CPP14_CONSTEXPR basic_string_view substr(size_t pos = 0,
size_t len = npos) const;
//--------------------------------------------------------------------------
/// \brief Compares two character sequences
///
/// \param v view to compare
/// \return negative value if this view is less than the other character
/// sequence, zero if the both character sequences are equal, positive
/// value if this view is greater than the other character sequence.
BPSTD_CPP14_CONSTEXPR int compare(basic_string_view v) const noexcept;
/// \brief Compares two character sequences
///
/// \param pos position of the first character in this view to compare
/// \param count number of characters of this view to compare
/// \param v view to compare
/// \return negative value if this view is less than the other character
/// sequence, zero if the both character sequences are equal, positive
/// value if this view is greater than the other character sequence.
BPSTD_CPP14_CONSTEXPR int compare(size_type pos, size_type count, basic_string_view v) const;
/// \brief Compares two character sequences
///
/// \param pos1 position of the first character in this view to compare
/// \param count1 number of characters of this view to compare
/// \param v view to compare
/// \param pos2 position of the second character in this view to compare
/// \param count2 number of characters of the given view to compare
/// \return negative value if this view is less than the other character
/// sequence, zero if the both character sequences are equal, positive
/// value if this view is greater than the other character sequence.
BPSTD_CPP14_CONSTEXPR int compare(size_type pos1,
size_type count1,
basic_string_view v,
size_type pos2,
size_type count2) const;
/// \brief Compares two character sequences
///
/// \param s pointer to the character string to compare to
/// \return negative value if this view is less than the other character
/// sequence, zero if the both character sequences are equal, positive
/// value if this view is greater than the other character sequence.
BPSTD_CPP14_CONSTEXPR int compare(const char_type* s) const;
/// \brief Compares two character sequences
///
/// \param pos position of the first character in this view to compare
/// \param count number of characters of this view to compare
/// \param s pointer to the character string to compare to
/// \return negative value if this view is less than the other character
/// sequence, zero if the both character sequences are equal, positive
/// value if this view is greater than the other character sequence.
BPSTD_CPP14_CONSTEXPR int compare(size_type pos,
size_type count,
const char_type* s) const;
/// \brief Compares two character sequences
///
/// \param pos position of the first character in this view to compare
/// \param count1 number of characters of this view to compare
/// \param s pointer to the character string to compare to
/// \param count2 number of characters of the given view to compare
/// \return negative value if this view is less than the other character
/// sequence, zero if the both character sequences are equal, positive
/// value if this view is greater than the other character sequence.
BPSTD_CPP14_CONSTEXPR int compare(size_type pos,
size_type count1,
const char_type* s,
size_type count2) const;
//--------------------------------------------------------------------------
BPSTD_CPP14_CONSTEXPR size_type find(basic_string_view v,
size_type pos = 0) const;
BPSTD_CPP14_CONSTEXPR size_type find(char_type c,
size_type pos = 0) const;
BPSTD_CPP14_CONSTEXPR size_type find(const char_type* s,
size_type pos,
size_type count) const;
BPSTD_CPP14_CONSTEXPR size_type find(const char_type* s,
size_type pos = 0) const;
//--------------------------------------------------------------------------
BPSTD_CPP14_CONSTEXPR size_type rfind(basic_string_view v,
size_type pos = npos) const;
BPSTD_CPP14_CONSTEXPR size_type rfind(char_type c,
size_type pos = npos) const;
BPSTD_CPP14_CONSTEXPR size_type rfind(const char_type* s,
size_type pos,
size_type count) const;
BPSTD_CPP14_CONSTEXPR size_type rfind(const char_type* s,
size_type pos = npos) const;
//--------------------------------------------------------------------------
BPSTD_CPP14_CONSTEXPR size_type find_first_of(basic_string_view v,
size_type pos = 0) const;
BPSTD_CPP14_CONSTEXPR size_type find_first_of(char_type c,
size_type pos = 0) const;
BPSTD_CPP14_CONSTEXPR size_type find_first_of(const char_type* s,
size_type pos,
size_type count) const;
BPSTD_CPP14_CONSTEXPR size_type find_first_of(const char_type* s,
size_type pos = 0) const;
//--------------------------------------------------------------------------
BPSTD_CPP14_CONSTEXPR size_type find_last_of(basic_string_view v,
size_type pos = npos) const;
BPSTD_CPP14_CONSTEXPR size_type find_last_of(char_type c,
size_type pos = npos) const;
BPSTD_CPP14_CONSTEXPR size_type find_last_of(const char_type* s,
size_type pos, size_type count) const;
BPSTD_CPP14_CONSTEXPR size_type find_last_of(const char_type* s,
size_type pos = npos) const;
//--------------------------------------------------------------------------
BPSTD_CPP14_CONSTEXPR size_type find_first_not_of(basic_string_view v,
size_type pos = 0) const;
BPSTD_CPP14_CONSTEXPR size_type find_first_not_of(char_type c,
size_type pos = 0) const;
BPSTD_CPP14_CONSTEXPR size_type find_first_not_of(const char_type* s,
size_type pos,
size_type count) const;
BPSTD_CPP14_CONSTEXPR size_type find_first_not_of(const char_type* s,
size_type pos = 0) const;
//--------------------------------------------------------------------------
BPSTD_CPP14_CONSTEXPR size_type find_last_not_of(basic_string_view v,
size_type pos = npos) const;
BPSTD_CPP14_CONSTEXPR size_type find_last_not_of(char_type c,
size_type pos = npos) const;
BPSTD_CPP14_CONSTEXPR size_type find_last_not_of(const char_type* s,
size_type pos,
size_type count) const;
BPSTD_CPP14_CONSTEXPR size_type find_last_not_of(const char_type* s,
size_type pos = npos) const;
//--------------------------------------------------------------------------
// Iterators
//--------------------------------------------------------------------------
public:
/// \{
/// \brief Retrieves the begin iterator for this basic_string_view
///
/// \return the begin iterator
BPSTD_CPP14_CONSTEXPR const_iterator begin() const noexcept;
BPSTD_CPP14_CONSTEXPR const_iterator cbegin() const noexcept;
/// \}
/// \{
/// \brief Retrieves the end iterator for this basic_string_view
///
/// \return the end iterator
BPSTD_CPP14_CONSTEXPR const_iterator end() const noexcept;
BPSTD_CPP14_CONSTEXPR const_iterator cend() const noexcept;
/// \}
/// \{
/// \brief Retrieves the reverse begin iterator for this basic_string_view
///
/// \return the reverse begin iterator
BPSTD_CPP14_CONSTEXPR const_reverse_iterator rbegin() const noexcept;
BPSTD_CPP14_CONSTEXPR const_reverse_iterator rend() const noexcept;
/// \}
/// \{
/// \brief Retrieves the reverse end iterator for this basic_string_view
///
/// \return the reverse end iterator
BPSTD_CPP14_CONSTEXPR const_reverse_iterator crbegin() const noexcept;
BPSTD_CPP14_CONSTEXPR const_reverse_iterator crend() const noexcept;
/// \}
//--------------------------------------------------------------------------
// Private Member
//--------------------------------------------------------------------------
private:
const char_type* m_str; ///< The internal string type
size_type m_size; ///< The size of this string
/// \brief Checks whether \p c is one of the characters in \p str
///
/// \param c the character to check
/// \param str the characters to compare against
/// \return true if \p c is one of the characters in \p str
static BPSTD_CPP14_CONSTEXPR bool is_one_of(CharT c, basic_string_view str);
};
template <typename CharT, typename Traits>
constexpr typename bpstd::basic_string_view<CharT,Traits>::size_type
basic_string_view<CharT,Traits>::npos;
//----------------------------------------------------------------------------
// Public Functions
//----------------------------------------------------------------------------
/// \brief Overload for ostream output of basic_string_view
///
/// \param o The output stream to print to
/// \param str the string to print
/// \return reference to the output stream
template <typename CharT, typename Traits>
std::basic_ostream<CharT,Traits>& operator<<(std::basic_ostream<CharT,Traits>& o,
const basic_string_view<CharT,Traits>& str);
template <typename CharT, typename Traits>
void swap(basic_string_view<CharT,Traits>& lhs,
basic_string_view<CharT,Traits>& rhs) noexcept;
//----------------------------------------------------------------------------
// Comparison Functions
//----------------------------------------------------------------------------
template <typename CharT, typename Traits>
BPSTD_CPP14_CONSTEXPR bool
operator==(const basic_string_view<CharT,Traits>& lhs,
const basic_string_view<CharT,Traits>& rhs) noexcept;
template <typename CharT, typename Traits>
BPSTD_CPP14_CONSTEXPR bool
operator!=(const basic_string_view<CharT,Traits>& lhs,
const basic_string_view<CharT,Traits>& rhs) noexcept;
template <typename CharT, typename Traits>
BPSTD_CPP14_CONSTEXPR bool
operator<(const basic_string_view<CharT,Traits>& lhs,
const basic_string_view<CharT,Traits>& rhs) noexcept;
template <typename CharT, typename Traits>
BPSTD_CPP14_CONSTEXPR bool
operator>(const basic_string_view<CharT,Traits>& lhs,
const basic_string_view<CharT,Traits>& rhs) noexcept;
template <typename CharT, typename Traits>
BPSTD_CPP14_CONSTEXPR bool
operator<=(const basic_string_view<CharT,Traits>& lhs,
const basic_string_view<CharT,Traits>& rhs) noexcept;
template <typename CharT, typename Traits>
BPSTD_CPP14_CONSTEXPR bool
operator>=(const basic_string_view<CharT,Traits>& lhs,
const basic_string_view<CharT,Traits>& rhs) noexcept;
//----------------------------------------------------------------------------
// Type Aliases
//----------------------------------------------------------------------------
using string_view = basic_string_view<char>;
using wstring_view = basic_string_view<wchar_t>;
using u16string_view = basic_string_view<char16_t>;
using u32string_view = basic_string_view<char32_t>;
} // namespace bpstd
//==============================================================================
// definition : class : basic_string_view
//==============================================================================
//------------------------------------------------------------------------------
// Constructor
//------------------------------------------------------------------------------
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY constexpr
bpstd::basic_string_view<CharT,Traits>::basic_string_view()
noexcept
: m_str{nullptr},
m_size{0}
{
}
template <typename CharT, typename Traits>
template <typename Allocator>
inline BPSTD_INLINE_VISIBILITY
bpstd::basic_string_view<CharT,Traits>
::basic_string_view(const std::basic_string<CharT,Traits,Allocator>& str)
noexcept
: m_str{str.c_str()},
m_size{str.size()}
{
}
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY constexpr
bpstd::basic_string_view<CharT,Traits>
::basic_string_view(const char_type* str)
noexcept
: m_str{str},
m_size{traits_type::length(str)}
{
}
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY constexpr
bpstd::basic_string_view<CharT,Traits>
::basic_string_view(const char_type* str, size_type count)
noexcept
: m_str{str},
m_size{count}
{
}
//------------------------------------------------------------------------------
// Capacity
//------------------------------------------------------------------------------
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY constexpr
typename bpstd::basic_string_view<CharT,Traits>::size_type
bpstd::basic_string_view<CharT,Traits>::size()
const noexcept
{
return m_size;
}
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY constexpr
typename bpstd::basic_string_view<CharT,Traits>::size_type
bpstd::basic_string_view<CharT,Traits>::length()
const noexcept
{
return size();
}
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY constexpr
typename bpstd::basic_string_view<CharT,Traits>::size_type
bpstd::basic_string_view<CharT,Traits>::max_size()
const noexcept
{
return npos - 1;
}
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY constexpr
bool bpstd::basic_string_view<CharT,Traits>::empty()
const noexcept
{
return m_size == 0u;
}
//------------------------------------------------------------------------------
// Element Access
//------------------------------------------------------------------------------
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY constexpr
const typename bpstd::basic_string_view<CharT,Traits>::char_type*
bpstd::basic_string_view<CharT,Traits>::data()
const noexcept
{
return m_str;
}
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY constexpr
typename bpstd::basic_string_view<CharT,Traits>::const_reference
bpstd::basic_string_view<CharT,Traits>::operator[](size_type pos)
const noexcept
{
return m_str[pos];
}
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY constexpr
typename bpstd::basic_string_view<CharT,Traits>::const_reference
bpstd::basic_string_view<CharT,Traits>::at(size_type pos)
const
{
return (pos < m_size)
? m_str[pos]
: (throw std::out_of_range{"Input out of range in basic_string_view::at"}), m_str[pos];
}
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY constexpr
typename bpstd::basic_string_view<CharT,Traits>::const_reference
bpstd::basic_string_view<CharT,Traits>::front()
const noexcept
{
return *m_str;
}
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY constexpr
typename bpstd::basic_string_view<CharT,Traits>::const_reference
bpstd::basic_string_view<CharT,Traits>::back()
const noexcept
{
return m_str[m_size-1];
}
//------------------------------------------------------------------------------
// Modifiers
//------------------------------------------------------------------------------
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY BPSTD_CPP14_CONSTEXPR
void bpstd::basic_string_view<CharT,Traits>::remove_prefix(size_type n)
noexcept
{
m_str += n, m_size -= n;
}
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY BPSTD_CPP14_CONSTEXPR
void bpstd::basic_string_view<CharT,Traits>::remove_suffix(size_type n)
noexcept
{
m_size -= n;
}
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY BPSTD_CPP14_CONSTEXPR
void bpstd::basic_string_view<CharT,Traits>::swap(basic_string_view& v)
noexcept
{
using std::swap;
swap(m_size,v.m_size);
swap(m_str,v.m_str);
}
//------------------------------------------------------------------------------
// Conversions
//------------------------------------------------------------------------------
template <typename CharT, typename Traits>
template <class Allocator>
inline BPSTD_INLINE_VISIBILITY constexpr
bpstd::basic_string_view<CharT,Traits>::operator
std::basic_string<CharT, Traits, Allocator>()
const
{
return std::basic_string<CharT,Traits,Allocator>(m_str, m_size);
}
//------------------------------------------------------------------------------
// String Operations
//------------------------------------------------------------------------------
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY BPSTD_CPP14_CONSTEXPR
typename bpstd::basic_string_view<CharT,Traits>::size_type
bpstd::basic_string_view<CharT,Traits>::copy(char_type* dest,
size_type count,
size_type pos)
const
{
if(pos >= m_size) {
throw std::out_of_range("Index out of range in basic_string_view::copy");
}
const size_type rcount = std::min(m_size - pos,count+1);
std::copy( m_str + pos, m_str + pos + rcount, dest);
return rcount;
}
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY BPSTD_CPP14_CONSTEXPR
bpstd::basic_string_view<CharT,Traits>
bpstd::basic_string_view<CharT,Traits>::substr(size_type pos,
size_type len)
const
{
const size_type max_length = pos > m_size ? 0 : m_size - pos;
if (pos > size()) {
throw std::out_of_range("Index out of range in basic_string_view::substr");
}
return basic_string_view(m_str + pos, std::min(len, max_length) );
}
//------------------------------------------------------------------------------
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY BPSTD_CPP14_CONSTEXPR
int
bpstd::basic_string_view<CharT,Traits>::compare(basic_string_view v)
const noexcept
{
const size_type rlen = std::min(m_size,v.m_size);
const int compare = Traits::compare(m_str,v.m_str,rlen);
if (compare != 0) {
return compare;
}
if (m_size < v.m_size) {
return -1;
}
if (m_size > v.m_size) {
return 1;
}
return 0;
}
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY BPSTD_CPP14_CONSTEXPR
int
bpstd::basic_string_view<CharT,Traits>::compare(size_type pos,
size_type count,
basic_string_view v)
const
{
return substr(pos,count).compare(v);
}
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY BPSTD_CPP14_CONSTEXPR
int
bpstd::basic_string_view<CharT,Traits>::compare(size_type pos1,
size_type count1,
basic_string_view v,
size_type pos2,
size_type count2)
const
{
return substr(pos1,count1).compare(v.substr(pos2,count2));
}
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY BPSTD_CPP14_CONSTEXPR
int
bpstd::basic_string_view<CharT,Traits>::compare(const char_type* s)
const
{
return compare(basic_string_view<CharT,Traits>(s));
}
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY BPSTD_CPP14_CONSTEXPR
int
bpstd::basic_string_view<CharT,Traits>::compare(size_type pos,
size_type count,
const char_type* s)
const
{
return substr(pos, count).compare(basic_string_view<CharT,Traits>(s));
}
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY BPSTD_CPP14_CONSTEXPR
int
bpstd::basic_string_view<CharT,Traits>::compare(size_type pos,
size_type count1,
const char_type* s,
size_type count2)
const
{
return substr(pos, count1).compare(basic_string_view<CharT,Traits>(s, count2));
}
//------------------------------------------------------------------------------
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY BPSTD_CPP14_CONSTEXPR
typename bpstd::basic_string_view<CharT,Traits>::size_type
bpstd::basic_string_view<CharT,Traits>::find(basic_string_view v,
size_type pos)
const
{
// Can't find a substring if the substring is bigger than this
if (pos > size()) {
return npos;
}
if ((pos + v.size()) > size()) {
return npos;
}
const auto offset = pos;
const auto increments = size() - v.size();
for (auto i = 0u; i <= increments; ++i) {
const auto j = i + offset;
if (substr(j, v.size()) == v) {
return j;
}
}
return npos;
}
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY BPSTD_CPP14_CONSTEXPR
typename bpstd::basic_string_view<CharT,Traits>::size_type
bpstd::basic_string_view<CharT,Traits>::find(char_type c,
size_type pos)
const
{
return find(basic_string_view<CharT,Traits>(&c, 1), pos);
}
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY BPSTD_CPP14_CONSTEXPR
typename bpstd::basic_string_view<CharT,Traits>::size_type
bpstd::basic_string_view<CharT,Traits>::find(const char_type* s, size_type pos,
size_type count)
const
{
return find(basic_string_view<CharT,Traits>(s, count), pos);
}
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY BPSTD_CPP14_CONSTEXPR
typename bpstd::basic_string_view<CharT,Traits>::size_type
bpstd::basic_string_view<CharT,Traits>::find(const char_type* s,
size_type pos)
const
{
return find(basic_string_view<CharT,Traits>(s), pos);
}
//------------------------------------------------------------------------------
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY BPSTD_CPP14_CONSTEXPR
typename bpstd::basic_string_view<CharT,Traits>::size_type
bpstd::basic_string_view<CharT,Traits>::rfind(basic_string_view v,
size_type pos)
const
{
if (empty()) {
return v.empty() ? 0u : npos;
}
if (v.empty()) {
return std::min(size() - 1, pos);
}
if (v.size() > size()) {
return npos;
}
auto i = std::min(pos, (size() - v.size()));
while (i != npos) {
if (substr(i, v.size()) == v) {
return i;
}
--i;
}
return npos;
}
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY BPSTD_CPP14_CONSTEXPR
typename bpstd::basic_string_view<CharT,Traits>::size_type
bpstd::basic_string_view<CharT,Traits>::rfind(char_type c,
size_type pos)
const
{
return rfind(basic_string_view<CharT,Traits>(&c, 1), pos);
}
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY BPSTD_CPP14_CONSTEXPR
typename bpstd::basic_string_view<CharT,Traits>::size_type
bpstd::basic_string_view<CharT,Traits>::rfind(const char_type* s,
size_type pos,
size_type count)
const
{
return rfind(basic_string_view<CharT,Traits>(s, count), pos);
}
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY BPSTD_CPP14_CONSTEXPR
typename bpstd::basic_string_view<CharT,Traits>::size_type
bpstd::basic_string_view<CharT,Traits>::rfind(const char_type* s,
size_type pos)
const
{
return rfind(basic_string_view<CharT,Traits>(s), pos);
}
//------------------------------------------------------------------------------
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY BPSTD_CPP14_CONSTEXPR
typename bpstd::basic_string_view<CharT,Traits>::size_type
bpstd::basic_string_view<CharT,Traits>::find_first_of(basic_string_view v,
size_type pos)
const
{
const auto max_index = size();
for (auto i = pos; i < max_index; ++i) {
if (is_one_of(m_str[i],v)) {
return i;
}
}
return npos;
}
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY BPSTD_CPP14_CONSTEXPR
typename bpstd::basic_string_view<CharT,Traits>::size_type
bpstd::basic_string_view<CharT,Traits>::find_first_of(char_type c,
size_type pos)
const
{
return find_first_of(basic_string_view<CharT,Traits>(&c, 1), pos);
}
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY BPSTD_CPP14_CONSTEXPR
typename bpstd::basic_string_view<CharT,Traits>::size_type
bpstd::basic_string_view<CharT,Traits>::find_first_of(const char_type* s,
size_type pos,
size_type count)
const
{
return find_first_of(basic_string_view<CharT,Traits>(s, count), pos);
}
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY BPSTD_CPP14_CONSTEXPR
typename bpstd::basic_string_view<CharT,Traits>::size_type
bpstd::basic_string_view<CharT,Traits>::find_first_of(const char_type* s,
size_type pos)
const
{
return find_first_of(basic_string_view<CharT,Traits>(s), pos);
}
//------------------------------------------------------------------------------
template <typename CharT, typename Traits>
inline BPSTD_INLINE_VISIBILITY BPSTD_CPP14_CONSTEXPR
typename bpstd::basic_string_view<CharT,Traits>::size_type
bpstd::basic_string_view<CharT,Traits>::find_last_of(basic_string_view v,
size_type pos)
const
{
if (empty()) {
return npos;
}
const auto max_index = std::min(size() - 1, pos);
for (auto i = 0u; i <= max_index; ++i) {
const auto j = max_index - i;