blob: 3d14e0e62ca9618d2caac919457e4b9eae792c93 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001// -*- C++ -*-
2//===--------------------------- string -----------------------------------===//
3//
Howard Hinnantf5256e12010-05-11 21:36:01 +00004// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005//
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
12#define _LIBCPP_STRING
13
14/*
15 string synopsis
16
17namespace std
18{
19
20template <class stateT>
21class fpos
22{
23private:
24 stateT st;
25public:
26 fpos(streamoff = streamoff());
27
28 operator streamoff() const;
29
30 stateT state() const;
31 void state(stateT);
32
33 fpos& operator+=(streamoff);
34 fpos operator+ (streamoff) const;
35 fpos& operator-=(streamoff);
36 fpos operator- (streamoff) const;
37};
38
39template <class stateT> streamoff operator-(const fpos<stateT>& x, const fpos<stateT>& y);
40
41template <class stateT> bool operator==(const fpos<stateT>& x, const fpos<stateT>& y);
42template <class stateT> bool operator!=(const fpos<stateT>& x, const fpos<stateT>& y);
43
44template <class charT>
45struct char_traits
46{
47 typedef charT char_type;
48 typedef ... int_type;
49 typedef streamoff off_type;
50 typedef streampos pos_type;
51 typedef mbstate_t state_type;
52
Howard Hinnanta6119a82011-05-29 19:57:12 +000053 static void assign(char_type& c1, const char_type& c2) noexcept;
Howard Hinnant03d71812012-07-20 19:09:12 +000054 static constexpr bool eq(char_type c1, char_type c2) noexcept;
55 static constexpr bool lt(char_type c1, char_type c2) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000056
57 static int compare(const char_type* s1, const char_type* s2, size_t n);
58 static size_t length(const char_type* s);
59 static const char_type* find(const char_type* s, size_t n, const char_type& a);
60 static char_type* move(char_type* s1, const char_type* s2, size_t n);
61 static char_type* copy(char_type* s1, const char_type* s2, size_t n);
62 static char_type* assign(char_type* s, size_t n, char_type a);
63
Howard Hinnant03d71812012-07-20 19:09:12 +000064 static constexpr int_type not_eof(int_type c) noexcept;
65 static constexpr char_type to_char_type(int_type c) noexcept;
66 static constexpr int_type to_int_type(char_type c) noexcept;
67 static constexpr bool eq_int_type(int_type c1, int_type c2) noexcept;
68 static constexpr int_type eof() noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000069};
70
71template <> struct char_traits<char>;
72template <> struct char_traits<wchar_t>;
73
Howard Hinnant324bb032010-08-22 00:02:43 +000074template<class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000075class basic_string
76{
Howard Hinnant324bb032010-08-22 00:02:43 +000077public:
78// types:
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000079 typedef traits traits_type;
80 typedef typename traits_type::char_type value_type;
81 typedef Allocator allocator_type;
82 typedef typename allocator_type::size_type size_type;
83 typedef typename allocator_type::difference_type difference_type;
84 typedef typename allocator_type::reference reference;
85 typedef typename allocator_type::const_reference const_reference;
86 typedef typename allocator_type::pointer pointer;
87 typedef typename allocator_type::const_pointer const_pointer;
88 typedef implementation-defined iterator;
89 typedef implementation-defined const_iterator;
90 typedef std::reverse_iterator<iterator> reverse_iterator;
91 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
92
93 static const size_type npos = -1;
94
Howard Hinnant53f7d4c2011-06-03 18:40:47 +000095 basic_string()
96 noexcept(is_nothrow_default_constructible<allocator_type>::value);
97 explicit basic_string(const allocator_type& a);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000098 basic_string(const basic_string& str);
Howard Hinnant53f7d4c2011-06-03 18:40:47 +000099 basic_string(basic_string&& str)
100 noexcept(is_nothrow_move_constructible<allocator_type>::value);
Marshall Clowf4f7d8f2016-04-07 18:13:41 +0000101 basic_string(const basic_string& str, size_type pos,
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000102 const allocator_type& a = allocator_type());
Marshall Clowf4f7d8f2016-04-07 18:13:41 +0000103 basic_string(const basic_string& str, size_type pos, size_type n,
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000104 const Allocator& a = Allocator());
Marshall Clowdb7fa112016-11-14 18:22:19 +0000105 template<class T>
106 basic_string(const T& t, size_type pos, size_type n, const Allocator& a = Allocator()); // C++17
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000107 explicit basic_string(const basic_string_view<charT, traits> sv, const Allocator& a = Allocator());
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000108 basic_string(const value_type* s, const allocator_type& a = allocator_type());
109 basic_string(const value_type* s, size_type n, const allocator_type& a = allocator_type());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000110 basic_string(size_type n, value_type c, const allocator_type& a = allocator_type());
111 template<class InputIterator>
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000112 basic_string(InputIterator begin, InputIterator end,
113 const allocator_type& a = allocator_type());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000114 basic_string(initializer_list<value_type>, const Allocator& = Allocator());
115 basic_string(const basic_string&, const Allocator&);
116 basic_string(basic_string&&, const Allocator&);
117
118 ~basic_string();
119
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000120 operator basic_string_view<charT, traits>() const noexcept;
121
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000122 basic_string& operator=(const basic_string& str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000123 basic_string& operator=(basic_string_view<charT, traits> sv);
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000124 basic_string& operator=(basic_string&& str)
125 noexcept(
Marshall Clowaf961ed2015-08-18 18:57:00 +0000126 allocator_type::propagate_on_container_move_assignment::value ||
127 allocator_type::is_always_equal::value ); // C++17
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000128 basic_string& operator=(const value_type* s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000129 basic_string& operator=(value_type c);
130 basic_string& operator=(initializer_list<value_type>);
131
Howard Hinnanta6119a82011-05-29 19:57:12 +0000132 iterator begin() noexcept;
133 const_iterator begin() const noexcept;
134 iterator end() noexcept;
135 const_iterator end() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000136
Howard Hinnanta6119a82011-05-29 19:57:12 +0000137 reverse_iterator rbegin() noexcept;
138 const_reverse_iterator rbegin() const noexcept;
139 reverse_iterator rend() noexcept;
140 const_reverse_iterator rend() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000141
Howard Hinnanta6119a82011-05-29 19:57:12 +0000142 const_iterator cbegin() const noexcept;
143 const_iterator cend() const noexcept;
144 const_reverse_iterator crbegin() const noexcept;
145 const_reverse_iterator crend() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000146
Howard Hinnanta6119a82011-05-29 19:57:12 +0000147 size_type size() const noexcept;
148 size_type length() const noexcept;
149 size_type max_size() const noexcept;
150 size_type capacity() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000151
152 void resize(size_type n, value_type c);
153 void resize(size_type n);
154
155 void reserve(size_type res_arg = 0);
156 void shrink_to_fit();
Howard Hinnanta6119a82011-05-29 19:57:12 +0000157 void clear() noexcept;
158 bool empty() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000159
160 const_reference operator[](size_type pos) const;
161 reference operator[](size_type pos);
162
163 const_reference at(size_type n) const;
164 reference at(size_type n);
165
166 basic_string& operator+=(const basic_string& str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000167 basic_string& operator+=(basic_string_view<charT, traits> sv);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000168 basic_string& operator+=(const value_type* s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000169 basic_string& operator+=(value_type c);
170 basic_string& operator+=(initializer_list<value_type>);
171
172 basic_string& append(const basic_string& str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000173 basic_string& append(basic_string_view<charT, traits> sv);
Marshall Clowa93b5e22014-03-04 19:17:19 +0000174 basic_string& append(const basic_string& str, size_type pos, size_type n=npos); //C++14
Marshall Clow6ac8de02016-09-24 22:45:42 +0000175 template <class T>
176 basic_string& append(const T& t, size_type pos, size_type n=npos); // C++17
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000177 basic_string& append(const value_type* s, size_type n);
178 basic_string& append(const value_type* s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000179 basic_string& append(size_type n, value_type c);
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000180 template<class InputIterator>
181 basic_string& append(InputIterator first, InputIterator last);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000182 basic_string& append(initializer_list<value_type>);
183
184 void push_back(value_type c);
185 void pop_back();
186 reference front();
187 const_reference front() const;
188 reference back();
189 const_reference back() const;
190
191 basic_string& assign(const basic_string& str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000192 basic_string& assign(basic_string_view<charT, traits> sv);
Howard Hinnanta6119a82011-05-29 19:57:12 +0000193 basic_string& assign(basic_string&& str);
Marshall Clowa93b5e22014-03-04 19:17:19 +0000194 basic_string& assign(const basic_string& str, size_type pos, size_type n=npos); // C++14
Marshall Clow6ac8de02016-09-24 22:45:42 +0000195 template <class T>
196 basic_string& assign(const T& t, size_type pos, size_type n=npos); // C++17
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000197 basic_string& assign(const value_type* s, size_type n);
198 basic_string& assign(const value_type* s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000199 basic_string& assign(size_type n, value_type c);
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000200 template<class InputIterator>
201 basic_string& assign(InputIterator first, InputIterator last);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000202 basic_string& assign(initializer_list<value_type>);
203
204 basic_string& insert(size_type pos1, const basic_string& str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000205 basic_string& insert(size_type pos1, basic_string_view<charT, traits> sv);
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000206 basic_string& insert(size_type pos1, const basic_string& str,
207 size_type pos2, size_type n);
Marshall Clow6ac8de02016-09-24 22:45:42 +0000208 template <class T>
209 basic_string& insert(size_type pos1, const T& t, size_type pos2, size_type n); // C++17
Marshall Clowa93b5e22014-03-04 19:17:19 +0000210 basic_string& insert(size_type pos, const value_type* s, size_type n=npos); //C++14
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000211 basic_string& insert(size_type pos, const value_type* s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000212 basic_string& insert(size_type pos, size_type n, value_type c);
213 iterator insert(const_iterator p, value_type c);
214 iterator insert(const_iterator p, size_type n, value_type c);
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000215 template<class InputIterator>
216 iterator insert(const_iterator p, InputIterator first, InputIterator last);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000217 iterator insert(const_iterator p, initializer_list<value_type>);
218
219 basic_string& erase(size_type pos = 0, size_type n = npos);
220 iterator erase(const_iterator position);
221 iterator erase(const_iterator first, const_iterator last);
222
223 basic_string& replace(size_type pos1, size_type n1, const basic_string& str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000224 basic_string& replace(size_type pos1, size_type n1, basic_string_view<charT, traits> sv);
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000225 basic_string& replace(size_type pos1, size_type n1, const basic_string& str,
Marshall Clowa93b5e22014-03-04 19:17:19 +0000226 size_type pos2, size_type n2=npos); // C++14
Marshall Clow6ac8de02016-09-24 22:45:42 +0000227 template <class T>
228 basic_string& replace(size_type pos1, size_type n1, const T& t,
229 size_type pos2, size_type n); // C++17
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000230 basic_string& replace(size_type pos, size_type n1, const value_type* s, size_type n2);
231 basic_string& replace(size_type pos, size_type n1, const value_type* s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000232 basic_string& replace(size_type pos, size_type n1, size_type n2, value_type c);
Howard Hinnant7b2cb482010-11-17 21:11:40 +0000233 basic_string& replace(const_iterator i1, const_iterator i2, const basic_string& str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000234 basic_string& replace(const_iterator i1, const_iterator i2, basic_string_view<charT, traits> sv);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000235 basic_string& replace(const_iterator i1, const_iterator i2, const value_type* s, size_type n);
236 basic_string& replace(const_iterator i1, const_iterator i2, const value_type* s);
Howard Hinnant7b2cb482010-11-17 21:11:40 +0000237 basic_string& replace(const_iterator i1, const_iterator i2, size_type n, value_type c);
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000238 template<class InputIterator>
Howard Hinnant7b2cb482010-11-17 21:11:40 +0000239 basic_string& replace(const_iterator i1, const_iterator i2, InputIterator j1, InputIterator j2);
240 basic_string& replace(const_iterator i1, const_iterator i2, initializer_list<value_type>);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000241
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000242 size_type copy(value_type* s, size_type n, size_type pos = 0) const;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000243 basic_string substr(size_type pos = 0, size_type n = npos) const;
244
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000245 void swap(basic_string& str)
Marshall Clow7d914d12015-07-13 20:04:56 +0000246 noexcept(allocator_traits<allocator_type>::propagate_on_container_swap::value ||
247 allocator_traits<allocator_type>::is_always_equal::value); // C++17
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000248
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000249 const value_type* c_str() const noexcept;
250 const value_type* data() const noexcept;
Marshall Clowf532a702016-03-08 15:44:30 +0000251 value_type* data() noexcept; // C++17
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000252
Howard Hinnanta6119a82011-05-29 19:57:12 +0000253 allocator_type get_allocator() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000254
Howard Hinnanta6119a82011-05-29 19:57:12 +0000255 size_type find(const basic_string& str, size_type pos = 0) const noexcept;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000256 size_type find(basic_string_view<charT, traits> sv, size_type pos = 0) const noexcept;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000257 size_type find(const value_type* s, size_type pos, size_type n) const noexcept;
258 size_type find(const value_type* s, size_type pos = 0) const noexcept;
Howard Hinnanta6119a82011-05-29 19:57:12 +0000259 size_type find(value_type c, size_type pos = 0) const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000260
Howard Hinnanta6119a82011-05-29 19:57:12 +0000261 size_type rfind(const basic_string& str, size_type pos = npos) const noexcept;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000262 size_type ffind(basic_string_view<charT, traits> sv, size_type pos = 0) const noexcept;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000263 size_type rfind(const value_type* s, size_type pos, size_type n) const noexcept;
264 size_type rfind(const value_type* s, size_type pos = npos) const noexcept;
Howard Hinnanta6119a82011-05-29 19:57:12 +0000265 size_type rfind(value_type c, size_type pos = npos) const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000266
Howard Hinnanta6119a82011-05-29 19:57:12 +0000267 size_type find_first_of(const basic_string& str, size_type pos = 0) const noexcept;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000268 size_type find_first_of(basic_string_view<charT, traits> sv, size_type pos = 0) const noexcept;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000269 size_type find_first_of(const value_type* s, size_type pos, size_type n) const noexcept;
270 size_type find_first_of(const value_type* s, size_type pos = 0) const noexcept;
Howard Hinnanta6119a82011-05-29 19:57:12 +0000271 size_type find_first_of(value_type c, size_type pos = 0) const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000272
Howard Hinnanta6119a82011-05-29 19:57:12 +0000273 size_type find_last_of(const basic_string& str, size_type pos = npos) const noexcept;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000274 size_type find_last_of(basic_string_view<charT, traits> sv, size_type pos = 0) const noexcept;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000275 size_type find_last_of(const value_type* s, size_type pos, size_type n) const noexcept;
276 size_type find_last_of(const value_type* s, size_type pos = npos) const noexcept;
Howard Hinnanta6119a82011-05-29 19:57:12 +0000277 size_type find_last_of(value_type c, size_type pos = npos) const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000278
Howard Hinnanta6119a82011-05-29 19:57:12 +0000279 size_type find_first_not_of(const basic_string& str, size_type pos = 0) const noexcept;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000280 size_type find_first_not_of(basic_string_view<charT, traits> sv, size_type pos = 0) const noexcept;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000281 size_type find_first_not_of(const value_type* s, size_type pos, size_type n) const noexcept;
282 size_type find_first_not_of(const value_type* s, size_type pos = 0) const noexcept;
Howard Hinnanta6119a82011-05-29 19:57:12 +0000283 size_type find_first_not_of(value_type c, size_type pos = 0) const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000284
Howard Hinnanta6119a82011-05-29 19:57:12 +0000285 size_type find_last_not_of(const basic_string& str, size_type pos = npos) const noexcept;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000286 size_type find_last_not_of(basic_string_view<charT, traits> sv, size_type pos = 0) const noexcept;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000287 size_type find_last_not_of(const value_type* s, size_type pos, size_type n) const noexcept;
288 size_type find_last_not_of(const value_type* s, size_type pos = npos) const noexcept;
Howard Hinnanta6119a82011-05-29 19:57:12 +0000289 size_type find_last_not_of(value_type c, size_type pos = npos) const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000290
Howard Hinnanta6119a82011-05-29 19:57:12 +0000291 int compare(const basic_string& str) const noexcept;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000292 int compare(basic_string_view<charT, traits> sv) const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000293 int compare(size_type pos1, size_type n1, const basic_string& str) const;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000294 int compare(size_type pos1, size_type n1, basic_string_view<charT, traits> sv) const;
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000295 int compare(size_type pos1, size_type n1, const basic_string& str,
Marshall Clowa93b5e22014-03-04 19:17:19 +0000296 size_type pos2, size_type n2=npos) const; // C++14
Marshall Clow6ac8de02016-09-24 22:45:42 +0000297 template <class T>
298 int compare(size_type pos1, size_type n1, const T& t,
299 size_type pos2, size_type n2=npos) const; // C++17
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000300 int compare(const value_type* s) const noexcept;
301 int compare(size_type pos1, size_type n1, const value_type* s) const;
302 int compare(size_type pos1, size_type n1, const value_type* s, size_type n2) const;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000303
304 bool __invariants() const;
305};
306
307template<class charT, class traits, class Allocator>
308basic_string<charT, traits, Allocator>
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000309operator+(const basic_string<charT, traits, Allocator>& lhs,
310 const basic_string<charT, traits, Allocator>& rhs);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000311
312template<class charT, class traits, class Allocator>
313basic_string<charT, traits, Allocator>
314operator+(const charT* lhs , const basic_string<charT,traits,Allocator>&rhs);
315
316template<class charT, class traits, class Allocator>
317basic_string<charT, traits, Allocator>
318operator+(charT lhs, const basic_string<charT,traits,Allocator>& rhs);
319
320template<class charT, class traits, class Allocator>
321basic_string<charT, traits, Allocator>
322operator+(const basic_string<charT, traits, Allocator>& lhs, const charT* rhs);
323
324template<class charT, class traits, class Allocator>
325basic_string<charT, traits, Allocator>
326operator+(const basic_string<charT, traits, Allocator>& lhs, charT rhs);
327
328template<class charT, class traits, class Allocator>
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000329bool operator==(const basic_string<charT, traits, Allocator>& lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +0000330 const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000331
332template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000333bool operator==(const charT* lhs, const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000334
335template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000336bool operator==(const basic_string<charT,traits,Allocator>& lhs, const charT* rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000337
Howard Hinnant324bb032010-08-22 00:02:43 +0000338template<class charT, class traits, class Allocator>
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000339bool operator!=(const basic_string<charT,traits,Allocator>& lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +0000340 const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000341
342template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000343bool operator!=(const charT* lhs, const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000344
345template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000346bool operator!=(const basic_string<charT, traits, Allocator>& lhs, const charT* rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000347
348template<class charT, class traits, class Allocator>
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000349bool operator< (const basic_string<charT, traits, Allocator>& lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +0000350 const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000351
352template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000353bool operator< (const basic_string<charT, traits, Allocator>& lhs, const charT* rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000354
355template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000356bool operator< (const charT* lhs, const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000357
358template<class charT, class traits, class Allocator>
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000359bool operator> (const basic_string<charT, traits, Allocator>& lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +0000360 const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000361
362template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000363bool operator> (const basic_string<charT, traits, Allocator>& lhs, const charT* rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000364
365template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000366bool operator> (const charT* lhs, const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000367
368template<class charT, class traits, class Allocator>
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000369bool operator<=(const basic_string<charT, traits, Allocator>& lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +0000370 const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000371
372template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000373bool operator<=(const basic_string<charT, traits, Allocator>& lhs, const charT* rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000374
375template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000376bool operator<=(const charT* lhs, const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000377
378template<class charT, class traits, class Allocator>
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000379bool operator>=(const basic_string<charT, traits, Allocator>& lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +0000380 const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000381
382template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000383bool operator>=(const basic_string<charT, traits, Allocator>& lhs, const charT* rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000384
385template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000386bool operator>=(const charT* lhs, const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000387
388template<class charT, class traits, class Allocator>
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000389void swap(basic_string<charT, traits, Allocator>& lhs,
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000390 basic_string<charT, traits, Allocator>& rhs)
391 noexcept(noexcept(lhs.swap(rhs)));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000392
393template<class charT, class traits, class Allocator>
394basic_istream<charT, traits>&
395operator>>(basic_istream<charT, traits>& is, basic_string<charT, traits, Allocator>& str);
396
397template<class charT, class traits, class Allocator>
398basic_ostream<charT, traits>&
399operator<<(basic_ostream<charT, traits>& os, const basic_string<charT, traits, Allocator>& str);
400
401template<class charT, class traits, class Allocator>
Howard Hinnant324bb032010-08-22 00:02:43 +0000402basic_istream<charT, traits>&
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000403getline(basic_istream<charT, traits>& is, basic_string<charT, traits, Allocator>& str,
404 charT delim);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000405
406template<class charT, class traits, class Allocator>
407basic_istream<charT, traits>&
408getline(basic_istream<charT, traits>& is, basic_string<charT, traits, Allocator>& str);
409
410typedef basic_string<char> string;
411typedef basic_string<wchar_t> wstring;
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000412typedef basic_string<char16_t> u16string;
413typedef basic_string<char32_t> u32string;
414
415int stoi (const string& str, size_t* idx = 0, int base = 10);
416long stol (const string& str, size_t* idx = 0, int base = 10);
417unsigned long stoul (const string& str, size_t* idx = 0, int base = 10);
418long long stoll (const string& str, size_t* idx = 0, int base = 10);
419unsigned long long stoull(const string& str, size_t* idx = 0, int base = 10);
420
421float stof (const string& str, size_t* idx = 0);
422double stod (const string& str, size_t* idx = 0);
423long double stold(const string& str, size_t* idx = 0);
424
425string to_string(int val);
426string to_string(unsigned val);
427string to_string(long val);
428string to_string(unsigned long val);
429string to_string(long long val);
430string to_string(unsigned long long val);
431string to_string(float val);
432string to_string(double val);
433string to_string(long double val);
434
435int stoi (const wstring& str, size_t* idx = 0, int base = 10);
436long stol (const wstring& str, size_t* idx = 0, int base = 10);
437unsigned long stoul (const wstring& str, size_t* idx = 0, int base = 10);
438long long stoll (const wstring& str, size_t* idx = 0, int base = 10);
439unsigned long long stoull(const wstring& str, size_t* idx = 0, int base = 10);
440
441float stof (const wstring& str, size_t* idx = 0);
442double stod (const wstring& str, size_t* idx = 0);
443long double stold(const wstring& str, size_t* idx = 0);
444
445wstring to_wstring(int val);
446wstring to_wstring(unsigned val);
447wstring to_wstring(long val);
448wstring to_wstring(unsigned long val);
449wstring to_wstring(long long val);
450wstring to_wstring(unsigned long long val);
451wstring to_wstring(float val);
452wstring to_wstring(double val);
453wstring to_wstring(long double val);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000454
455template <> struct hash<string>;
456template <> struct hash<u16string>;
457template <> struct hash<u32string>;
458template <> struct hash<wstring>;
459
Marshall Clow15234322013-07-23 17:05:24 +0000460basic_string<char> operator "" s( const char *str, size_t len ); // C++14
461basic_string<wchar_t> operator "" s( const wchar_t *str, size_t len ); // C++14
462basic_string<char16_t> operator "" s( const char16_t *str, size_t len ); // C++14
463basic_string<char32_t> operator "" s( const char32_t *str, size_t len ); // C++14
464
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000465} // std
466
467*/
468
469#include <__config>
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000470#include <string_view>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000471#include <iosfwd>
472#include <cstring>
Howard Hinnantadff4892010-05-24 17:49:41 +0000473#include <cstdio> // For EOF.
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000474#include <cwchar>
475#include <algorithm>
476#include <iterator>
477#include <utility>
478#include <memory>
479#include <stdexcept>
480#include <type_traits>
481#include <initializer_list>
482#include <__functional_base>
483#ifndef _LIBCPP_HAS_NO_UNICODE_CHARS
484#include <cstdint>
485#endif
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000486
Howard Hinnant66c6f972011-11-29 16:45:27 +0000487#include <__undef_min_max>
488
Eric Fiselierb9536102014-08-10 23:53:08 +0000489#include <__debug>
490
Howard Hinnant08e17472011-10-17 20:05:10 +0000491#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000492#pragma GCC system_header
Howard Hinnant08e17472011-10-17 20:05:10 +0000493#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000494
495_LIBCPP_BEGIN_NAMESPACE_STD
496
497// fpos
498
499template <class _StateT>
Eric Fiselierc3589a82017-01-04 23:56:00 +0000500class _LIBCPP_TEMPLATE_VIS fpos
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000501{
502private:
503 _StateT __st_;
504 streamoff __off_;
505public:
506 _LIBCPP_INLINE_VISIBILITY fpos(streamoff __off = streamoff()) : __st_(), __off_(__off) {}
507
508 _LIBCPP_INLINE_VISIBILITY operator streamoff() const {return __off_;}
509
510 _LIBCPP_INLINE_VISIBILITY _StateT state() const {return __st_;}
511 _LIBCPP_INLINE_VISIBILITY void state(_StateT __st) {__st_ = __st;}
512
513 _LIBCPP_INLINE_VISIBILITY fpos& operator+=(streamoff __off) {__off_ += __off; return *this;}
514 _LIBCPP_INLINE_VISIBILITY fpos operator+ (streamoff __off) const {fpos __t(*this); __t += __off; return __t;}
515 _LIBCPP_INLINE_VISIBILITY fpos& operator-=(streamoff __off) {__off_ -= __off; return *this;}
516 _LIBCPP_INLINE_VISIBILITY fpos operator- (streamoff __off) const {fpos __t(*this); __t -= __off; return __t;}
517};
518
519template <class _StateT>
520inline _LIBCPP_INLINE_VISIBILITY
521streamoff operator-(const fpos<_StateT>& __x, const fpos<_StateT>& __y)
522 {return streamoff(__x) - streamoff(__y);}
523
524template <class _StateT>
525inline _LIBCPP_INLINE_VISIBILITY
526bool operator==(const fpos<_StateT>& __x, const fpos<_StateT>& __y)
527 {return streamoff(__x) == streamoff(__y);}
528
529template <class _StateT>
530inline _LIBCPP_INLINE_VISIBILITY
531bool operator!=(const fpos<_StateT>& __x, const fpos<_StateT>& __y)
532 {return streamoff(__x) != streamoff(__y);}
533
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000534// basic_string
535
536template<class _CharT, class _Traits, class _Allocator>
537basic_string<_CharT, _Traits, _Allocator>
Howard Hinnant2b1b2d42011-06-14 19:58:17 +0000538operator+(const basic_string<_CharT, _Traits, _Allocator>& __x,
539 const basic_string<_CharT, _Traits, _Allocator>& __y);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000540
541template<class _CharT, class _Traits, class _Allocator>
542basic_string<_CharT, _Traits, _Allocator>
Howard Hinnant2b1b2d42011-06-14 19:58:17 +0000543operator+(const _CharT* __x, const basic_string<_CharT,_Traits,_Allocator>& __y);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000544
545template<class _CharT, class _Traits, class _Allocator>
546basic_string<_CharT, _Traits, _Allocator>
Howard Hinnant2b1b2d42011-06-14 19:58:17 +0000547operator+(_CharT __x, const basic_string<_CharT,_Traits,_Allocator>& __y);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000548
549template<class _CharT, class _Traits, class _Allocator>
550basic_string<_CharT, _Traits, _Allocator>
Howard Hinnant2b1b2d42011-06-14 19:58:17 +0000551operator+(const basic_string<_CharT, _Traits, _Allocator>& __x, const _CharT* __y);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000552
553template<class _CharT, class _Traits, class _Allocator>
554basic_string<_CharT, _Traits, _Allocator>
Howard Hinnant2b1b2d42011-06-14 19:58:17 +0000555operator+(const basic_string<_CharT, _Traits, _Allocator>& __x, _CharT __y);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000556
557template <bool>
Eric Fiselierc3589a82017-01-04 23:56:00 +0000558class _LIBCPP_TEMPLATE_VIS __basic_string_common
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000559{
560protected:
Marshall Clow14c09a22016-08-25 15:09:01 +0000561 _LIBCPP_NORETURN void __throw_length_error() const;
562 _LIBCPP_NORETURN void __throw_out_of_range() const;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000563};
564
565template <bool __b>
566void
567__basic_string_common<__b>::__throw_length_error() const
568{
Marshall Clow14c09a22016-08-25 15:09:01 +0000569 _VSTD::__throw_length_error("basic_string");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000570}
571
572template <bool __b>
573void
574__basic_string_common<__b>::__throw_out_of_range() const
575{
Marshall Clow14c09a22016-08-25 15:09:01 +0000576 _VSTD::__throw_out_of_range("basic_string");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000577}
578
Howard Hinnante9df0a52013-08-01 18:17:34 +0000579#ifdef _LIBCPP_MSVC
Howard Hinnant78b68282011-10-22 20:59:45 +0000580#pragma warning( push )
581#pragma warning( disable: 4231 )
Howard Hinnante9df0a52013-08-01 18:17:34 +0000582#endif // _LIBCPP_MSVC
Eric Fiselier833d6442016-09-15 22:27:07 +0000583_LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS __basic_string_common<true>)
Howard Hinnante9df0a52013-08-01 18:17:34 +0000584#ifdef _LIBCPP_MSVC
Howard Hinnant78b68282011-10-22 20:59:45 +0000585#pragma warning( pop )
Howard Hinnante9df0a52013-08-01 18:17:34 +0000586#endif // _LIBCPP_MSVC
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000587
Marshall Clowdf9db312016-01-13 21:54:34 +0000588#ifdef _LIBCPP_NO_EXCEPTIONS
589template <class _Iter>
590struct __libcpp_string_gets_noexcept_iterator_impl : public true_type {};
591#elif defined(_LIBCPP_HAS_NO_NOEXCEPT)
592template <class _Iter>
593struct __libcpp_string_gets_noexcept_iterator_impl : public false_type {};
594#else
595template <class _Iter, bool = __is_forward_iterator<_Iter>::value>
596struct __libcpp_string_gets_noexcept_iterator_impl : public _LIBCPP_BOOL_CONSTANT((
597 noexcept(++(declval<_Iter&>())) &&
598 is_nothrow_assignable<_Iter&, _Iter>::value &&
599 noexcept(declval<_Iter>() == declval<_Iter>()) &&
600 noexcept(*declval<_Iter>())
601)) {};
602
603template <class _Iter>
604struct __libcpp_string_gets_noexcept_iterator_impl<_Iter, false> : public false_type {};
605#endif
606
607
608template <class _Iter>
609struct __libcpp_string_gets_noexcept_iterator
610 : public _LIBCPP_BOOL_CONSTANT(__libcpp_is_trivial_iterator<_Iter>::value || __libcpp_string_gets_noexcept_iterator_impl<_Iter>::value) {};
611
Marshall Clow6ac8de02016-09-24 22:45:42 +0000612template <class _CharT, class _Traits, class _Tp>
613struct __can_be_converted_to_string_view : public _LIBCPP_BOOL_CONSTANT(
614 ( is_convertible<const _Tp&, basic_string_view<_CharT, _Traits> >::value &&
615 !is_convertible<const _Tp&, const _CharT*>::value)) {};
616
Evgeniy Stepanov4f01aa82015-10-13 23:48:28 +0000617#ifdef _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Howard Hinnant15467182013-04-30 21:44:48 +0000618
619template <class _CharT, size_t = sizeof(_CharT)>
620struct __padding
621{
622 unsigned char __xx[sizeof(_CharT)-1];
623};
624
625template <class _CharT>
626struct __padding<_CharT, 1>
627{
628};
629
Evgeniy Stepanov4f01aa82015-10-13 23:48:28 +0000630#endif // _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Howard Hinnant15467182013-04-30 21:44:48 +0000631
Howard Hinnant324bb032010-08-22 00:02:43 +0000632template<class _CharT, class _Traits, class _Allocator>
Eric Fiselierc3589a82017-01-04 23:56:00 +0000633class _LIBCPP_TEMPLATE_VIS basic_string
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000634 : private __basic_string_common<true>
635{
636public:
637 typedef basic_string __self;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000638 typedef basic_string_view<_CharT, _Traits> __self_view;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000639 typedef _Traits traits_type;
640 typedef typename traits_type::char_type value_type;
641 typedef _Allocator allocator_type;
Howard Hinnante32b5e22010-11-17 17:55:08 +0000642 typedef allocator_traits<allocator_type> __alloc_traits;
643 typedef typename __alloc_traits::size_type size_type;
644 typedef typename __alloc_traits::difference_type difference_type;
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000645 typedef value_type& reference;
646 typedef const value_type& const_reference;
Howard Hinnante32b5e22010-11-17 17:55:08 +0000647 typedef typename __alloc_traits::pointer pointer;
648 typedef typename __alloc_traits::const_pointer const_pointer;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000649
Howard Hinnant499cea12013-08-23 17:37:05 +0000650 static_assert(is_pod<value_type>::value, "Character type of basic_string must be a POD");
651 static_assert((is_same<_CharT, value_type>::value),
652 "traits_type::char_type must be the same type as CharT");
653 static_assert((is_same<typename allocator_type::value_type, value_type>::value),
654 "Allocator::value_type must be same type as value_type");
655#if defined(_LIBCPP_RAW_ITERATORS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000656 typedef pointer iterator;
657 typedef const_pointer const_iterator;
Howard Hinnant324bb032010-08-22 00:02:43 +0000658#else // defined(_LIBCPP_RAW_ITERATORS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000659 typedef __wrap_iter<pointer> iterator;
660 typedef __wrap_iter<const_pointer> const_iterator;
Howard Hinnant324bb032010-08-22 00:02:43 +0000661#endif // defined(_LIBCPP_RAW_ITERATORS)
Howard Hinnant0949eed2011-06-30 21:18:19 +0000662 typedef _VSTD::reverse_iterator<iterator> reverse_iterator;
663 typedef _VSTD::reverse_iterator<const_iterator> const_reverse_iterator;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000664
665private:
Howard Hinnant15467182013-04-30 21:44:48 +0000666
Evgeniy Stepanov4f01aa82015-10-13 23:48:28 +0000667#ifdef _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Howard Hinnant15467182013-04-30 21:44:48 +0000668
669 struct __long
670 {
671 pointer __data_;
672 size_type __size_;
673 size_type __cap_;
674 };
675
676#if _LIBCPP_BIG_ENDIAN
677 enum {__short_mask = 0x01};
678 enum {__long_mask = 0x1ul};
679#else // _LIBCPP_BIG_ENDIAN
680 enum {__short_mask = 0x80};
681 enum {__long_mask = ~(size_type(~0) >> 1)};
682#endif // _LIBCPP_BIG_ENDIAN
683
684 enum {__min_cap = (sizeof(__long) - 1)/sizeof(value_type) > 2 ?
685 (sizeof(__long) - 1)/sizeof(value_type) : 2};
686
687 struct __short
688 {
689 value_type __data_[__min_cap];
690 struct
691 : __padding<value_type>
692 {
693 unsigned char __size_;
694 };
695 };
696
697#else
698
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000699 struct __long
700 {
701 size_type __cap_;
702 size_type __size_;
703 pointer __data_;
704 };
705
706#if _LIBCPP_BIG_ENDIAN
707 enum {__short_mask = 0x80};
708 enum {__long_mask = ~(size_type(~0) >> 1)};
Howard Hinnant324bb032010-08-22 00:02:43 +0000709#else // _LIBCPP_BIG_ENDIAN
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000710 enum {__short_mask = 0x01};
Howard Hinnantec3773c2011-12-01 20:21:04 +0000711 enum {__long_mask = 0x1ul};
Howard Hinnant324bb032010-08-22 00:02:43 +0000712#endif // _LIBCPP_BIG_ENDIAN
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000713
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000714 enum {__min_cap = (sizeof(__long) - 1)/sizeof(value_type) > 2 ?
715 (sizeof(__long) - 1)/sizeof(value_type) : 2};
716
717 struct __short
718 {
719 union
720 {
721 unsigned char __size_;
Howard Hinnant9c0df142012-10-30 19:06:59 +0000722 value_type __lx;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000723 };
724 value_type __data_[__min_cap];
725 };
726
Evgeniy Stepanov4f01aa82015-10-13 23:48:28 +0000727#endif // _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Howard Hinnant15467182013-04-30 21:44:48 +0000728
Howard Hinnant499cea12013-08-23 17:37:05 +0000729 union __ulx{__long __lx; __short __lxx;};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000730
Howard Hinnant499cea12013-08-23 17:37:05 +0000731 enum {__n_words = sizeof(__ulx) / sizeof(size_type)};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000732
733 struct __raw
734 {
735 size_type __words[__n_words];
736 };
737
738 struct __rep
739 {
740 union
741 {
742 __long __l;
743 __short __s;
744 __raw __r;
745 };
746 };
747
748 __compressed_pair<__rep, allocator_type> __r_;
749
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000750public:
751 static const size_type npos = -1;
752
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000753 _LIBCPP_INLINE_VISIBILITY basic_string()
754 _NOEXCEPT_(is_nothrow_default_constructible<allocator_type>::value);
Marshall Clow7b193f72015-06-03 19:56:43 +0000755
756 _LIBCPP_INLINE_VISIBILITY explicit basic_string(const allocator_type& __a)
757#if _LIBCPP_STD_VER <= 14
758 _NOEXCEPT_(is_nothrow_copy_constructible<allocator_type>::value);
759#else
760 _NOEXCEPT;
761#endif
762
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000763 basic_string(const basic_string& __str);
764 basic_string(const basic_string& __str, const allocator_type& __a);
Marshall Clow7b193f72015-06-03 19:56:43 +0000765
Howard Hinnant73d21a42010-09-04 23:28:19 +0000766#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant9f193f22011-01-26 00:06:59 +0000767 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000768 basic_string(basic_string&& __str)
Marshall Clow7b193f72015-06-03 19:56:43 +0000769#if _LIBCPP_STD_VER <= 14
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000770 _NOEXCEPT_(is_nothrow_move_constructible<allocator_type>::value);
Marshall Clow7b193f72015-06-03 19:56:43 +0000771#else
772 _NOEXCEPT;
773#endif
774
Howard Hinnant9f193f22011-01-26 00:06:59 +0000775 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000776 basic_string(basic_string&& __str, const allocator_type& __a);
Howard Hinnant73d21a42010-09-04 23:28:19 +0000777#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Eric Fiselier0eaf2e82017-02-17 01:17:10 +0000778 _LIBCPP_INLINE_VISIBILITY basic_string(const _CharT* __s);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000779 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +0000780 basic_string(const _CharT* __s, const _Allocator& __a);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000781 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +0000782 basic_string(const _CharT* __s, size_type __n);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000783 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +0000784 basic_string(const _CharT* __s, size_type __n, const _Allocator& __a);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000785 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +0000786 basic_string(size_type __n, _CharT __c);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000787 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +0000788 basic_string(size_type __n, _CharT __c, const _Allocator& __a);
Marshall Clowf4f7d8f2016-04-07 18:13:41 +0000789 basic_string(const basic_string& __str, size_type __pos, size_type __n,
Eric Fiselier0eaf2e82017-02-17 01:17:10 +0000790 const _Allocator& __a = _Allocator());
Marshall Clowf4f7d8f2016-04-07 18:13:41 +0000791 _LIBCPP_INLINE_VISIBILITY
792 basic_string(const basic_string& __str, size_type __pos,
Eric Fiselier0eaf2e82017-02-17 01:17:10 +0000793 const _Allocator& __a = _Allocator());
Marshall Clowdb7fa112016-11-14 18:22:19 +0000794 template<class _Tp>
Shoaib Meenai24e8dbd2017-03-02 03:02:50 +0000795 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
Eric Fiselier0eaf2e82017-02-17 01:17:10 +0000796 basic_string(const _Tp& __t, size_type __pos, size_type __n,
Marshall Clowdb7fa112016-11-14 18:22:19 +0000797 const allocator_type& __a = allocator_type(),
798 typename enable_if<__can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value, void>::type* = 0);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000799 _LIBCPP_INLINE_VISIBILITY explicit
800 basic_string(__self_view __sv);
801 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +0000802 basic_string(__self_view __sv, const _Allocator& __a);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000803 template<class _InputIterator>
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000804 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000805 basic_string(_InputIterator __first, _InputIterator __last);
806 template<class _InputIterator>
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000807 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000808 basic_string(_InputIterator __first, _InputIterator __last, const allocator_type& __a);
Howard Hinnante3e32912011-08-12 21:56:02 +0000809#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000810 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +0000811 basic_string(initializer_list<_CharT> __il);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000812 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +0000813 basic_string(initializer_list<_CharT> __il, const _Allocator& __a);
Howard Hinnante3e32912011-08-12 21:56:02 +0000814#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000815
Eric Fiselier51eb1d52016-10-31 03:42:50 +0000816 inline ~basic_string();
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000817
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000818 _LIBCPP_INLINE_VISIBILITY
819 operator __self_view() const _NOEXCEPT { return __self_view(data(), size()); }
820
Howard Hinnante32b5e22010-11-17 17:55:08 +0000821 basic_string& operator=(const basic_string& __str);
Eric Fiselierf472d6c2017-01-23 21:24:58 +0000822
823#ifndef _LIBCPP_CXX03_LANG
Eric Fiselier37b2be92017-01-17 22:10:32 +0000824 template <class = void>
Eric Fiselierf472d6c2017-01-23 21:24:58 +0000825#endif
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000826 _LIBCPP_INLINE_VISIBILITY
827 basic_string& operator=(__self_view __sv) {return assign(__sv);}
Howard Hinnant73d21a42010-09-04 23:28:19 +0000828#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000829 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000830 basic_string& operator=(basic_string&& __str)
Marshall Clowaf961ed2015-08-18 18:57:00 +0000831 _NOEXCEPT_((__noexcept_move_assign_container<_Allocator, __alloc_traits>::value));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000832#endif
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000833 _LIBCPP_INLINE_VISIBILITY basic_string& operator=(const value_type* __s) {return assign(__s);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000834 basic_string& operator=(value_type __c);
Howard Hinnante3e32912011-08-12 21:56:02 +0000835#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnant8d7a9552010-09-23 17:31:07 +0000836 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000837 basic_string& operator=(initializer_list<value_type> __il) {return assign(__il.begin(), __il.size());}
Howard Hinnante3e32912011-08-12 21:56:02 +0000838#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000839
Howard Hinnant499cea12013-08-23 17:37:05 +0000840#if _LIBCPP_DEBUG_LEVEL >= 2
841 _LIBCPP_INLINE_VISIBILITY
842 iterator begin() _NOEXCEPT
843 {return iterator(this, __get_pointer());}
844 _LIBCPP_INLINE_VISIBILITY
845 const_iterator begin() const _NOEXCEPT
846 {return const_iterator(this, __get_pointer());}
847 _LIBCPP_INLINE_VISIBILITY
848 iterator end() _NOEXCEPT
849 {return iterator(this, __get_pointer() + size());}
850 _LIBCPP_INLINE_VISIBILITY
851 const_iterator end() const _NOEXCEPT
852 {return const_iterator(this, __get_pointer() + size());}
853#else
Howard Hinnanta6119a82011-05-29 19:57:12 +0000854 _LIBCPP_INLINE_VISIBILITY
855 iterator begin() _NOEXCEPT
856 {return iterator(__get_pointer());}
857 _LIBCPP_INLINE_VISIBILITY
858 const_iterator begin() const _NOEXCEPT
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000859 {return const_iterator(__get_pointer());}
Howard Hinnanta6119a82011-05-29 19:57:12 +0000860 _LIBCPP_INLINE_VISIBILITY
861 iterator end() _NOEXCEPT
862 {return iterator(__get_pointer() + size());}
863 _LIBCPP_INLINE_VISIBILITY
864 const_iterator end() const _NOEXCEPT
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000865 {return const_iterator(__get_pointer() + size());}
Howard Hinnant499cea12013-08-23 17:37:05 +0000866#endif // _LIBCPP_DEBUG_LEVEL >= 2
Howard Hinnanta6119a82011-05-29 19:57:12 +0000867 _LIBCPP_INLINE_VISIBILITY
868 reverse_iterator rbegin() _NOEXCEPT
869 {return reverse_iterator(end());}
870 _LIBCPP_INLINE_VISIBILITY
871 const_reverse_iterator rbegin() const _NOEXCEPT
872 {return const_reverse_iterator(end());}
873 _LIBCPP_INLINE_VISIBILITY
874 reverse_iterator rend() _NOEXCEPT
875 {return reverse_iterator(begin());}
876 _LIBCPP_INLINE_VISIBILITY
877 const_reverse_iterator rend() const _NOEXCEPT
878 {return const_reverse_iterator(begin());}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000879
Howard Hinnanta6119a82011-05-29 19:57:12 +0000880 _LIBCPP_INLINE_VISIBILITY
881 const_iterator cbegin() const _NOEXCEPT
882 {return begin();}
883 _LIBCPP_INLINE_VISIBILITY
884 const_iterator cend() const _NOEXCEPT
885 {return end();}
886 _LIBCPP_INLINE_VISIBILITY
887 const_reverse_iterator crbegin() const _NOEXCEPT
888 {return rbegin();}
889 _LIBCPP_INLINE_VISIBILITY
890 const_reverse_iterator crend() const _NOEXCEPT
891 {return rend();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000892
Howard Hinnanta6119a82011-05-29 19:57:12 +0000893 _LIBCPP_INLINE_VISIBILITY size_type size() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000894 {return __is_long() ? __get_long_size() : __get_short_size();}
Howard Hinnanta6119a82011-05-29 19:57:12 +0000895 _LIBCPP_INLINE_VISIBILITY size_type length() const _NOEXCEPT {return size();}
896 _LIBCPP_INLINE_VISIBILITY size_type max_size() const _NOEXCEPT;
897 _LIBCPP_INLINE_VISIBILITY size_type capacity() const _NOEXCEPT
Eric Fiseliere2d48922015-08-28 07:02:42 +0000898 {return (__is_long() ? __get_long_cap()
899 : static_cast<size_type>(__min_cap)) - 1;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000900
901 void resize(size_type __n, value_type __c);
902 _LIBCPP_INLINE_VISIBILITY void resize(size_type __n) {resize(__n, value_type());}
903
904 void reserve(size_type res_arg = 0);
Howard Hinnant8d7a9552010-09-23 17:31:07 +0000905 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000906 void shrink_to_fit() _NOEXCEPT {reserve();}
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000907 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +0000908 void clear() _NOEXCEPT;
909 _LIBCPP_INLINE_VISIBILITY bool empty() const _NOEXCEPT {return size() == 0;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000910
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000911 _LIBCPP_INLINE_VISIBILITY const_reference operator[](size_type __pos) const _NOEXCEPT;
912 _LIBCPP_INLINE_VISIBILITY reference operator[](size_type __pos) _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000913
914 const_reference at(size_type __n) const;
915 reference at(size_type __n);
916
917 _LIBCPP_INLINE_VISIBILITY basic_string& operator+=(const basic_string& __str) {return append(__str);}
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000918 _LIBCPP_INLINE_VISIBILITY basic_string& operator+=(__self_view __sv) {return append(__sv);}
919 _LIBCPP_INLINE_VISIBILITY basic_string& operator+=(const value_type* __s) {return append(__s);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000920 _LIBCPP_INLINE_VISIBILITY basic_string& operator+=(value_type __c) {push_back(__c); return *this;}
Howard Hinnante3e32912011-08-12 21:56:02 +0000921#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000922 _LIBCPP_INLINE_VISIBILITY basic_string& operator+=(initializer_list<value_type> __il) {return append(__il);}
Howard Hinnante3e32912011-08-12 21:56:02 +0000923#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000924
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000925 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000926 basic_string& append(const basic_string& __str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000927 _LIBCPP_INLINE_VISIBILITY
928 basic_string& append(__self_view __sv) { return append(__sv.data(), __sv.size()); }
Marshall Clowa93b5e22014-03-04 19:17:19 +0000929 basic_string& append(const basic_string& __str, size_type __pos, size_type __n=npos);
Marshall Clow42a87db2016-10-03 23:40:48 +0000930 template <class _Tp>
Shoaib Meenai24e8dbd2017-03-02 03:02:50 +0000931 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
932 typename enable_if
Marshall Clow6ac8de02016-09-24 22:45:42 +0000933 <
934 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
935 basic_string&
936 >::type
937 append(const _Tp& __t, size_type __pos, size_type __n=npos);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000938 basic_string& append(const value_type* __s, size_type __n);
939 basic_string& append(const value_type* __s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000940 basic_string& append(size_type __n, value_type __c);
Eric Fiselier026d38e2016-10-31 02:46:25 +0000941 template <class _ForwardIterator>
Shoaib Meenai24e8dbd2017-03-02 03:02:50 +0000942 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
943 basic_string& __append_forward_unsafe(_ForwardIterator, _ForwardIterator);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000944 template<class _InputIterator>
Shoaib Meenai24e8dbd2017-03-02 03:02:50 +0000945 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
946 typename enable_if
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000947 <
Marshall Clowdf9db312016-01-13 21:54:34 +0000948 __is_exactly_input_iterator<_InputIterator>::value
949 || !__libcpp_string_gets_noexcept_iterator<_InputIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000950 basic_string&
951 >::type
Eric Fiselier026d38e2016-10-31 02:46:25 +0000952 _LIBCPP_INLINE_VISIBILITY
953 append(_InputIterator __first, _InputIterator __last) {
954 const basic_string __temp (__first, __last, __alloc());
955 append(__temp.data(), __temp.size());
956 return *this;
957 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000958 template<class _ForwardIterator>
Shoaib Meenai24e8dbd2017-03-02 03:02:50 +0000959 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
960 typename enable_if
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000961 <
Marshall Clowdf9db312016-01-13 21:54:34 +0000962 __is_forward_iterator<_ForwardIterator>::value
963 && __libcpp_string_gets_noexcept_iterator<_ForwardIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000964 basic_string&
965 >::type
Eric Fiselier026d38e2016-10-31 02:46:25 +0000966 _LIBCPP_INLINE_VISIBILITY
967 append(_ForwardIterator __first, _ForwardIterator __last) {
968 return __append_forward_unsafe(__first, __last);
969 }
970
Howard Hinnante3e32912011-08-12 21:56:02 +0000971#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnant8d7a9552010-09-23 17:31:07 +0000972 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000973 basic_string& append(initializer_list<value_type> __il) {return append(__il.begin(), __il.size());}
Howard Hinnante3e32912011-08-12 21:56:02 +0000974#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000975
976 void push_back(value_type __c);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000977 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000978 void pop_back();
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000979 _LIBCPP_INLINE_VISIBILITY reference front();
980 _LIBCPP_INLINE_VISIBILITY const_reference front() const;
981 _LIBCPP_INLINE_VISIBILITY reference back();
982 _LIBCPP_INLINE_VISIBILITY const_reference back() const;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000983
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000984 _LIBCPP_INLINE_VISIBILITY
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000985 basic_string& assign(__self_view __sv) { return assign(__sv.data(), __sv.size()); }
986 _LIBCPP_INLINE_VISIBILITY
Marshall Clowf40ec902016-03-09 18:08:29 +0000987 basic_string& assign(const basic_string& __str) { return *this = __str; }
Howard Hinnanta6119a82011-05-29 19:57:12 +0000988#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
989 _LIBCPP_INLINE_VISIBILITY
990 basic_string& assign(basic_string&& str)
Marshall Clow7ed093b2015-10-05 16:17:34 +0000991 _NOEXCEPT_((__noexcept_move_assign_container<_Allocator, __alloc_traits>::value))
Howard Hinnant0949eed2011-06-30 21:18:19 +0000992 {*this = _VSTD::move(str); return *this;}
Howard Hinnanta6119a82011-05-29 19:57:12 +0000993#endif
Marshall Clowa93b5e22014-03-04 19:17:19 +0000994 basic_string& assign(const basic_string& __str, size_type __pos, size_type __n=npos);
Marshall Clow42a87db2016-10-03 23:40:48 +0000995 template <class _Tp>
Shoaib Meenai24e8dbd2017-03-02 03:02:50 +0000996 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
997 typename enable_if
Marshall Clow6ac8de02016-09-24 22:45:42 +0000998 <
999 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
1000 basic_string&
1001 >::type
1002 assign(const _Tp & __t, size_type pos, size_type n=npos);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001003 basic_string& assign(const value_type* __s, size_type __n);
1004 basic_string& assign(const value_type* __s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001005 basic_string& assign(size_type __n, value_type __c);
1006 template<class _InputIterator>
Shoaib Meenai24e8dbd2017-03-02 03:02:50 +00001007 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
1008 typename enable_if
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001009 <
Marshall Clowdf9db312016-01-13 21:54:34 +00001010 __is_exactly_input_iterator<_InputIterator>::value
1011 || !__libcpp_string_gets_noexcept_iterator<_InputIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001012 basic_string&
1013 >::type
1014 assign(_InputIterator __first, _InputIterator __last);
1015 template<class _ForwardIterator>
Shoaib Meenai24e8dbd2017-03-02 03:02:50 +00001016 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
1017 typename enable_if
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001018 <
Marshall Clowdf9db312016-01-13 21:54:34 +00001019 __is_forward_iterator<_ForwardIterator>::value
1020 && __libcpp_string_gets_noexcept_iterator<_ForwardIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001021 basic_string&
1022 >::type
1023 assign(_ForwardIterator __first, _ForwardIterator __last);
Howard Hinnante3e32912011-08-12 21:56:02 +00001024#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnant8d7a9552010-09-23 17:31:07 +00001025 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001026 basic_string& assign(initializer_list<value_type> __il) {return assign(__il.begin(), __il.size());}
Howard Hinnante3e32912011-08-12 21:56:02 +00001027#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001028
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001029 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001030 basic_string& insert(size_type __pos1, const basic_string& __str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001031 _LIBCPP_INLINE_VISIBILITY
1032 basic_string& insert(size_type __pos1, __self_view __sv) { return insert(__pos1, __sv.data(), __sv.size()); }
Marshall Clow6ac8de02016-09-24 22:45:42 +00001033 template <class _Tp>
Shoaib Meenai24e8dbd2017-03-02 03:02:50 +00001034 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
1035 typename enable_if
Marshall Clow6ac8de02016-09-24 22:45:42 +00001036 <
1037 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
1038 basic_string&
1039 >::type
1040 insert(size_type __pos1, const _Tp& __t, size_type __pos2, size_type __n=npos);
Marshall Clowa93b5e22014-03-04 19:17:19 +00001041 basic_string& insert(size_type __pos1, const basic_string& __str, size_type __pos2, size_type __n=npos);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001042 basic_string& insert(size_type __pos, const value_type* __s, size_type __n);
1043 basic_string& insert(size_type __pos, const value_type* __s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001044 basic_string& insert(size_type __pos, size_type __n, value_type __c);
1045 iterator insert(const_iterator __pos, value_type __c);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001046 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001047 iterator insert(const_iterator __pos, size_type __n, value_type __c);
1048 template<class _InputIterator>
Shoaib Meenai24e8dbd2017-03-02 03:02:50 +00001049 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
1050 typename enable_if
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001051 <
Marshall Clowdf9db312016-01-13 21:54:34 +00001052 __is_exactly_input_iterator<_InputIterator>::value
1053 || !__libcpp_string_gets_noexcept_iterator<_InputIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001054 iterator
1055 >::type
1056 insert(const_iterator __pos, _InputIterator __first, _InputIterator __last);
1057 template<class _ForwardIterator>
Shoaib Meenai24e8dbd2017-03-02 03:02:50 +00001058 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
1059 typename enable_if
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001060 <
Marshall Clowdf9db312016-01-13 21:54:34 +00001061 __is_forward_iterator<_ForwardIterator>::value
1062 && __libcpp_string_gets_noexcept_iterator<_ForwardIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001063 iterator
1064 >::type
1065 insert(const_iterator __pos, _ForwardIterator __first, _ForwardIterator __last);
Howard Hinnante3e32912011-08-12 21:56:02 +00001066#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnant8d7a9552010-09-23 17:31:07 +00001067 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001068 iterator insert(const_iterator __pos, initializer_list<value_type> __il)
1069 {return insert(__pos, __il.begin(), __il.end());}
Howard Hinnante3e32912011-08-12 21:56:02 +00001070#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001071
1072 basic_string& erase(size_type __pos = 0, size_type __n = npos);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001073 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001074 iterator erase(const_iterator __pos);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001075 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001076 iterator erase(const_iterator __first, const_iterator __last);
1077
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001078 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001079 basic_string& replace(size_type __pos1, size_type __n1, const basic_string& __str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001080 _LIBCPP_INLINE_VISIBILITY
1081 basic_string& replace(size_type __pos1, size_type __n1, __self_view __sv) { return replace(__pos1, __n1, __sv.data(), __sv.size()); }
Marshall Clowa93b5e22014-03-04 19:17:19 +00001082 basic_string& replace(size_type __pos1, size_type __n1, const basic_string& __str, size_type __pos2, size_type __n2=npos);
Marshall Clow6ac8de02016-09-24 22:45:42 +00001083 template <class _Tp>
Shoaib Meenai24e8dbd2017-03-02 03:02:50 +00001084 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
1085 typename enable_if
Marshall Clow6ac8de02016-09-24 22:45:42 +00001086 <
1087 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
1088 basic_string&
1089 >::type
1090 replace(size_type __pos1, size_type __n1, const _Tp& __t, size_type __pos2, size_type __n2=npos);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001091 basic_string& replace(size_type __pos, size_type __n1, const value_type* __s, size_type __n2);
1092 basic_string& replace(size_type __pos, size_type __n1, const value_type* __s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001093 basic_string& replace(size_type __pos, size_type __n1, size_type __n2, value_type __c);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001094 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7b2cb482010-11-17 21:11:40 +00001095 basic_string& replace(const_iterator __i1, const_iterator __i2, const basic_string& __str);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001096 _LIBCPP_INLINE_VISIBILITY
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001097 basic_string& replace(const_iterator __i1, const_iterator __i2, __self_view __sv) { return replace(__i1 - begin(), __i2 - __i1, __sv); }
1098 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001099 basic_string& replace(const_iterator __i1, const_iterator __i2, const value_type* __s, size_type __n);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001100 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001101 basic_string& replace(const_iterator __i1, const_iterator __i2, const value_type* __s);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001102 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7b2cb482010-11-17 21:11:40 +00001103 basic_string& replace(const_iterator __i1, const_iterator __i2, size_type __n, value_type __c);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001104 template<class _InputIterator>
Shoaib Meenai24e8dbd2017-03-02 03:02:50 +00001105 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
1106 typename enable_if
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001107 <
1108 __is_input_iterator<_InputIterator>::value,
1109 basic_string&
1110 >::type
Howard Hinnant7b2cb482010-11-17 21:11:40 +00001111 replace(const_iterator __i1, const_iterator __i2, _InputIterator __j1, _InputIterator __j2);
Howard Hinnante3e32912011-08-12 21:56:02 +00001112#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnant8d7a9552010-09-23 17:31:07 +00001113 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7b2cb482010-11-17 21:11:40 +00001114 basic_string& replace(const_iterator __i1, const_iterator __i2, initializer_list<value_type> __il)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001115 {return replace(__i1, __i2, __il.begin(), __il.end());}
Howard Hinnante3e32912011-08-12 21:56:02 +00001116#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001117
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001118 size_type copy(value_type* __s, size_type __n, size_type __pos = 0) const;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001119 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001120 basic_string substr(size_type __pos = 0, size_type __n = npos) const;
1121
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001122 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00001123 void swap(basic_string& __str)
Marshall Clow7d914d12015-07-13 20:04:56 +00001124#if _LIBCPP_STD_VER >= 14
Eric Fiselier47257c42016-12-28 05:53:01 +00001125 _NOEXCEPT_DEBUG;
Marshall Clow7d914d12015-07-13 20:04:56 +00001126#else
Eric Fiselier47257c42016-12-28 05:53:01 +00001127 _NOEXCEPT_DEBUG_(!__alloc_traits::propagate_on_container_swap::value ||
Marshall Clow7d914d12015-07-13 20:04:56 +00001128 __is_nothrow_swappable<allocator_type>::value);
1129#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001130
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001131 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001132 const value_type* c_str() const _NOEXCEPT {return data();}
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001133 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001134 const value_type* data() const _NOEXCEPT {return _VSTD::__to_raw_pointer(__get_pointer());}
Marshall Clowf532a702016-03-08 15:44:30 +00001135#if _LIBCPP_STD_VER > 14
1136 _LIBCPP_INLINE_VISIBILITY
1137 value_type* data() _NOEXCEPT {return _VSTD::__to_raw_pointer(__get_pointer());}
1138#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001139
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001140 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001141 allocator_type get_allocator() const _NOEXCEPT {return __alloc();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001142
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001143 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001144 size_type find(const basic_string& __str, size_type __pos = 0) const _NOEXCEPT;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001145 _LIBCPP_INLINE_VISIBILITY
1146 size_type find(__self_view __sv, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001147 size_type find(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001148 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001149 size_type find(const value_type* __s, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnanta6119a82011-05-29 19:57:12 +00001150 size_type find(value_type __c, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001151
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001152 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001153 size_type rfind(const basic_string& __str, size_type __pos = npos) const _NOEXCEPT;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001154 _LIBCPP_INLINE_VISIBILITY
1155 size_type rfind(__self_view __sv, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001156 size_type rfind(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001157 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001158 size_type rfind(const value_type* __s, size_type __pos = npos) const _NOEXCEPT;
Howard Hinnanta6119a82011-05-29 19:57:12 +00001159 size_type rfind(value_type __c, size_type __pos = npos) const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001160
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001161 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001162 size_type find_first_of(const basic_string& __str, size_type __pos = 0) const _NOEXCEPT;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001163 _LIBCPP_INLINE_VISIBILITY
1164 size_type find_first_of(__self_view __sv, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001165 size_type find_first_of(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001166 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001167 size_type find_first_of(const value_type* __s, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001168 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001169 size_type find_first_of(value_type __c, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001170
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001171 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001172 size_type find_last_of(const basic_string& __str, size_type __pos = npos) const _NOEXCEPT;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001173 _LIBCPP_INLINE_VISIBILITY
1174 size_type find_last_of(__self_view __sv, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001175 size_type find_last_of(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001176 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001177 size_type find_last_of(const value_type* __s, size_type __pos = npos) const _NOEXCEPT;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001178 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001179 size_type find_last_of(value_type __c, size_type __pos = npos) const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001180
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001181 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001182 size_type find_first_not_of(const basic_string& __str, size_type __pos = 0) const _NOEXCEPT;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001183 _LIBCPP_INLINE_VISIBILITY
1184 size_type find_first_not_of(__self_view __sv, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001185 size_type find_first_not_of(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT;
Howard Hinnanta6119a82011-05-29 19:57:12 +00001186 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001187 size_type find_first_not_of(const value_type* __s, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnanta6119a82011-05-29 19:57:12 +00001188 _LIBCPP_INLINE_VISIBILITY
1189 size_type find_first_not_of(value_type __c, size_type __pos = 0) const _NOEXCEPT;
1190
1191 _LIBCPP_INLINE_VISIBILITY
1192 size_type find_last_not_of(const basic_string& __str, size_type __pos = npos) const _NOEXCEPT;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001193 _LIBCPP_INLINE_VISIBILITY
1194 size_type find_last_not_of(__self_view __sv, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001195 size_type find_last_not_of(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT;
Howard Hinnanta6119a82011-05-29 19:57:12 +00001196 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001197 size_type find_last_not_of(const value_type* __s, size_type __pos = npos) const _NOEXCEPT;
Howard Hinnanta6119a82011-05-29 19:57:12 +00001198 _LIBCPP_INLINE_VISIBILITY
1199 size_type find_last_not_of(value_type __c, size_type __pos = npos) const _NOEXCEPT;
1200
1201 _LIBCPP_INLINE_VISIBILITY
1202 int compare(const basic_string& __str) const _NOEXCEPT;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001203 _LIBCPP_INLINE_VISIBILITY
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001204 int compare(__self_view __sv) const _NOEXCEPT;
1205 _LIBCPP_INLINE_VISIBILITY
1206 int compare(size_type __pos1, size_type __n1, __self_view __sv) const;
1207 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001208 int compare(size_type __pos1, size_type __n1, const basic_string& __str) const;
Marshall Clowa93b5e22014-03-04 19:17:19 +00001209 int compare(size_type __pos1, size_type __n1, const basic_string& __str, size_type __pos2, size_type __n2=npos) const;
Marshall Clow6ac8de02016-09-24 22:45:42 +00001210 template <class _Tp>
Eric Fiselier9dbc0532016-10-14 05:29:46 +00001211 inline _LIBCPP_INLINE_VISIBILITY
Marshall Clow6ac8de02016-09-24 22:45:42 +00001212 typename enable_if
1213 <
1214 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
1215 int
1216 >::type
1217 compare(size_type __pos1, size_type __n1, const _Tp& __t, size_type __pos2, size_type __n2=npos) const;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001218 int compare(const value_type* __s) const _NOEXCEPT;
1219 int compare(size_type __pos1, size_type __n1, const value_type* __s) const;
1220 int compare(size_type __pos1, size_type __n1, const value_type* __s, size_type __n2) const;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001221
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001222 _LIBCPP_INLINE_VISIBILITY bool __invariants() const;
Howard Hinnant08dd2532013-04-22 23:55:13 +00001223
1224 _LIBCPP_INLINE_VISIBILITY
1225 bool __is_long() const _NOEXCEPT
1226 {return bool(__r_.first().__s.__size_ & __short_mask);}
1227
Howard Hinnant499cea12013-08-23 17:37:05 +00001228#if _LIBCPP_DEBUG_LEVEL >= 2
1229
1230 bool __dereferenceable(const const_iterator* __i) const;
1231 bool __decrementable(const const_iterator* __i) const;
1232 bool __addable(const const_iterator* __i, ptrdiff_t __n) const;
1233 bool __subscriptable(const const_iterator* __i, ptrdiff_t __n) const;
1234
1235#endif // _LIBCPP_DEBUG_LEVEL >= 2
1236
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001237private:
Howard Hinnanta6119a82011-05-29 19:57:12 +00001238 _LIBCPP_INLINE_VISIBILITY
1239 allocator_type& __alloc() _NOEXCEPT
1240 {return __r_.second();}
1241 _LIBCPP_INLINE_VISIBILITY
1242 const allocator_type& __alloc() const _NOEXCEPT
1243 {return __r_.second();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001244
Evgeniy Stepanov4f01aa82015-10-13 23:48:28 +00001245#ifdef _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Howard Hinnant15467182013-04-30 21:44:48 +00001246
Howard Hinnanta6119a82011-05-29 19:57:12 +00001247 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001248 void __set_short_size(size_type __s) _NOEXCEPT
Howard Hinnant15467182013-04-30 21:44:48 +00001249# if _LIBCPP_BIG_ENDIAN
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001250 {__r_.first().__s.__size_ = (unsigned char)(__s << 1);}
Howard Hinnant15467182013-04-30 21:44:48 +00001251# else
1252 {__r_.first().__s.__size_ = (unsigned char)(__s);}
1253# endif
1254
Howard Hinnanta6119a82011-05-29 19:57:12 +00001255 _LIBCPP_INLINE_VISIBILITY
1256 size_type __get_short_size() const _NOEXCEPT
Howard Hinnant15467182013-04-30 21:44:48 +00001257# if _LIBCPP_BIG_ENDIAN
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001258 {return __r_.first().__s.__size_ >> 1;}
Howard Hinnant15467182013-04-30 21:44:48 +00001259# else
1260 {return __r_.first().__s.__size_;}
1261# endif
1262
Evgeniy Stepanov4f01aa82015-10-13 23:48:28 +00001263#else // _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Howard Hinnant15467182013-04-30 21:44:48 +00001264
1265 _LIBCPP_INLINE_VISIBILITY
1266 void __set_short_size(size_type __s) _NOEXCEPT
1267# if _LIBCPP_BIG_ENDIAN
1268 {__r_.first().__s.__size_ = (unsigned char)(__s);}
1269# else
1270 {__r_.first().__s.__size_ = (unsigned char)(__s << 1);}
1271# endif
1272
1273 _LIBCPP_INLINE_VISIBILITY
1274 size_type __get_short_size() const _NOEXCEPT
1275# if _LIBCPP_BIG_ENDIAN
1276 {return __r_.first().__s.__size_;}
1277# else
1278 {return __r_.first().__s.__size_ >> 1;}
1279# endif
1280
Evgeniy Stepanov4f01aa82015-10-13 23:48:28 +00001281#endif // _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Howard Hinnant15467182013-04-30 21:44:48 +00001282
Howard Hinnanta6119a82011-05-29 19:57:12 +00001283 _LIBCPP_INLINE_VISIBILITY
1284 void __set_long_size(size_type __s) _NOEXCEPT
1285 {__r_.first().__l.__size_ = __s;}
1286 _LIBCPP_INLINE_VISIBILITY
1287 size_type __get_long_size() const _NOEXCEPT
1288 {return __r_.first().__l.__size_;}
1289 _LIBCPP_INLINE_VISIBILITY
1290 void __set_size(size_type __s) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001291 {if (__is_long()) __set_long_size(__s); else __set_short_size(__s);}
1292
Howard Hinnanta6119a82011-05-29 19:57:12 +00001293 _LIBCPP_INLINE_VISIBILITY
1294 void __set_long_cap(size_type __s) _NOEXCEPT
1295 {__r_.first().__l.__cap_ = __long_mask | __s;}
1296 _LIBCPP_INLINE_VISIBILITY
1297 size_type __get_long_cap() const _NOEXCEPT
Howard Hinnantec3773c2011-12-01 20:21:04 +00001298 {return __r_.first().__l.__cap_ & size_type(~__long_mask);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001299
Howard Hinnanta6119a82011-05-29 19:57:12 +00001300 _LIBCPP_INLINE_VISIBILITY
1301 void __set_long_pointer(pointer __p) _NOEXCEPT
1302 {__r_.first().__l.__data_ = __p;}
1303 _LIBCPP_INLINE_VISIBILITY
1304 pointer __get_long_pointer() _NOEXCEPT
1305 {return __r_.first().__l.__data_;}
1306 _LIBCPP_INLINE_VISIBILITY
1307 const_pointer __get_long_pointer() const _NOEXCEPT
1308 {return __r_.first().__l.__data_;}
1309 _LIBCPP_INLINE_VISIBILITY
1310 pointer __get_short_pointer() _NOEXCEPT
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001311 {return pointer_traits<pointer>::pointer_to(__r_.first().__s.__data_[0]);}
Howard Hinnanta6119a82011-05-29 19:57:12 +00001312 _LIBCPP_INLINE_VISIBILITY
1313 const_pointer __get_short_pointer() const _NOEXCEPT
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001314 {return pointer_traits<const_pointer>::pointer_to(__r_.first().__s.__data_[0]);}
Howard Hinnanta6119a82011-05-29 19:57:12 +00001315 _LIBCPP_INLINE_VISIBILITY
1316 pointer __get_pointer() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001317 {return __is_long() ? __get_long_pointer() : __get_short_pointer();}
Howard Hinnanta6119a82011-05-29 19:57:12 +00001318 _LIBCPP_INLINE_VISIBILITY
1319 const_pointer __get_pointer() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001320 {return __is_long() ? __get_long_pointer() : __get_short_pointer();}
1321
Howard Hinnanta6119a82011-05-29 19:57:12 +00001322 _LIBCPP_INLINE_VISIBILITY
1323 void __zero() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001324 {
1325 size_type (&__a)[__n_words] = __r_.first().__r.__words;
1326 for (unsigned __i = 0; __i < __n_words; ++__i)
1327 __a[__i] = 0;
1328 }
1329
1330 template <size_type __a> static
Howard Hinnanta6119a82011-05-29 19:57:12 +00001331 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7f764502013-08-14 18:00:20 +00001332 size_type __align_it(size_type __s) _NOEXCEPT
Eric Fiseliere2d48922015-08-28 07:02:42 +00001333 {return (__s + (__a-1)) & ~(__a-1);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001334 enum {__alignment = 16};
Howard Hinnanta6119a82011-05-29 19:57:12 +00001335 static _LIBCPP_INLINE_VISIBILITY
1336 size_type __recommend(size_type __s) _NOEXCEPT
Eric Fiseliere2d48922015-08-28 07:02:42 +00001337 {return (__s < __min_cap ? static_cast<size_type>(__min_cap) :
Howard Hinnant7f764502013-08-14 18:00:20 +00001338 __align_it<sizeof(value_type) < __alignment ?
Howard Hinnanta6119a82011-05-29 19:57:12 +00001339 __alignment/sizeof(value_type) : 1 > (__s+1)) - 1;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001340
Eric Fiselier6dbed462016-09-16 00:00:48 +00001341 inline _LIBCPP_EXTERN_TEMPLATE_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001342 void __init(const value_type* __s, size_type __sz, size_type __reserve);
Eric Fiselier6dbed462016-09-16 00:00:48 +00001343 inline _LIBCPP_EXTERN_TEMPLATE_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001344 void __init(const value_type* __s, size_type __sz);
Eric Fiselier6dbed462016-09-16 00:00:48 +00001345 inline _LIBCPP_EXTERN_TEMPLATE_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001346 void __init(size_type __n, value_type __c);
Howard Hinnant324bb032010-08-22 00:02:43 +00001347
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001348 template <class _InputIterator>
Eric Fiselier6dbed462016-09-16 00:00:48 +00001349 inline _LIBCPP_EXTERN_TEMPLATE_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001350 typename enable_if
1351 <
Marshall Clowdf9db312016-01-13 21:54:34 +00001352 __is_exactly_input_iterator<_InputIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001353 void
1354 >::type
1355 __init(_InputIterator __first, _InputIterator __last);
1356
1357 template <class _ForwardIterator>
Eric Fiselier6dbed462016-09-16 00:00:48 +00001358 inline _LIBCPP_EXTERN_TEMPLATE_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001359 typename enable_if
1360 <
1361 __is_forward_iterator<_ForwardIterator>::value,
1362 void
1363 >::type
1364 __init(_ForwardIterator __first, _ForwardIterator __last);
1365
1366 void __grow_by(size_type __old_cap, size_type __delta_cap, size_type __old_sz,
Howard Hinnant324bb032010-08-22 00:02:43 +00001367 size_type __n_copy, size_type __n_del, size_type __n_add = 0);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001368 void __grow_by_and_replace(size_type __old_cap, size_type __delta_cap, size_type __old_sz,
1369 size_type __n_copy, size_type __n_del,
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001370 size_type __n_add, const value_type* __p_new_stuff);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001371
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001372 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001373 void __erase_to_end(size_type __pos);
1374
Howard Hinnante32b5e22010-11-17 17:55:08 +00001375 _LIBCPP_INLINE_VISIBILITY
1376 void __copy_assign_alloc(const basic_string& __str)
1377 {__copy_assign_alloc(__str, integral_constant<bool,
1378 __alloc_traits::propagate_on_container_copy_assignment::value>());}
1379
1380 _LIBCPP_INLINE_VISIBILITY
1381 void __copy_assign_alloc(const basic_string& __str, true_type)
1382 {
Marshall Clow9247fd22017-01-31 03:40:52 +00001383 if (__alloc() == __str.__alloc())
1384 __alloc() = __str.__alloc();
1385 else
Howard Hinnante32b5e22010-11-17 17:55:08 +00001386 {
Marshall Clow9247fd22017-01-31 03:40:52 +00001387 if (!__str.__is_long())
1388 {
1389 clear();
1390 shrink_to_fit();
1391 __alloc() = __str.__alloc();
1392 }
1393 else
1394 {
1395 allocator_type __a = __str.__alloc();
1396 pointer __p = __alloc_traits::allocate(__a, __str.__get_long_cap());
1397 clear();
1398 shrink_to_fit();
1399 __alloc() = _VSTD::move(__a);
1400 __set_long_pointer(__p);
1401 __set_long_cap(__str.__get_long_cap());
1402 __set_long_size(__str.size());
1403 }
Howard Hinnante32b5e22010-11-17 17:55:08 +00001404 }
Howard Hinnante32b5e22010-11-17 17:55:08 +00001405 }
1406
1407 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantec3773c2011-12-01 20:21:04 +00001408 void __copy_assign_alloc(const basic_string&, false_type) _NOEXCEPT
Howard Hinnante32b5e22010-11-17 17:55:08 +00001409 {}
1410
1411#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001412 _LIBCPP_INLINE_VISIBILITY
Marshall Clowaf961ed2015-08-18 18:57:00 +00001413 void __move_assign(basic_string& __str, false_type)
1414 _NOEXCEPT_(__alloc_traits::is_always_equal::value);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001415 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00001416 void __move_assign(basic_string& __str, true_type)
Marshall Clowaf961ed2015-08-18 18:57:00 +00001417#if _LIBCPP_STD_VER > 14
1418 _NOEXCEPT;
1419#else
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00001420 _NOEXCEPT_(is_nothrow_move_assignable<allocator_type>::value);
Howard Hinnante32b5e22010-11-17 17:55:08 +00001421#endif
Marshall Clowaf961ed2015-08-18 18:57:00 +00001422#endif
Howard Hinnante32b5e22010-11-17 17:55:08 +00001423
1424 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3fdbbd22011-08-17 20:36:18 +00001425 void
Howard Hinnant9cbee432011-09-02 20:42:31 +00001426 __move_assign_alloc(basic_string& __str)
Howard Hinnant3fdbbd22011-08-17 20:36:18 +00001427 _NOEXCEPT_(
1428 !__alloc_traits::propagate_on_container_move_assignment::value ||
1429 is_nothrow_move_assignable<allocator_type>::value)
1430 {__move_assign_alloc(__str, integral_constant<bool,
1431 __alloc_traits::propagate_on_container_move_assignment::value>());}
1432
1433 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9cbee432011-09-02 20:42:31 +00001434 void __move_assign_alloc(basic_string& __c, true_type)
Howard Hinnant3fdbbd22011-08-17 20:36:18 +00001435 _NOEXCEPT_(is_nothrow_move_assignable<allocator_type>::value)
1436 {
1437 __alloc() = _VSTD::move(__c.__alloc());
1438 }
1439
1440 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantec3773c2011-12-01 20:21:04 +00001441 void __move_assign_alloc(basic_string&, false_type)
Howard Hinnant3fdbbd22011-08-17 20:36:18 +00001442 _NOEXCEPT
1443 {}
1444
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001445 _LIBCPP_INLINE_VISIBILITY void __invalidate_all_iterators();
1446 _LIBCPP_INLINE_VISIBILITY void __invalidate_iterators_past(size_type);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001447
1448 friend basic_string operator+<>(const basic_string&, const basic_string&);
1449 friend basic_string operator+<>(const value_type*, const basic_string&);
1450 friend basic_string operator+<>(value_type, const basic_string&);
1451 friend basic_string operator+<>(const basic_string&, const value_type*);
1452 friend basic_string operator+<>(const basic_string&, value_type);
1453};
1454
1455template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001456inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001457void
1458basic_string<_CharT, _Traits, _Allocator>::__invalidate_all_iterators()
1459{
Howard Hinnant499cea12013-08-23 17:37:05 +00001460#if _LIBCPP_DEBUG_LEVEL >= 2
1461 __get_db()->__invalidate_all(this);
1462#endif // _LIBCPP_DEBUG_LEVEL >= 2
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001463}
1464
1465template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001466inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001467void
Howard Hinnantec3773c2011-12-01 20:21:04 +00001468basic_string<_CharT, _Traits, _Allocator>::__invalidate_iterators_past(size_type
Howard Hinnant499cea12013-08-23 17:37:05 +00001469#if _LIBCPP_DEBUG_LEVEL >= 2
Howard Hinnantec3773c2011-12-01 20:21:04 +00001470 __pos
1471#endif
1472 )
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001473{
Howard Hinnant499cea12013-08-23 17:37:05 +00001474#if _LIBCPP_DEBUG_LEVEL >= 2
1475 __c_node* __c = __get_db()->__find_c_and_lock(this);
1476 if (__c)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001477 {
Howard Hinnant499cea12013-08-23 17:37:05 +00001478 const_pointer __new_last = __get_pointer() + __pos;
1479 for (__i_node** __p = __c->end_; __p != __c->beg_; )
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001480 {
Howard Hinnant499cea12013-08-23 17:37:05 +00001481 --__p;
1482 const_iterator* __i = static_cast<const_iterator*>((*__p)->__i_);
1483 if (__i->base() > __new_last)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001484 {
Howard Hinnant499cea12013-08-23 17:37:05 +00001485 (*__p)->__c_ = nullptr;
1486 if (--__c->end_ != __p)
1487 memmove(__p, __p+1, (__c->end_ - __p)*sizeof(__i_node*));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001488 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001489 }
Howard Hinnant499cea12013-08-23 17:37:05 +00001490 __get_db()->unlock();
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001491 }
Howard Hinnant499cea12013-08-23 17:37:05 +00001492#endif // _LIBCPP_DEBUG_LEVEL >= 2
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001493}
1494
1495template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001496inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00001497basic_string<_CharT, _Traits, _Allocator>::basic_string()
Marshall Clowc912c0c2015-06-04 02:05:41 +00001498 _NOEXCEPT_(is_nothrow_default_constructible<allocator_type>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001499{
Howard Hinnant499cea12013-08-23 17:37:05 +00001500#if _LIBCPP_DEBUG_LEVEL >= 2
1501 __get_db()->__insert_c(this);
1502#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001503 __zero();
1504}
1505
1506template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001507inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001508basic_string<_CharT, _Traits, _Allocator>::basic_string(const allocator_type& __a)
Eric Fiselier692177d2015-07-18 20:40:46 +00001509#if _LIBCPP_STD_VER <= 14
1510 _NOEXCEPT_(is_nothrow_copy_constructible<allocator_type>::value)
1511#else
1512 _NOEXCEPT
1513#endif
1514: __r_(__a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001515{
Howard Hinnant499cea12013-08-23 17:37:05 +00001516#if _LIBCPP_DEBUG_LEVEL >= 2
1517 __get_db()->__insert_c(this);
1518#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001519 __zero();
1520}
1521
1522template <class _CharT, class _Traits, class _Allocator>
Eric Fiselier6dbed462016-09-16 00:00:48 +00001523void basic_string<_CharT, _Traits, _Allocator>::__init(const value_type* __s,
1524 size_type __sz,
1525 size_type __reserve)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001526{
1527 if (__reserve > max_size())
1528 this->__throw_length_error();
1529 pointer __p;
1530 if (__reserve < __min_cap)
1531 {
1532 __set_short_size(__sz);
1533 __p = __get_short_pointer();
1534 }
1535 else
1536 {
1537 size_type __cap = __recommend(__reserve);
Howard Hinnante32b5e22010-11-17 17:55:08 +00001538 __p = __alloc_traits::allocate(__alloc(), __cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001539 __set_long_pointer(__p);
1540 __set_long_cap(__cap+1);
1541 __set_long_size(__sz);
1542 }
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001543 traits_type::copy(_VSTD::__to_raw_pointer(__p), __s, __sz);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001544 traits_type::assign(__p[__sz], value_type());
1545}
1546
1547template <class _CharT, class _Traits, class _Allocator>
1548void
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001549basic_string<_CharT, _Traits, _Allocator>::__init(const value_type* __s, size_type __sz)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001550{
1551 if (__sz > max_size())
1552 this->__throw_length_error();
1553 pointer __p;
1554 if (__sz < __min_cap)
1555 {
1556 __set_short_size(__sz);
1557 __p = __get_short_pointer();
1558 }
1559 else
1560 {
1561 size_type __cap = __recommend(__sz);
Howard Hinnante32b5e22010-11-17 17:55:08 +00001562 __p = __alloc_traits::allocate(__alloc(), __cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001563 __set_long_pointer(__p);
1564 __set_long_cap(__cap+1);
1565 __set_long_size(__sz);
1566 }
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001567 traits_type::copy(_VSTD::__to_raw_pointer(__p), __s, __sz);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001568 traits_type::assign(__p[__sz], value_type());
1569}
1570
1571template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001572inline _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +00001573basic_string<_CharT, _Traits, _Allocator>::basic_string(const _CharT* __s)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001574{
Howard Hinnant499cea12013-08-23 17:37:05 +00001575 _LIBCPP_ASSERT(__s != nullptr, "basic_string(const char*) detected nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001576 __init(__s, traits_type::length(__s));
Howard Hinnant499cea12013-08-23 17:37:05 +00001577#if _LIBCPP_DEBUG_LEVEL >= 2
1578 __get_db()->__insert_c(this);
1579#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001580}
1581
1582template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001583inline _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +00001584basic_string<_CharT, _Traits, _Allocator>::basic_string(const _CharT* __s, const _Allocator& __a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001585 : __r_(__a)
1586{
Howard Hinnant499cea12013-08-23 17:37:05 +00001587 _LIBCPP_ASSERT(__s != nullptr, "basic_string(const char*, allocator) detected nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001588 __init(__s, traits_type::length(__s));
Howard Hinnant499cea12013-08-23 17:37:05 +00001589#if _LIBCPP_DEBUG_LEVEL >= 2
1590 __get_db()->__insert_c(this);
1591#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001592}
1593
1594template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001595inline _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +00001596basic_string<_CharT, _Traits, _Allocator>::basic_string(const _CharT* __s, size_type __n)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001597{
Howard Hinnant499cea12013-08-23 17:37:05 +00001598 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "basic_string(const char*, n) detected nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001599 __init(__s, __n);
Howard Hinnant499cea12013-08-23 17:37:05 +00001600#if _LIBCPP_DEBUG_LEVEL >= 2
1601 __get_db()->__insert_c(this);
1602#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001603}
1604
1605template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001606inline _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +00001607basic_string<_CharT, _Traits, _Allocator>::basic_string(const _CharT* __s, size_type __n, const _Allocator& __a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001608 : __r_(__a)
1609{
Howard Hinnant499cea12013-08-23 17:37:05 +00001610 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "basic_string(const char*, n, allocator) detected nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001611 __init(__s, __n);
Howard Hinnant499cea12013-08-23 17:37:05 +00001612#if _LIBCPP_DEBUG_LEVEL >= 2
1613 __get_db()->__insert_c(this);
1614#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001615}
1616
1617template <class _CharT, class _Traits, class _Allocator>
1618basic_string<_CharT, _Traits, _Allocator>::basic_string(const basic_string& __str)
Howard Hinnante32b5e22010-11-17 17:55:08 +00001619 : __r_(__alloc_traits::select_on_container_copy_construction(__str.__alloc()))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001620{
1621 if (!__str.__is_long())
1622 __r_.first().__r = __str.__r_.first().__r;
1623 else
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001624 __init(_VSTD::__to_raw_pointer(__str.__get_long_pointer()), __str.__get_long_size());
Howard Hinnant499cea12013-08-23 17:37:05 +00001625#if _LIBCPP_DEBUG_LEVEL >= 2
1626 __get_db()->__insert_c(this);
1627#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001628}
1629
1630template <class _CharT, class _Traits, class _Allocator>
Eric Fiselier0eaf2e82017-02-17 01:17:10 +00001631basic_string<_CharT, _Traits, _Allocator>::basic_string(
1632 const basic_string& __str, const allocator_type& __a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001633 : __r_(__a)
1634{
1635 if (!__str.__is_long())
1636 __r_.first().__r = __str.__r_.first().__r;
1637 else
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001638 __init(_VSTD::__to_raw_pointer(__str.__get_long_pointer()), __str.__get_long_size());
Howard Hinnant499cea12013-08-23 17:37:05 +00001639#if _LIBCPP_DEBUG_LEVEL >= 2
1640 __get_db()->__insert_c(this);
1641#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001642}
1643
Howard Hinnant73d21a42010-09-04 23:28:19 +00001644#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001645
1646template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001647inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00001648basic_string<_CharT, _Traits, _Allocator>::basic_string(basic_string&& __str)
Marshall Clow7b193f72015-06-03 19:56:43 +00001649#if _LIBCPP_STD_VER <= 14
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00001650 _NOEXCEPT_(is_nothrow_move_constructible<allocator_type>::value)
Marshall Clow7b193f72015-06-03 19:56:43 +00001651#else
1652 _NOEXCEPT
1653#endif
Howard Hinnant0949eed2011-06-30 21:18:19 +00001654 : __r_(_VSTD::move(__str.__r_))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001655{
1656 __str.__zero();
Howard Hinnant499cea12013-08-23 17:37:05 +00001657#if _LIBCPP_DEBUG_LEVEL >= 2
1658 __get_db()->__insert_c(this);
1659 if (__is_long())
1660 __get_db()->swap(this, &__str);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001661#endif
1662}
1663
1664template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001665inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001666basic_string<_CharT, _Traits, _Allocator>::basic_string(basic_string&& __str, const allocator_type& __a)
Howard Hinnante32b5e22010-11-17 17:55:08 +00001667 : __r_(__a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001668{
Marshall Clowd5549cc2014-07-17 15:32:20 +00001669 if (__str.__is_long() && __a != __str.__alloc()) // copy, not move
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001670 __init(_VSTD::__to_raw_pointer(__str.__get_long_pointer()), __str.__get_long_size());
Marshall Clowd5549cc2014-07-17 15:32:20 +00001671 else
1672 {
1673 __r_.first().__r = __str.__r_.first().__r;
1674 __str.__zero();
1675 }
Howard Hinnant499cea12013-08-23 17:37:05 +00001676#if _LIBCPP_DEBUG_LEVEL >= 2
1677 __get_db()->__insert_c(this);
1678 if (__is_long())
1679 __get_db()->swap(this, &__str);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001680#endif
1681}
1682
Howard Hinnant73d21a42010-09-04 23:28:19 +00001683#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001684
1685template <class _CharT, class _Traits, class _Allocator>
1686void
1687basic_string<_CharT, _Traits, _Allocator>::__init(size_type __n, value_type __c)
1688{
1689 if (__n > max_size())
1690 this->__throw_length_error();
1691 pointer __p;
1692 if (__n < __min_cap)
1693 {
1694 __set_short_size(__n);
1695 __p = __get_short_pointer();
1696 }
1697 else
1698 {
1699 size_type __cap = __recommend(__n);
Howard Hinnante32b5e22010-11-17 17:55:08 +00001700 __p = __alloc_traits::allocate(__alloc(), __cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001701 __set_long_pointer(__p);
1702 __set_long_cap(__cap+1);
1703 __set_long_size(__n);
1704 }
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001705 traits_type::assign(_VSTD::__to_raw_pointer(__p), __n, __c);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001706 traits_type::assign(__p[__n], value_type());
1707}
1708
1709template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001710inline _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +00001711basic_string<_CharT, _Traits, _Allocator>::basic_string(size_type __n, _CharT __c)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001712{
1713 __init(__n, __c);
Howard Hinnant499cea12013-08-23 17:37:05 +00001714#if _LIBCPP_DEBUG_LEVEL >= 2
1715 __get_db()->__insert_c(this);
1716#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001717}
1718
1719template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001720inline _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +00001721basic_string<_CharT, _Traits, _Allocator>::basic_string(size_type __n, _CharT __c, const _Allocator& __a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001722 : __r_(__a)
1723{
1724 __init(__n, __c);
Howard Hinnant499cea12013-08-23 17:37:05 +00001725#if _LIBCPP_DEBUG_LEVEL >= 2
1726 __get_db()->__insert_c(this);
1727#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001728}
1729
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001730template <class _CharT, class _Traits, class _Allocator>
Eric Fiselier0eaf2e82017-02-17 01:17:10 +00001731basic_string<_CharT, _Traits, _Allocator>::basic_string(const basic_string& __str,
1732 size_type __pos, size_type __n,
1733 const _Allocator& __a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001734 : __r_(__a)
1735{
1736 size_type __str_sz = __str.size();
1737 if (__pos > __str_sz)
1738 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00001739 __init(__str.data() + __pos, _VSTD::min(__n, __str_sz - __pos));
Howard Hinnant499cea12013-08-23 17:37:05 +00001740#if _LIBCPP_DEBUG_LEVEL >= 2
1741 __get_db()->__insert_c(this);
1742#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001743}
1744
1745template <class _CharT, class _Traits, class _Allocator>
Marshall Clowf4f7d8f2016-04-07 18:13:41 +00001746inline _LIBCPP_INLINE_VISIBILITY
1747basic_string<_CharT, _Traits, _Allocator>::basic_string(const basic_string& __str, size_type __pos,
Eric Fiselier0eaf2e82017-02-17 01:17:10 +00001748 const _Allocator& __a)
Marshall Clowf4f7d8f2016-04-07 18:13:41 +00001749 : __r_(__a)
1750{
1751 size_type __str_sz = __str.size();
1752 if (__pos > __str_sz)
1753 this->__throw_out_of_range();
1754 __init(__str.data() + __pos, __str_sz - __pos);
1755#if _LIBCPP_DEBUG_LEVEL >= 2
1756 __get_db()->__insert_c(this);
1757#endif
1758}
1759
1760template <class _CharT, class _Traits, class _Allocator>
Marshall Clowdb7fa112016-11-14 18:22:19 +00001761template <class _Tp>
1762basic_string<_CharT, _Traits, _Allocator>::basic_string(
1763 const _Tp& __t, size_type __pos, size_type __n, const allocator_type& __a,
1764 typename enable_if<__can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value, void>::type *)
1765 : __r_(__a)
1766{
1767 __self_view __sv = __self_view(__t).substr(__pos, __n);
1768 __init(__sv.data(), __sv.size());
1769#if _LIBCPP_DEBUG_LEVEL >= 2
1770 __get_db()->__insert_c(this);
Eric Fiselier0eaf2e82017-02-17 01:17:10 +00001771#endif
Marshall Clowdb7fa112016-11-14 18:22:19 +00001772}
1773
1774template <class _CharT, class _Traits, class _Allocator>
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001775inline _LIBCPP_INLINE_VISIBILITY
1776basic_string<_CharT, _Traits, _Allocator>::basic_string(__self_view __sv)
1777{
1778 __init(__sv.data(), __sv.size());
1779#if _LIBCPP_DEBUG_LEVEL >= 2
1780 __get_db()->__insert_c(this);
1781#endif
1782}
1783
1784template <class _CharT, class _Traits, class _Allocator>
1785inline _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +00001786basic_string<_CharT, _Traits, _Allocator>::basic_string(__self_view __sv, const _Allocator& __a)
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001787 : __r_(__a)
1788{
1789 __init(__sv.data(), __sv.size());
1790#if _LIBCPP_DEBUG_LEVEL >= 2
1791 __get_db()->__insert_c(this);
1792#endif
1793}
1794
1795template <class _CharT, class _Traits, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001796template <class _InputIterator>
1797typename enable_if
1798<
Marshall Clowdf9db312016-01-13 21:54:34 +00001799 __is_exactly_input_iterator<_InputIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001800 void
1801>::type
1802basic_string<_CharT, _Traits, _Allocator>::__init(_InputIterator __first, _InputIterator __last)
1803{
1804 __zero();
1805#ifndef _LIBCPP_NO_EXCEPTIONS
1806 try
1807 {
Howard Hinnant324bb032010-08-22 00:02:43 +00001808#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001809 for (; __first != __last; ++__first)
1810 push_back(*__first);
1811#ifndef _LIBCPP_NO_EXCEPTIONS
1812 }
1813 catch (...)
1814 {
1815 if (__is_long())
Howard Hinnante32b5e22010-11-17 17:55:08 +00001816 __alloc_traits::deallocate(__alloc(), __get_long_pointer(), __get_long_cap());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001817 throw;
1818 }
Howard Hinnant324bb032010-08-22 00:02:43 +00001819#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001820}
1821
1822template <class _CharT, class _Traits, class _Allocator>
1823template <class _ForwardIterator>
1824typename enable_if
1825<
1826 __is_forward_iterator<_ForwardIterator>::value,
1827 void
1828>::type
1829basic_string<_CharT, _Traits, _Allocator>::__init(_ForwardIterator __first, _ForwardIterator __last)
1830{
Howard Hinnant0949eed2011-06-30 21:18:19 +00001831 size_type __sz = static_cast<size_type>(_VSTD::distance(__first, __last));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001832 if (__sz > max_size())
1833 this->__throw_length_error();
1834 pointer __p;
1835 if (__sz < __min_cap)
1836 {
1837 __set_short_size(__sz);
1838 __p = __get_short_pointer();
1839 }
1840 else
1841 {
1842 size_type __cap = __recommend(__sz);
Howard Hinnante32b5e22010-11-17 17:55:08 +00001843 __p = __alloc_traits::allocate(__alloc(), __cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001844 __set_long_pointer(__p);
1845 __set_long_cap(__cap+1);
1846 __set_long_size(__sz);
1847 }
Eric Fiselierb9919752014-10-27 19:28:20 +00001848 for (; __first != __last; ++__first, (void) ++__p)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001849 traits_type::assign(*__p, *__first);
1850 traits_type::assign(*__p, value_type());
1851}
1852
1853template <class _CharT, class _Traits, class _Allocator>
1854template<class _InputIterator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001855inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001856basic_string<_CharT, _Traits, _Allocator>::basic_string(_InputIterator __first, _InputIterator __last)
1857{
1858 __init(__first, __last);
Howard Hinnant499cea12013-08-23 17:37:05 +00001859#if _LIBCPP_DEBUG_LEVEL >= 2
1860 __get_db()->__insert_c(this);
1861#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001862}
1863
1864template <class _CharT, class _Traits, class _Allocator>
1865template<class _InputIterator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001866inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001867basic_string<_CharT, _Traits, _Allocator>::basic_string(_InputIterator __first, _InputIterator __last,
1868 const allocator_type& __a)
1869 : __r_(__a)
1870{
1871 __init(__first, __last);
Howard Hinnant499cea12013-08-23 17:37:05 +00001872#if _LIBCPP_DEBUG_LEVEL >= 2
1873 __get_db()->__insert_c(this);
1874#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001875}
1876
Howard Hinnante3e32912011-08-12 21:56:02 +00001877#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
1878
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001879template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001880inline _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +00001881basic_string<_CharT, _Traits, _Allocator>::basic_string(
1882 initializer_list<_CharT> __il)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001883{
1884 __init(__il.begin(), __il.end());
Howard Hinnant499cea12013-08-23 17:37:05 +00001885#if _LIBCPP_DEBUG_LEVEL >= 2
1886 __get_db()->__insert_c(this);
1887#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001888}
1889
1890template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001891inline _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +00001892basic_string<_CharT, _Traits, _Allocator>::basic_string(
1893 initializer_list<_CharT> __il, const _Allocator& __a)
1894
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001895 : __r_(__a)
1896{
1897 __init(__il.begin(), __il.end());
Howard Hinnant499cea12013-08-23 17:37:05 +00001898#if _LIBCPP_DEBUG_LEVEL >= 2
1899 __get_db()->__insert_c(this);
1900#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001901}
1902
Howard Hinnante3e32912011-08-12 21:56:02 +00001903#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
1904
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001905template <class _CharT, class _Traits, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001906basic_string<_CharT, _Traits, _Allocator>::~basic_string()
1907{
Howard Hinnant499cea12013-08-23 17:37:05 +00001908#if _LIBCPP_DEBUG_LEVEL >= 2
1909 __get_db()->__erase_c(this);
1910#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001911 if (__is_long())
Howard Hinnante32b5e22010-11-17 17:55:08 +00001912 __alloc_traits::deallocate(__alloc(), __get_long_pointer(), __get_long_cap());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001913}
1914
1915template <class _CharT, class _Traits, class _Allocator>
1916void
1917basic_string<_CharT, _Traits, _Allocator>::__grow_by_and_replace
1918 (size_type __old_cap, size_type __delta_cap, size_type __old_sz,
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001919 size_type __n_copy, size_type __n_del, size_type __n_add, const value_type* __p_new_stuff)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001920{
1921 size_type __ms = max_size();
1922 if (__delta_cap > __ms - __old_cap - 1)
1923 this->__throw_length_error();
1924 pointer __old_p = __get_pointer();
1925 size_type __cap = __old_cap < __ms / 2 - __alignment ?
Howard Hinnant0949eed2011-06-30 21:18:19 +00001926 __recommend(_VSTD::max(__old_cap + __delta_cap, 2 * __old_cap)) :
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001927 __ms - 1;
Howard Hinnante32b5e22010-11-17 17:55:08 +00001928 pointer __p = __alloc_traits::allocate(__alloc(), __cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001929 __invalidate_all_iterators();
1930 if (__n_copy != 0)
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001931 traits_type::copy(_VSTD::__to_raw_pointer(__p),
1932 _VSTD::__to_raw_pointer(__old_p), __n_copy);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001933 if (__n_add != 0)
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001934 traits_type::copy(_VSTD::__to_raw_pointer(__p) + __n_copy, __p_new_stuff, __n_add);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001935 size_type __sec_cp_sz = __old_sz - __n_del - __n_copy;
1936 if (__sec_cp_sz != 0)
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001937 traits_type::copy(_VSTD::__to_raw_pointer(__p) + __n_copy + __n_add,
1938 _VSTD::__to_raw_pointer(__old_p) + __n_copy + __n_del, __sec_cp_sz);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001939 if (__old_cap+1 != __min_cap)
Howard Hinnante32b5e22010-11-17 17:55:08 +00001940 __alloc_traits::deallocate(__alloc(), __old_p, __old_cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001941 __set_long_pointer(__p);
1942 __set_long_cap(__cap+1);
1943 __old_sz = __n_copy + __n_add + __sec_cp_sz;
1944 __set_long_size(__old_sz);
1945 traits_type::assign(__p[__old_sz], value_type());
1946}
1947
1948template <class _CharT, class _Traits, class _Allocator>
1949void
1950basic_string<_CharT, _Traits, _Allocator>::__grow_by(size_type __old_cap, size_type __delta_cap, size_type __old_sz,
1951 size_type __n_copy, size_type __n_del, size_type __n_add)
1952{
1953 size_type __ms = max_size();
Marshall Clowecc8d7b2013-11-06 14:24:38 +00001954 if (__delta_cap > __ms - __old_cap)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001955 this->__throw_length_error();
1956 pointer __old_p = __get_pointer();
1957 size_type __cap = __old_cap < __ms / 2 - __alignment ?
Howard Hinnant0949eed2011-06-30 21:18:19 +00001958 __recommend(_VSTD::max(__old_cap + __delta_cap, 2 * __old_cap)) :
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001959 __ms - 1;
Howard Hinnante32b5e22010-11-17 17:55:08 +00001960 pointer __p = __alloc_traits::allocate(__alloc(), __cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001961 __invalidate_all_iterators();
1962 if (__n_copy != 0)
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001963 traits_type::copy(_VSTD::__to_raw_pointer(__p),
1964 _VSTD::__to_raw_pointer(__old_p), __n_copy);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001965 size_type __sec_cp_sz = __old_sz - __n_del - __n_copy;
1966 if (__sec_cp_sz != 0)
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001967 traits_type::copy(_VSTD::__to_raw_pointer(__p) + __n_copy + __n_add,
1968 _VSTD::__to_raw_pointer(__old_p) + __n_copy + __n_del,
1969 __sec_cp_sz);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001970 if (__old_cap+1 != __min_cap)
Howard Hinnante32b5e22010-11-17 17:55:08 +00001971 __alloc_traits::deallocate(__alloc(), __old_p, __old_cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001972 __set_long_pointer(__p);
1973 __set_long_cap(__cap+1);
1974}
1975
1976// assign
1977
1978template <class _CharT, class _Traits, class _Allocator>
1979basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001980basic_string<_CharT, _Traits, _Allocator>::assign(const value_type* __s, size_type __n)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001981{
Alp Tokerec34c482014-05-15 11:27:39 +00001982 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::assign received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001983 size_type __cap = capacity();
1984 if (__cap >= __n)
1985 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001986 value_type* __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001987 traits_type::move(__p, __s, __n);
1988 traits_type::assign(__p[__n], value_type());
1989 __set_size(__n);
1990 __invalidate_iterators_past(__n);
1991 }
1992 else
1993 {
1994 size_type __sz = size();
1995 __grow_by_and_replace(__cap, __n - __cap, __sz, 0, __sz, __n, __s);
1996 }
1997 return *this;
1998}
1999
2000template <class _CharT, class _Traits, class _Allocator>
2001basic_string<_CharT, _Traits, _Allocator>&
2002basic_string<_CharT, _Traits, _Allocator>::assign(size_type __n, value_type __c)
2003{
2004 size_type __cap = capacity();
2005 if (__cap < __n)
2006 {
2007 size_type __sz = size();
2008 __grow_by(__cap, __n - __cap, __sz, 0, __sz);
2009 }
2010 else
2011 __invalidate_iterators_past(__n);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002012 value_type* __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002013 traits_type::assign(__p, __n, __c);
2014 traits_type::assign(__p[__n], value_type());
2015 __set_size(__n);
2016 return *this;
2017}
2018
2019template <class _CharT, class _Traits, class _Allocator>
2020basic_string<_CharT, _Traits, _Allocator>&
2021basic_string<_CharT, _Traits, _Allocator>::operator=(value_type __c)
2022{
2023 pointer __p;
2024 if (__is_long())
2025 {
2026 __p = __get_long_pointer();
2027 __set_long_size(1);
2028 }
2029 else
2030 {
2031 __p = __get_short_pointer();
2032 __set_short_size(1);
2033 }
2034 traits_type::assign(*__p, __c);
2035 traits_type::assign(*++__p, value_type());
2036 __invalidate_iterators_past(1);
2037 return *this;
2038}
2039
2040template <class _CharT, class _Traits, class _Allocator>
Howard Hinnante32b5e22010-11-17 17:55:08 +00002041basic_string<_CharT, _Traits, _Allocator>&
2042basic_string<_CharT, _Traits, _Allocator>::operator=(const basic_string& __str)
2043{
2044 if (this != &__str)
2045 {
2046 __copy_assign_alloc(__str);
Marshall Clowf40ec902016-03-09 18:08:29 +00002047 assign(__str.data(), __str.size());
Howard Hinnante32b5e22010-11-17 17:55:08 +00002048 }
2049 return *this;
2050}
2051
2052#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
2053
2054template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002055inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnante32b5e22010-11-17 17:55:08 +00002056void
2057basic_string<_CharT, _Traits, _Allocator>::__move_assign(basic_string& __str, false_type)
Marshall Clowaf961ed2015-08-18 18:57:00 +00002058 _NOEXCEPT_(__alloc_traits::is_always_equal::value)
Howard Hinnante32b5e22010-11-17 17:55:08 +00002059{
2060 if (__alloc() != __str.__alloc())
2061 assign(__str);
2062 else
2063 __move_assign(__str, true_type());
2064}
2065
2066template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002067inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnante32b5e22010-11-17 17:55:08 +00002068void
2069basic_string<_CharT, _Traits, _Allocator>::__move_assign(basic_string& __str, true_type)
Marshall Clowaf961ed2015-08-18 18:57:00 +00002070#if _LIBCPP_STD_VER > 14
2071 _NOEXCEPT
2072#else
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00002073 _NOEXCEPT_(is_nothrow_move_assignable<allocator_type>::value)
Marshall Clowaf961ed2015-08-18 18:57:00 +00002074#endif
Howard Hinnante32b5e22010-11-17 17:55:08 +00002075{
2076 clear();
2077 shrink_to_fit();
Howard Hinnant3fdbbd22011-08-17 20:36:18 +00002078 __r_.first() = __str.__r_.first();
2079 __move_assign_alloc(__str);
Howard Hinnante32b5e22010-11-17 17:55:08 +00002080 __str.__zero();
2081}
2082
2083template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002084inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnante32b5e22010-11-17 17:55:08 +00002085basic_string<_CharT, _Traits, _Allocator>&
2086basic_string<_CharT, _Traits, _Allocator>::operator=(basic_string&& __str)
Marshall Clowaf961ed2015-08-18 18:57:00 +00002087 _NOEXCEPT_((__noexcept_move_assign_container<_Allocator, __alloc_traits>::value))
Howard Hinnante32b5e22010-11-17 17:55:08 +00002088{
2089 __move_assign(__str, integral_constant<bool,
2090 __alloc_traits::propagate_on_container_move_assignment::value>());
2091 return *this;
2092}
2093
2094#endif
2095
2096template <class _CharT, class _Traits, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002097template<class _InputIterator>
2098typename enable_if
2099<
Marshall Clowdf9db312016-01-13 21:54:34 +00002100 __is_exactly_input_iterator <_InputIterator>::value
2101 || !__libcpp_string_gets_noexcept_iterator<_InputIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002102 basic_string<_CharT, _Traits, _Allocator>&
2103>::type
2104basic_string<_CharT, _Traits, _Allocator>::assign(_InputIterator __first, _InputIterator __last)
2105{
Marshall Clowd979eed2016-09-05 01:54:30 +00002106 const basic_string __temp(__first, __last, __alloc());
Marshall Clowdf9db312016-01-13 21:54:34 +00002107 assign(__temp.data(), __temp.size());
Argyrios Kyrtzidis1dc6f7a2012-10-13 02:03:45 +00002108 return *this;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002109}
2110
2111template <class _CharT, class _Traits, class _Allocator>
2112template<class _ForwardIterator>
2113typename enable_if
2114<
Marshall Clowdf9db312016-01-13 21:54:34 +00002115 __is_forward_iterator<_ForwardIterator>::value
2116 && __libcpp_string_gets_noexcept_iterator<_ForwardIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002117 basic_string<_CharT, _Traits, _Allocator>&
2118>::type
2119basic_string<_CharT, _Traits, _Allocator>::assign(_ForwardIterator __first, _ForwardIterator __last)
2120{
Howard Hinnant0949eed2011-06-30 21:18:19 +00002121 size_type __n = static_cast<size_type>(_VSTD::distance(__first, __last));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002122 size_type __cap = capacity();
2123 if (__cap < __n)
2124 {
2125 size_type __sz = size();
2126 __grow_by(__cap, __n - __cap, __sz, 0, __sz);
2127 }
2128 else
2129 __invalidate_iterators_past(__n);
2130 pointer __p = __get_pointer();
2131 for (; __first != __last; ++__first, ++__p)
2132 traits_type::assign(*__p, *__first);
2133 traits_type::assign(*__p, value_type());
2134 __set_size(__n);
2135 return *this;
2136}
2137
2138template <class _CharT, class _Traits, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002139basic_string<_CharT, _Traits, _Allocator>&
2140basic_string<_CharT, _Traits, _Allocator>::assign(const basic_string& __str, size_type __pos, size_type __n)
2141{
2142 size_type __sz = __str.size();
2143 if (__pos > __sz)
2144 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002145 return assign(__str.data() + __pos, _VSTD::min(__n, __sz - __pos));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002146}
2147
2148template <class _CharT, class _Traits, class _Allocator>
Marshall Clow6ac8de02016-09-24 22:45:42 +00002149template <class _Tp>
2150typename enable_if
2151<
2152 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
2153 basic_string<_CharT, _Traits, _Allocator>&
2154>::type
2155basic_string<_CharT, _Traits, _Allocator>::assign(const _Tp & __t, size_type __pos, size_type __n)
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002156{
Marshall Clow6ac8de02016-09-24 22:45:42 +00002157 __self_view __sv = __t;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002158 size_type __sz = __sv.size();
2159 if (__pos > __sz)
2160 this->__throw_out_of_range();
2161 return assign(__sv.data() + __pos, _VSTD::min(__n, __sz - __pos));
2162}
2163
2164
2165template <class _CharT, class _Traits, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002166basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002167basic_string<_CharT, _Traits, _Allocator>::assign(const value_type* __s)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002168{
Alp Tokerec34c482014-05-15 11:27:39 +00002169 _LIBCPP_ASSERT(__s != nullptr, "string::assign received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002170 return assign(__s, traits_type::length(__s));
2171}
2172
2173// append
2174
2175template <class _CharT, class _Traits, class _Allocator>
2176basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002177basic_string<_CharT, _Traits, _Allocator>::append(const value_type* __s, size_type __n)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002178{
Alp Tokerec34c482014-05-15 11:27:39 +00002179 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::append received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002180 size_type __cap = capacity();
2181 size_type __sz = size();
2182 if (__cap - __sz >= __n)
2183 {
2184 if (__n)
2185 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002186 value_type* __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002187 traits_type::copy(__p + __sz, __s, __n);
2188 __sz += __n;
2189 __set_size(__sz);
2190 traits_type::assign(__p[__sz], value_type());
2191 }
2192 }
2193 else
2194 __grow_by_and_replace(__cap, __sz + __n - __cap, __sz, __sz, 0, __n, __s);
2195 return *this;
2196}
2197
2198template <class _CharT, class _Traits, class _Allocator>
2199basic_string<_CharT, _Traits, _Allocator>&
2200basic_string<_CharT, _Traits, _Allocator>::append(size_type __n, value_type __c)
2201{
2202 if (__n)
2203 {
2204 size_type __cap = capacity();
2205 size_type __sz = size();
2206 if (__cap - __sz < __n)
2207 __grow_by(__cap, __sz + __n - __cap, __sz, __sz, 0);
2208 pointer __p = __get_pointer();
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002209 traits_type::assign(_VSTD::__to_raw_pointer(__p) + __sz, __n, __c);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002210 __sz += __n;
2211 __set_size(__sz);
2212 traits_type::assign(__p[__sz], value_type());
2213 }
2214 return *this;
2215}
2216
2217template <class _CharT, class _Traits, class _Allocator>
2218void
2219basic_string<_CharT, _Traits, _Allocator>::push_back(value_type __c)
2220{
Howard Hinnant15467182013-04-30 21:44:48 +00002221 bool __is_short = !__is_long();
2222 size_type __cap;
2223 size_type __sz;
2224 if (__is_short)
2225 {
2226 __cap = __min_cap - 1;
2227 __sz = __get_short_size();
2228 }
2229 else
2230 {
2231 __cap = __get_long_cap() - 1;
2232 __sz = __get_long_size();
2233 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002234 if (__sz == __cap)
Howard Hinnant15467182013-04-30 21:44:48 +00002235 {
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002236 __grow_by(__cap, 1, __sz, __sz, 0);
Howard Hinnant15467182013-04-30 21:44:48 +00002237 __is_short = !__is_long();
2238 }
2239 pointer __p;
2240 if (__is_short)
2241 {
2242 __p = __get_short_pointer() + __sz;
2243 __set_short_size(__sz+1);
2244 }
2245 else
2246 {
2247 __p = __get_long_pointer() + __sz;
2248 __set_long_size(__sz+1);
2249 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002250 traits_type::assign(*__p, __c);
2251 traits_type::assign(*++__p, value_type());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002252}
2253
Marshall Clowac655ef2016-09-07 03:32:06 +00002254template <class _Tp>
Marshall Clowd979eed2016-09-05 01:54:30 +00002255bool __ptr_in_range (const _Tp* __p, const _Tp* __first, const _Tp* __last)
2256{
2257 return __first <= __p && __p < __last;
2258}
2259
Marshall Clowac655ef2016-09-07 03:32:06 +00002260template <class _Tp1, class _Tp2>
Eric Fiselier0e5ebbc2016-12-23 23:37:52 +00002261bool __ptr_in_range (const _Tp1*, const _Tp2*, const _Tp2*)
Marshall Clowac655ef2016-09-07 03:32:06 +00002262{
2263 return false;
2264}
2265
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002266template <class _CharT, class _Traits, class _Allocator>
2267template<class _ForwardIterator>
Eric Fiselier026d38e2016-10-31 02:46:25 +00002268basic_string<_CharT, _Traits, _Allocator>&
2269basic_string<_CharT, _Traits, _Allocator>::__append_forward_unsafe(
2270 _ForwardIterator __first, _ForwardIterator __last)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002271{
Eric Fiselier026d38e2016-10-31 02:46:25 +00002272 static_assert(__is_forward_iterator<_ForwardIterator>::value,
2273 "function requires a ForwardIterator");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002274 size_type __sz = size();
2275 size_type __cap = capacity();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002276 size_type __n = static_cast<size_type>(_VSTD::distance(__first, __last));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002277 if (__n)
2278 {
Marshall Clowd979eed2016-09-05 01:54:30 +00002279 if ( __ptr_in_range(&*__first, data(), data() + size()))
2280 {
2281 const basic_string __temp (__first, __last, __alloc());
2282 append(__temp.data(), __temp.size());
2283 }
2284 else
2285 {
2286 if (__cap - __sz < __n)
2287 __grow_by(__cap, __sz + __n - __cap, __sz, __sz, 0);
2288 pointer __p = __get_pointer() + __sz;
2289 for (; __first != __last; ++__p, ++__first)
2290 traits_type::assign(*__p, *__first);
2291 traits_type::assign(*__p, value_type());
2292 __set_size(__sz + __n);
2293 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002294 }
2295 return *this;
2296}
2297
2298template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002299inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002300basic_string<_CharT, _Traits, _Allocator>&
2301basic_string<_CharT, _Traits, _Allocator>::append(const basic_string& __str)
2302{
2303 return append(__str.data(), __str.size());
2304}
2305
2306template <class _CharT, class _Traits, class _Allocator>
2307basic_string<_CharT, _Traits, _Allocator>&
2308basic_string<_CharT, _Traits, _Allocator>::append(const basic_string& __str, size_type __pos, size_type __n)
2309{
2310 size_type __sz = __str.size();
2311 if (__pos > __sz)
2312 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002313 return append(__str.data() + __pos, _VSTD::min(__n, __sz - __pos));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002314}
2315
2316template <class _CharT, class _Traits, class _Allocator>
Marshall Clow42a87db2016-10-03 23:40:48 +00002317template <class _Tp>
Marshall Clow6ac8de02016-09-24 22:45:42 +00002318 typename enable_if
2319 <
2320 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
2321 basic_string<_CharT, _Traits, _Allocator>&
2322 >::type
2323basic_string<_CharT, _Traits, _Allocator>::append(const _Tp & __t, size_type __pos, size_type __n)
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002324{
Marshall Clow6ac8de02016-09-24 22:45:42 +00002325 __self_view __sv = __t;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002326 size_type __sz = __sv.size();
2327 if (__pos > __sz)
2328 this->__throw_out_of_range();
2329 return append(__sv.data() + __pos, _VSTD::min(__n, __sz - __pos));
2330}
2331
2332template <class _CharT, class _Traits, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002333basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002334basic_string<_CharT, _Traits, _Allocator>::append(const value_type* __s)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002335{
Alp Tokerec34c482014-05-15 11:27:39 +00002336 _LIBCPP_ASSERT(__s != nullptr, "string::append received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002337 return append(__s, traits_type::length(__s));
2338}
2339
2340// insert
2341
2342template <class _CharT, class _Traits, class _Allocator>
2343basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002344basic_string<_CharT, _Traits, _Allocator>::insert(size_type __pos, const value_type* __s, size_type __n)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002345{
Alp Tokerec34c482014-05-15 11:27:39 +00002346 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::insert received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002347 size_type __sz = size();
2348 if (__pos > __sz)
2349 this->__throw_out_of_range();
2350 size_type __cap = capacity();
2351 if (__cap - __sz >= __n)
2352 {
2353 if (__n)
2354 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002355 value_type* __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002356 size_type __n_move = __sz - __pos;
2357 if (__n_move != 0)
2358 {
2359 if (__p + __pos <= __s && __s < __p + __sz)
2360 __s += __n;
2361 traits_type::move(__p + __pos + __n, __p + __pos, __n_move);
2362 }
2363 traits_type::move(__p + __pos, __s, __n);
2364 __sz += __n;
2365 __set_size(__sz);
2366 traits_type::assign(__p[__sz], value_type());
2367 }
2368 }
2369 else
2370 __grow_by_and_replace(__cap, __sz + __n - __cap, __sz, __pos, 0, __n, __s);
2371 return *this;
2372}
2373
2374template <class _CharT, class _Traits, class _Allocator>
2375basic_string<_CharT, _Traits, _Allocator>&
2376basic_string<_CharT, _Traits, _Allocator>::insert(size_type __pos, size_type __n, value_type __c)
2377{
2378 size_type __sz = size();
2379 if (__pos > __sz)
2380 this->__throw_out_of_range();
2381 if (__n)
2382 {
2383 size_type __cap = capacity();
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002384 value_type* __p;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002385 if (__cap - __sz >= __n)
2386 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002387 __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002388 size_type __n_move = __sz - __pos;
2389 if (__n_move != 0)
2390 traits_type::move(__p + __pos + __n, __p + __pos, __n_move);
2391 }
2392 else
2393 {
2394 __grow_by(__cap, __sz + __n - __cap, __sz, __pos, 0, __n);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002395 __p = _VSTD::__to_raw_pointer(__get_long_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002396 }
2397 traits_type::assign(__p + __pos, __n, __c);
2398 __sz += __n;
2399 __set_size(__sz);
2400 traits_type::assign(__p[__sz], value_type());
2401 }
2402 return *this;
2403}
2404
2405template <class _CharT, class _Traits, class _Allocator>
2406template<class _InputIterator>
2407typename enable_if
2408<
Marshall Clowdf9db312016-01-13 21:54:34 +00002409 __is_exactly_input_iterator<_InputIterator>::value
2410 || !__libcpp_string_gets_noexcept_iterator<_InputIterator>::value,
2411 typename basic_string<_CharT, _Traits, _Allocator>::iterator
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002412>::type
2413basic_string<_CharT, _Traits, _Allocator>::insert(const_iterator __pos, _InputIterator __first, _InputIterator __last)
2414{
Howard Hinnant499cea12013-08-23 17:37:05 +00002415#if _LIBCPP_DEBUG_LEVEL >= 2
2416 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__pos) == this,
2417 "string::insert(iterator, range) called with an iterator not"
2418 " referring to this string");
2419#endif
Marshall Clowd979eed2016-09-05 01:54:30 +00002420 const basic_string __temp(__first, __last, __alloc());
Marshall Clowdf9db312016-01-13 21:54:34 +00002421 return insert(__pos, __temp.data(), __temp.data() + __temp.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002422}
2423
2424template <class _CharT, class _Traits, class _Allocator>
2425template<class _ForwardIterator>
2426typename enable_if
2427<
Marshall Clowdf9db312016-01-13 21:54:34 +00002428 __is_forward_iterator<_ForwardIterator>::value
2429 && __libcpp_string_gets_noexcept_iterator<_ForwardIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002430 typename basic_string<_CharT, _Traits, _Allocator>::iterator
2431>::type
2432basic_string<_CharT, _Traits, _Allocator>::insert(const_iterator __pos, _ForwardIterator __first, _ForwardIterator __last)
2433{
Howard Hinnant499cea12013-08-23 17:37:05 +00002434#if _LIBCPP_DEBUG_LEVEL >= 2
2435 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__pos) == this,
2436 "string::insert(iterator, range) called with an iterator not"
2437 " referring to this string");
2438#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002439 size_type __ip = static_cast<size_type>(__pos - begin());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002440 size_type __n = static_cast<size_type>(_VSTD::distance(__first, __last));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002441 if (__n)
2442 {
Marshall Clowd979eed2016-09-05 01:54:30 +00002443 if ( __ptr_in_range(&*__first, data(), data() + size()))
2444 {
2445 const basic_string __temp(__first, __last, __alloc());
2446 return insert(__pos, __temp.data(), __temp.data() + __temp.size());
2447 }
2448
2449 size_type __sz = size();
2450 size_type __cap = capacity();
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002451 value_type* __p;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002452 if (__cap - __sz >= __n)
2453 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002454 __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002455 size_type __n_move = __sz - __ip;
2456 if (__n_move != 0)
2457 traits_type::move(__p + __ip + __n, __p + __ip, __n_move);
2458 }
2459 else
2460 {
2461 __grow_by(__cap, __sz + __n - __cap, __sz, __ip, 0, __n);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002462 __p = _VSTD::__to_raw_pointer(__get_long_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002463 }
2464 __sz += __n;
2465 __set_size(__sz);
2466 traits_type::assign(__p[__sz], value_type());
2467 for (__p += __ip; __first != __last; ++__p, ++__first)
2468 traits_type::assign(*__p, *__first);
2469 }
2470 return begin() + __ip;
2471}
2472
2473template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002474inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002475basic_string<_CharT, _Traits, _Allocator>&
2476basic_string<_CharT, _Traits, _Allocator>::insert(size_type __pos1, const basic_string& __str)
2477{
2478 return insert(__pos1, __str.data(), __str.size());
2479}
2480
2481template <class _CharT, class _Traits, class _Allocator>
2482basic_string<_CharT, _Traits, _Allocator>&
2483basic_string<_CharT, _Traits, _Allocator>::insert(size_type __pos1, const basic_string& __str,
2484 size_type __pos2, size_type __n)
2485{
2486 size_type __str_sz = __str.size();
2487 if (__pos2 > __str_sz)
2488 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002489 return insert(__pos1, __str.data() + __pos2, _VSTD::min(__n, __str_sz - __pos2));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002490}
2491
2492template <class _CharT, class _Traits, class _Allocator>
Marshall Clow6ac8de02016-09-24 22:45:42 +00002493template <class _Tp>
2494typename enable_if
2495<
2496 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
2497 basic_string<_CharT, _Traits, _Allocator>&
2498>::type
2499basic_string<_CharT, _Traits, _Allocator>::insert(size_type __pos1, const _Tp& __t,
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002500 size_type __pos2, size_type __n)
2501{
Marshall Clow6ac8de02016-09-24 22:45:42 +00002502 __self_view __sv = __t;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002503 size_type __str_sz = __sv.size();
2504 if (__pos2 > __str_sz)
2505 this->__throw_out_of_range();
2506 return insert(__pos1, __sv.data() + __pos2, _VSTD::min(__n, __str_sz - __pos2));
2507}
2508
2509template <class _CharT, class _Traits, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002510basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002511basic_string<_CharT, _Traits, _Allocator>::insert(size_type __pos, const value_type* __s)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002512{
Alp Tokerec34c482014-05-15 11:27:39 +00002513 _LIBCPP_ASSERT(__s != nullptr, "string::insert received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002514 return insert(__pos, __s, traits_type::length(__s));
2515}
2516
2517template <class _CharT, class _Traits, class _Allocator>
2518typename basic_string<_CharT, _Traits, _Allocator>::iterator
2519basic_string<_CharT, _Traits, _Allocator>::insert(const_iterator __pos, value_type __c)
2520{
2521 size_type __ip = static_cast<size_type>(__pos - begin());
2522 size_type __sz = size();
2523 size_type __cap = capacity();
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002524 value_type* __p;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002525 if (__cap == __sz)
2526 {
2527 __grow_by(__cap, 1, __sz, __ip, 0, 1);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002528 __p = _VSTD::__to_raw_pointer(__get_long_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002529 }
2530 else
2531 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002532 __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002533 size_type __n_move = __sz - __ip;
2534 if (__n_move != 0)
2535 traits_type::move(__p + __ip + 1, __p + __ip, __n_move);
2536 }
2537 traits_type::assign(__p[__ip], __c);
2538 traits_type::assign(__p[++__sz], value_type());
2539 __set_size(__sz);
2540 return begin() + static_cast<difference_type>(__ip);
2541}
2542
2543template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002544inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002545typename basic_string<_CharT, _Traits, _Allocator>::iterator
2546basic_string<_CharT, _Traits, _Allocator>::insert(const_iterator __pos, size_type __n, value_type __c)
2547{
Howard Hinnant499cea12013-08-23 17:37:05 +00002548#if _LIBCPP_DEBUG_LEVEL >= 2
2549 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__pos) == this,
2550 "string::insert(iterator, n, value) called with an iterator not"
2551 " referring to this string");
2552#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002553 difference_type __p = __pos - begin();
2554 insert(static_cast<size_type>(__p), __n, __c);
2555 return begin() + __p;
2556}
2557
2558// replace
2559
2560template <class _CharT, class _Traits, class _Allocator>
2561basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002562basic_string<_CharT, _Traits, _Allocator>::replace(size_type __pos, size_type __n1, const value_type* __s, size_type __n2)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002563{
Alp Tokerec34c482014-05-15 11:27:39 +00002564 _LIBCPP_ASSERT(__n2 == 0 || __s != nullptr, "string::replace received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002565 size_type __sz = size();
2566 if (__pos > __sz)
2567 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002568 __n1 = _VSTD::min(__n1, __sz - __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002569 size_type __cap = capacity();
2570 if (__cap - __sz + __n1 >= __n2)
2571 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002572 value_type* __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002573 if (__n1 != __n2)
2574 {
2575 size_type __n_move = __sz - __pos - __n1;
2576 if (__n_move != 0)
2577 {
2578 if (__n1 > __n2)
2579 {
2580 traits_type::move(__p + __pos, __s, __n2);
2581 traits_type::move(__p + __pos + __n2, __p + __pos + __n1, __n_move);
2582 goto __finish;
2583 }
2584 if (__p + __pos < __s && __s < __p + __sz)
2585 {
2586 if (__p + __pos + __n1 <= __s)
2587 __s += __n2 - __n1;
2588 else // __p + __pos < __s < __p + __pos + __n1
2589 {
2590 traits_type::move(__p + __pos, __s, __n1);
2591 __pos += __n1;
2592 __s += __n2;
2593 __n2 -= __n1;
2594 __n1 = 0;
2595 }
2596 }
2597 traits_type::move(__p + __pos + __n2, __p + __pos + __n1, __n_move);
2598 }
2599 }
2600 traits_type::move(__p + __pos, __s, __n2);
2601__finish:
2602 __sz += __n2 - __n1;
2603 __set_size(__sz);
2604 __invalidate_iterators_past(__sz);
2605 traits_type::assign(__p[__sz], value_type());
2606 }
2607 else
2608 __grow_by_and_replace(__cap, __sz - __n1 + __n2 - __cap, __sz, __pos, __n1, __n2, __s);
2609 return *this;
2610}
2611
2612template <class _CharT, class _Traits, class _Allocator>
2613basic_string<_CharT, _Traits, _Allocator>&
2614basic_string<_CharT, _Traits, _Allocator>::replace(size_type __pos, size_type __n1, size_type __n2, value_type __c)
2615{
2616 size_type __sz = size();
2617 if (__pos > __sz)
2618 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002619 __n1 = _VSTD::min(__n1, __sz - __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002620 size_type __cap = capacity();
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002621 value_type* __p;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002622 if (__cap - __sz + __n1 >= __n2)
2623 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002624 __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002625 if (__n1 != __n2)
2626 {
2627 size_type __n_move = __sz - __pos - __n1;
2628 if (__n_move != 0)
2629 traits_type::move(__p + __pos + __n2, __p + __pos + __n1, __n_move);
2630 }
2631 }
2632 else
2633 {
2634 __grow_by(__cap, __sz - __n1 + __n2 - __cap, __sz, __pos, __n1, __n2);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002635 __p = _VSTD::__to_raw_pointer(__get_long_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002636 }
2637 traits_type::assign(__p + __pos, __n2, __c);
2638 __sz += __n2 - __n1;
2639 __set_size(__sz);
2640 __invalidate_iterators_past(__sz);
2641 traits_type::assign(__p[__sz], value_type());
2642 return *this;
2643}
2644
2645template <class _CharT, class _Traits, class _Allocator>
2646template<class _InputIterator>
2647typename enable_if
2648<
2649 __is_input_iterator<_InputIterator>::value,
2650 basic_string<_CharT, _Traits, _Allocator>&
2651>::type
Howard Hinnant7b2cb482010-11-17 21:11:40 +00002652basic_string<_CharT, _Traits, _Allocator>::replace(const_iterator __i1, const_iterator __i2,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002653 _InputIterator __j1, _InputIterator __j2)
2654{
Marshall Clowd979eed2016-09-05 01:54:30 +00002655 const basic_string __temp(__j1, __j2, __alloc());
Marshall Clowdf9db312016-01-13 21:54:34 +00002656 return this->replace(__i1, __i2, __temp);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002657}
2658
2659template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002660inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002661basic_string<_CharT, _Traits, _Allocator>&
2662basic_string<_CharT, _Traits, _Allocator>::replace(size_type __pos1, size_type __n1, const basic_string& __str)
2663{
2664 return replace(__pos1, __n1, __str.data(), __str.size());
2665}
2666
2667template <class _CharT, class _Traits, class _Allocator>
2668basic_string<_CharT, _Traits, _Allocator>&
2669basic_string<_CharT, _Traits, _Allocator>::replace(size_type __pos1, size_type __n1, const basic_string& __str,
2670 size_type __pos2, size_type __n2)
2671{
2672 size_type __str_sz = __str.size();
2673 if (__pos2 > __str_sz)
2674 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002675 return replace(__pos1, __n1, __str.data() + __pos2, _VSTD::min(__n2, __str_sz - __pos2));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002676}
2677
2678template <class _CharT, class _Traits, class _Allocator>
Marshall Clow6ac8de02016-09-24 22:45:42 +00002679template <class _Tp>
2680typename enable_if
2681<
2682 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
2683 basic_string<_CharT, _Traits, _Allocator>&
2684>::type
2685basic_string<_CharT, _Traits, _Allocator>::replace(size_type __pos1, size_type __n1, const _Tp& __t,
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002686 size_type __pos2, size_type __n2)
2687{
Marshall Clow6ac8de02016-09-24 22:45:42 +00002688 __self_view __sv = __t;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002689 size_type __str_sz = __sv.size();
2690 if (__pos2 > __str_sz)
2691 this->__throw_out_of_range();
2692 return replace(__pos1, __n1, __sv.data() + __pos2, _VSTD::min(__n2, __str_sz - __pos2));
2693}
2694
2695template <class _CharT, class _Traits, class _Allocator>
2696basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002697basic_string<_CharT, _Traits, _Allocator>::replace(size_type __pos, size_type __n1, const value_type* __s)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002698{
Alp Tokerec34c482014-05-15 11:27:39 +00002699 _LIBCPP_ASSERT(__s != nullptr, "string::replace received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002700 return replace(__pos, __n1, __s, traits_type::length(__s));
2701}
2702
2703template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002704inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002705basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant7b2cb482010-11-17 21:11:40 +00002706basic_string<_CharT, _Traits, _Allocator>::replace(const_iterator __i1, const_iterator __i2, const basic_string& __str)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002707{
2708 return replace(static_cast<size_type>(__i1 - begin()), static_cast<size_type>(__i2 - __i1),
2709 __str.data(), __str.size());
2710}
2711
2712template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002713inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002714basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002715basic_string<_CharT, _Traits, _Allocator>::replace(const_iterator __i1, const_iterator __i2, const value_type* __s, size_type __n)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002716{
2717 return replace(static_cast<size_type>(__i1 - begin()), static_cast<size_type>(__i2 - __i1), __s, __n);
2718}
2719
2720template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002721inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002722basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002723basic_string<_CharT, _Traits, _Allocator>::replace(const_iterator __i1, const_iterator __i2, const value_type* __s)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002724{
2725 return replace(static_cast<size_type>(__i1 - begin()), static_cast<size_type>(__i2 - __i1), __s);
2726}
2727
2728template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002729inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002730basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant7b2cb482010-11-17 21:11:40 +00002731basic_string<_CharT, _Traits, _Allocator>::replace(const_iterator __i1, const_iterator __i2, size_type __n, value_type __c)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002732{
2733 return replace(static_cast<size_type>(__i1 - begin()), static_cast<size_type>(__i2 - __i1), __n, __c);
2734}
2735
2736// erase
2737
2738template <class _CharT, class _Traits, class _Allocator>
2739basic_string<_CharT, _Traits, _Allocator>&
2740basic_string<_CharT, _Traits, _Allocator>::erase(size_type __pos, size_type __n)
2741{
2742 size_type __sz = size();
2743 if (__pos > __sz)
2744 this->__throw_out_of_range();
2745 if (__n)
2746 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002747 value_type* __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002748 __n = _VSTD::min(__n, __sz - __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002749 size_type __n_move = __sz - __pos - __n;
2750 if (__n_move != 0)
2751 traits_type::move(__p + __pos, __p + __pos + __n, __n_move);
2752 __sz -= __n;
2753 __set_size(__sz);
2754 __invalidate_iterators_past(__sz);
2755 traits_type::assign(__p[__sz], value_type());
2756 }
2757 return *this;
2758}
2759
2760template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002761inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002762typename basic_string<_CharT, _Traits, _Allocator>::iterator
2763basic_string<_CharT, _Traits, _Allocator>::erase(const_iterator __pos)
2764{
Howard Hinnant499cea12013-08-23 17:37:05 +00002765#if _LIBCPP_DEBUG_LEVEL >= 2
2766 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__pos) == this,
2767 "string::erase(iterator) called with an iterator not"
2768 " referring to this string");
2769#endif
2770 _LIBCPP_ASSERT(__pos != end(),
2771 "string::erase(iterator) called with a non-dereferenceable iterator");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002772 iterator __b = begin();
2773 size_type __r = static_cast<size_type>(__pos - __b);
2774 erase(__r, 1);
Howard Hinnantec3773c2011-12-01 20:21:04 +00002775 return __b + static_cast<difference_type>(__r);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002776}
2777
2778template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002779inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002780typename basic_string<_CharT, _Traits, _Allocator>::iterator
2781basic_string<_CharT, _Traits, _Allocator>::erase(const_iterator __first, const_iterator __last)
2782{
Howard Hinnant499cea12013-08-23 17:37:05 +00002783#if _LIBCPP_DEBUG_LEVEL >= 2
2784 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__first) == this,
2785 "string::erase(iterator, iterator) called with an iterator not"
2786 " referring to this string");
2787#endif
2788 _LIBCPP_ASSERT(__first <= __last, "string::erase(first, last) called with invalid range");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002789 iterator __b = begin();
2790 size_type __r = static_cast<size_type>(__first - __b);
2791 erase(__r, static_cast<size_type>(__last - __first));
Howard Hinnantec3773c2011-12-01 20:21:04 +00002792 return __b + static_cast<difference_type>(__r);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002793}
2794
2795template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002796inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002797void
2798basic_string<_CharT, _Traits, _Allocator>::pop_back()
2799{
Howard Hinnant499cea12013-08-23 17:37:05 +00002800 _LIBCPP_ASSERT(!empty(), "string::pop_back(): string is already empty");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002801 size_type __sz;
2802 if (__is_long())
2803 {
2804 __sz = __get_long_size() - 1;
2805 __set_long_size(__sz);
2806 traits_type::assign(*(__get_long_pointer() + __sz), value_type());
2807 }
2808 else
2809 {
2810 __sz = __get_short_size() - 1;
2811 __set_short_size(__sz);
2812 traits_type::assign(*(__get_short_pointer() + __sz), value_type());
2813 }
2814 __invalidate_iterators_past(__sz);
2815}
2816
2817template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002818inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002819void
Howard Hinnanta6119a82011-05-29 19:57:12 +00002820basic_string<_CharT, _Traits, _Allocator>::clear() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002821{
2822 __invalidate_all_iterators();
2823 if (__is_long())
2824 {
2825 traits_type::assign(*__get_long_pointer(), value_type());
2826 __set_long_size(0);
2827 }
2828 else
2829 {
2830 traits_type::assign(*__get_short_pointer(), value_type());
2831 __set_short_size(0);
2832 }
2833}
2834
2835template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002836inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002837void
2838basic_string<_CharT, _Traits, _Allocator>::__erase_to_end(size_type __pos)
2839{
2840 if (__is_long())
2841 {
2842 traits_type::assign(*(__get_long_pointer() + __pos), value_type());
2843 __set_long_size(__pos);
2844 }
2845 else
2846 {
2847 traits_type::assign(*(__get_short_pointer() + __pos), value_type());
2848 __set_short_size(__pos);
2849 }
2850 __invalidate_iterators_past(__pos);
2851}
2852
2853template <class _CharT, class _Traits, class _Allocator>
2854void
2855basic_string<_CharT, _Traits, _Allocator>::resize(size_type __n, value_type __c)
2856{
2857 size_type __sz = size();
2858 if (__n > __sz)
2859 append(__n - __sz, __c);
2860 else
2861 __erase_to_end(__n);
2862}
2863
2864template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002865inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002866typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00002867basic_string<_CharT, _Traits, _Allocator>::max_size() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002868{
Howard Hinnante32b5e22010-11-17 17:55:08 +00002869 size_type __m = __alloc_traits::max_size(__alloc());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002870#if _LIBCPP_BIG_ENDIAN
Marshall Clow09f85502013-10-31 17:23:08 +00002871 return (__m <= ~__long_mask ? __m : __m/2) - __alignment;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002872#else
Marshall Clow09f85502013-10-31 17:23:08 +00002873 return __m - __alignment;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002874#endif
2875}
2876
2877template <class _CharT, class _Traits, class _Allocator>
2878void
2879basic_string<_CharT, _Traits, _Allocator>::reserve(size_type __res_arg)
2880{
2881 if (__res_arg > max_size())
2882 this->__throw_length_error();
2883 size_type __cap = capacity();
2884 size_type __sz = size();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002885 __res_arg = _VSTD::max(__res_arg, __sz);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002886 __res_arg = __recommend(__res_arg);
2887 if (__res_arg != __cap)
2888 {
2889 pointer __new_data, __p;
2890 bool __was_long, __now_long;
2891 if (__res_arg == __min_cap - 1)
2892 {
2893 __was_long = true;
2894 __now_long = false;
2895 __new_data = __get_short_pointer();
2896 __p = __get_long_pointer();
2897 }
2898 else
2899 {
2900 if (__res_arg > __cap)
Howard Hinnante32b5e22010-11-17 17:55:08 +00002901 __new_data = __alloc_traits::allocate(__alloc(), __res_arg+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002902 else
2903 {
2904 #ifndef _LIBCPP_NO_EXCEPTIONS
2905 try
2906 {
Howard Hinnant324bb032010-08-22 00:02:43 +00002907 #endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnante32b5e22010-11-17 17:55:08 +00002908 __new_data = __alloc_traits::allocate(__alloc(), __res_arg+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002909 #ifndef _LIBCPP_NO_EXCEPTIONS
2910 }
2911 catch (...)
2912 {
2913 return;
2914 }
Howard Hinnant324bb032010-08-22 00:02:43 +00002915 #else // _LIBCPP_NO_EXCEPTIONS
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002916 if (__new_data == nullptr)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002917 return;
Howard Hinnant324bb032010-08-22 00:02:43 +00002918 #endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002919 }
2920 __now_long = true;
2921 __was_long = __is_long();
2922 __p = __get_pointer();
2923 }
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002924 traits_type::copy(_VSTD::__to_raw_pointer(__new_data),
2925 _VSTD::__to_raw_pointer(__p), size()+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002926 if (__was_long)
Howard Hinnante32b5e22010-11-17 17:55:08 +00002927 __alloc_traits::deallocate(__alloc(), __p, __cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002928 if (__now_long)
2929 {
2930 __set_long_cap(__res_arg+1);
2931 __set_long_size(__sz);
2932 __set_long_pointer(__new_data);
2933 }
2934 else
2935 __set_short_size(__sz);
2936 __invalidate_all_iterators();
2937 }
2938}
2939
2940template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002941inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002942typename basic_string<_CharT, _Traits, _Allocator>::const_reference
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002943basic_string<_CharT, _Traits, _Allocator>::operator[](size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002944{
Howard Hinnant499cea12013-08-23 17:37:05 +00002945 _LIBCPP_ASSERT(__pos <= size(), "string index out of bounds");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002946 return *(data() + __pos);
2947}
2948
2949template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002950inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002951typename basic_string<_CharT, _Traits, _Allocator>::reference
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002952basic_string<_CharT, _Traits, _Allocator>::operator[](size_type __pos) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002953{
Howard Hinnant499cea12013-08-23 17:37:05 +00002954 _LIBCPP_ASSERT(__pos <= size(), "string index out of bounds");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002955 return *(__get_pointer() + __pos);
2956}
2957
2958template <class _CharT, class _Traits, class _Allocator>
2959typename basic_string<_CharT, _Traits, _Allocator>::const_reference
2960basic_string<_CharT, _Traits, _Allocator>::at(size_type __n) const
2961{
2962 if (__n >= size())
2963 this->__throw_out_of_range();
2964 return (*this)[__n];
2965}
2966
2967template <class _CharT, class _Traits, class _Allocator>
2968typename basic_string<_CharT, _Traits, _Allocator>::reference
2969basic_string<_CharT, _Traits, _Allocator>::at(size_type __n)
2970{
2971 if (__n >= size())
2972 this->__throw_out_of_range();
2973 return (*this)[__n];
2974}
2975
2976template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002977inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002978typename basic_string<_CharT, _Traits, _Allocator>::reference
2979basic_string<_CharT, _Traits, _Allocator>::front()
2980{
Howard Hinnant499cea12013-08-23 17:37:05 +00002981 _LIBCPP_ASSERT(!empty(), "string::front(): string is empty");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002982 return *__get_pointer();
2983}
2984
2985template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002986inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002987typename basic_string<_CharT, _Traits, _Allocator>::const_reference
2988basic_string<_CharT, _Traits, _Allocator>::front() const
2989{
Howard Hinnant499cea12013-08-23 17:37:05 +00002990 _LIBCPP_ASSERT(!empty(), "string::front(): string is empty");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002991 return *data();
2992}
2993
2994template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002995inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002996typename basic_string<_CharT, _Traits, _Allocator>::reference
2997basic_string<_CharT, _Traits, _Allocator>::back()
2998{
Howard Hinnant499cea12013-08-23 17:37:05 +00002999 _LIBCPP_ASSERT(!empty(), "string::back(): string is empty");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003000 return *(__get_pointer() + size() - 1);
3001}
3002
3003template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003004inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003005typename basic_string<_CharT, _Traits, _Allocator>::const_reference
3006basic_string<_CharT, _Traits, _Allocator>::back() const
3007{
Howard Hinnant499cea12013-08-23 17:37:05 +00003008 _LIBCPP_ASSERT(!empty(), "string::back(): string is empty");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003009 return *(data() + size() - 1);
3010}
3011
3012template <class _CharT, class _Traits, class _Allocator>
3013typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003014basic_string<_CharT, _Traits, _Allocator>::copy(value_type* __s, size_type __n, size_type __pos) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003015{
3016 size_type __sz = size();
3017 if (__pos > __sz)
3018 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00003019 size_type __rlen = _VSTD::min(__n, __sz - __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003020 traits_type::copy(__s, data() + __pos, __rlen);
3021 return __rlen;
3022}
3023
3024template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003025inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003026basic_string<_CharT, _Traits, _Allocator>
3027basic_string<_CharT, _Traits, _Allocator>::substr(size_type __pos, size_type __n) const
3028{
3029 return basic_string(*this, __pos, __n, __alloc());
3030}
3031
3032template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003033inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003034void
3035basic_string<_CharT, _Traits, _Allocator>::swap(basic_string& __str)
Marshall Clow7d914d12015-07-13 20:04:56 +00003036#if _LIBCPP_STD_VER >= 14
Eric Fiselier47257c42016-12-28 05:53:01 +00003037 _NOEXCEPT_DEBUG
Marshall Clow7d914d12015-07-13 20:04:56 +00003038#else
Eric Fiselier47257c42016-12-28 05:53:01 +00003039 _NOEXCEPT_DEBUG_(!__alloc_traits::propagate_on_container_swap::value ||
Marshall Clow7d914d12015-07-13 20:04:56 +00003040 __is_nothrow_swappable<allocator_type>::value)
3041#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003042{
Howard Hinnant499cea12013-08-23 17:37:05 +00003043#if _LIBCPP_DEBUG_LEVEL >= 2
3044 if (!__is_long())
3045 __get_db()->__invalidate_all(this);
3046 if (!__str.__is_long())
3047 __get_db()->__invalidate_all(&__str);
3048 __get_db()->swap(this, &__str);
3049#endif
Eric Fiselier47257c42016-12-28 05:53:01 +00003050 _LIBCPP_ASSERT(
3051 __alloc_traits::propagate_on_container_swap::value ||
3052 __alloc_traits::is_always_equal::value ||
3053 __alloc() == __str.__alloc(), "swapping non-equal allocators");
Howard Hinnant0949eed2011-06-30 21:18:19 +00003054 _VSTD::swap(__r_.first(), __str.__r_.first());
Marshall Clow7d914d12015-07-13 20:04:56 +00003055 __swap_allocator(__alloc(), __str.__alloc());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003056}
3057
3058// find
3059
3060template <class _Traits>
3061struct _LIBCPP_HIDDEN __traits_eq
3062{
3063 typedef typename _Traits::char_type char_type;
Howard Hinnanta6119a82011-05-29 19:57:12 +00003064 _LIBCPP_INLINE_VISIBILITY
3065 bool operator()(const char_type& __x, const char_type& __y) _NOEXCEPT
3066 {return _Traits::eq(__x, __y);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003067};
3068
3069template<class _CharT, class _Traits, class _Allocator>
3070typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003071basic_string<_CharT, _Traits, _Allocator>::find(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003072 size_type __pos,
3073 size_type __n) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003074{
Alp Tokerec34c482014-05-15 11:27:39 +00003075 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::find(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003076 return __str_find<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00003077 (data(), size(), __s, __pos, __n);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003078}
3079
3080template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003081inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003082typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003083basic_string<_CharT, _Traits, _Allocator>::find(const basic_string& __str,
3084 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003085{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003086 return __str_find<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00003087 (data(), size(), __str.data(), __pos, __str.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003088}
3089
3090template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003091inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003092typename basic_string<_CharT, _Traits, _Allocator>::size_type
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003093basic_string<_CharT, _Traits, _Allocator>::find(__self_view __sv,
3094 size_type __pos) const _NOEXCEPT
3095{
3096 return __str_find<value_type, size_type, traits_type, npos>
3097 (data(), size(), __sv.data(), __pos, __sv.size());
3098}
3099
3100template<class _CharT, class _Traits, class _Allocator>
3101inline _LIBCPP_INLINE_VISIBILITY
3102typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003103basic_string<_CharT, _Traits, _Allocator>::find(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003104 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003105{
Alp Tokerec34c482014-05-15 11:27:39 +00003106 _LIBCPP_ASSERT(__s != nullptr, "string::find(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003107 return __str_find<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00003108 (data(), size(), __s, __pos, traits_type::length(__s));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003109}
3110
3111template<class _CharT, class _Traits, class _Allocator>
3112typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003113basic_string<_CharT, _Traits, _Allocator>::find(value_type __c,
3114 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003115{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003116 return __str_find<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00003117 (data(), size(), __c, __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003118}
3119
3120// rfind
3121
3122template<class _CharT, class _Traits, class _Allocator>
3123typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003124basic_string<_CharT, _Traits, _Allocator>::rfind(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003125 size_type __pos,
3126 size_type __n) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003127{
Alp Tokerec34c482014-05-15 11:27:39 +00003128 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::rfind(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003129 return __str_rfind<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00003130 (data(), size(), __s, __pos, __n);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003131}
3132
3133template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003134inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003135typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003136basic_string<_CharT, _Traits, _Allocator>::rfind(const basic_string& __str,
3137 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003138{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003139 return __str_rfind<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00003140 (data(), size(), __str.data(), __pos, __str.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003141}
3142
3143template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003144inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003145typename basic_string<_CharT, _Traits, _Allocator>::size_type
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003146basic_string<_CharT, _Traits, _Allocator>::rfind(__self_view __sv,
3147 size_type __pos) const _NOEXCEPT
3148{
3149 return __str_rfind<value_type, size_type, traits_type, npos>
3150 (data(), size(), __sv.data(), __pos, __sv.size());
3151}
3152
3153template<class _CharT, class _Traits, class _Allocator>
3154inline _LIBCPP_INLINE_VISIBILITY
3155typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003156basic_string<_CharT, _Traits, _Allocator>::rfind(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003157 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003158{
Alp Tokerec34c482014-05-15 11:27:39 +00003159 _LIBCPP_ASSERT(__s != nullptr, "string::rfind(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003160 return __str_rfind<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00003161 (data(), size(), __s, __pos, traits_type::length(__s));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003162}
3163
3164template<class _CharT, class _Traits, class _Allocator>
3165typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003166basic_string<_CharT, _Traits, _Allocator>::rfind(value_type __c,
3167 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003168{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003169 return __str_rfind<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00003170 (data(), size(), __c, __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003171}
3172
3173// find_first_of
3174
3175template<class _CharT, class _Traits, class _Allocator>
3176typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003177basic_string<_CharT, _Traits, _Allocator>::find_first_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003178 size_type __pos,
3179 size_type __n) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003180{
Alp Tokerec34c482014-05-15 11:27:39 +00003181 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::find_first_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003182 return __str_find_first_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003183 (data(), size(), __s, __pos, __n);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003184}
3185
3186template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003187inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003188typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003189basic_string<_CharT, _Traits, _Allocator>::find_first_of(const basic_string& __str,
3190 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003191{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003192 return __str_find_first_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003193 (data(), size(), __str.data(), __pos, __str.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003194}
3195
3196template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003197inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003198typename basic_string<_CharT, _Traits, _Allocator>::size_type
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003199basic_string<_CharT, _Traits, _Allocator>::find_first_of(__self_view __sv,
3200 size_type __pos) const _NOEXCEPT
3201{
3202 return __str_find_first_of<value_type, size_type, traits_type, npos>
3203 (data(), size(), __sv.data(), __pos, __sv.size());
3204}
3205
3206template<class _CharT, class _Traits, class _Allocator>
3207inline _LIBCPP_INLINE_VISIBILITY
3208typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003209basic_string<_CharT, _Traits, _Allocator>::find_first_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003210 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003211{
Alp Tokerec34c482014-05-15 11:27:39 +00003212 _LIBCPP_ASSERT(__s != nullptr, "string::find_first_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003213 return __str_find_first_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003214 (data(), size(), __s, __pos, traits_type::length(__s));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003215}
3216
3217template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003218inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003219typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003220basic_string<_CharT, _Traits, _Allocator>::find_first_of(value_type __c,
3221 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003222{
3223 return find(__c, __pos);
3224}
3225
3226// find_last_of
3227
3228template<class _CharT, class _Traits, class _Allocator>
3229typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003230basic_string<_CharT, _Traits, _Allocator>::find_last_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003231 size_type __pos,
3232 size_type __n) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003233{
Alp Tokerec34c482014-05-15 11:27:39 +00003234 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::find_last_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003235 return __str_find_last_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003236 (data(), size(), __s, __pos, __n);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003237}
3238
3239template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003240inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003241typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003242basic_string<_CharT, _Traits, _Allocator>::find_last_of(const basic_string& __str,
3243 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003244{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003245 return __str_find_last_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003246 (data(), size(), __str.data(), __pos, __str.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003247}
3248
3249template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003250inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003251typename basic_string<_CharT, _Traits, _Allocator>::size_type
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003252basic_string<_CharT, _Traits, _Allocator>::find_last_of(__self_view __sv,
3253 size_type __pos) const _NOEXCEPT
3254{
3255 return __str_find_last_of<value_type, size_type, traits_type, npos>
3256 (data(), size(), __sv.data(), __pos, __sv.size());
3257}
3258
3259template<class _CharT, class _Traits, class _Allocator>
3260inline _LIBCPP_INLINE_VISIBILITY
3261typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003262basic_string<_CharT, _Traits, _Allocator>::find_last_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003263 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003264{
Alp Tokerec34c482014-05-15 11:27:39 +00003265 _LIBCPP_ASSERT(__s != nullptr, "string::find_last_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003266 return __str_find_last_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003267 (data(), size(), __s, __pos, traits_type::length(__s));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003268}
3269
3270template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003271inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003272typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003273basic_string<_CharT, _Traits, _Allocator>::find_last_of(value_type __c,
3274 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003275{
3276 return rfind(__c, __pos);
3277}
3278
3279// find_first_not_of
3280
3281template<class _CharT, class _Traits, class _Allocator>
3282typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003283basic_string<_CharT, _Traits, _Allocator>::find_first_not_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003284 size_type __pos,
3285 size_type __n) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003286{
Alp Tokerec34c482014-05-15 11:27:39 +00003287 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::find_first_not_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003288 return __str_find_first_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003289 (data(), size(), __s, __pos, __n);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003290}
3291
3292template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003293inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003294typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003295basic_string<_CharT, _Traits, _Allocator>::find_first_not_of(const basic_string& __str,
3296 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003297{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003298 return __str_find_first_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003299 (data(), size(), __str.data(), __pos, __str.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003300}
3301
3302template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003303inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003304typename basic_string<_CharT, _Traits, _Allocator>::size_type
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003305basic_string<_CharT, _Traits, _Allocator>::find_first_not_of(__self_view __sv,
3306 size_type __pos) const _NOEXCEPT
3307{
3308 return __str_find_first_not_of<value_type, size_type, traits_type, npos>
3309 (data(), size(), __sv.data(), __pos, __sv.size());
3310}
3311
3312template<class _CharT, class _Traits, class _Allocator>
3313inline _LIBCPP_INLINE_VISIBILITY
3314typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003315basic_string<_CharT, _Traits, _Allocator>::find_first_not_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003316 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003317{
Alp Tokerec34c482014-05-15 11:27:39 +00003318 _LIBCPP_ASSERT(__s != nullptr, "string::find_first_not_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003319 return __str_find_first_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003320 (data(), size(), __s, __pos, traits_type::length(__s));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003321}
3322
3323template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003324inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003325typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003326basic_string<_CharT, _Traits, _Allocator>::find_first_not_of(value_type __c,
3327 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003328{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003329 return __str_find_first_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003330 (data(), size(), __c, __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003331}
3332
3333// find_last_not_of
3334
3335template<class _CharT, class _Traits, class _Allocator>
3336typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003337basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003338 size_type __pos,
3339 size_type __n) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003340{
Alp Tokerec34c482014-05-15 11:27:39 +00003341 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::find_last_not_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003342 return __str_find_last_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003343 (data(), size(), __s, __pos, __n);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003344}
3345
3346template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003347inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003348typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003349basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(const basic_string& __str,
3350 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003351{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003352 return __str_find_last_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003353 (data(), size(), __str.data(), __pos, __str.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003354}
3355
3356template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003357inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003358typename basic_string<_CharT, _Traits, _Allocator>::size_type
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003359basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(__self_view __sv,
3360 size_type __pos) const _NOEXCEPT
3361{
3362 return __str_find_last_not_of<value_type, size_type, traits_type, npos>
3363 (data(), size(), __sv.data(), __pos, __sv.size());
3364}
3365
3366template<class _CharT, class _Traits, class _Allocator>
3367inline _LIBCPP_INLINE_VISIBILITY
3368typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003369basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003370 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003371{
Alp Tokerec34c482014-05-15 11:27:39 +00003372 _LIBCPP_ASSERT(__s != nullptr, "string::find_last_not_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003373 return __str_find_last_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003374 (data(), size(), __s, __pos, traits_type::length(__s));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003375}
3376
3377template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003378inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003379typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003380basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(value_type __c,
3381 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003382{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003383 return __str_find_last_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003384 (data(), size(), __c, __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003385}
3386
3387// compare
3388
3389template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003390inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003391int
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003392basic_string<_CharT, _Traits, _Allocator>::compare(__self_view __sv) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003393{
Howard Hinnantfa06d752011-07-24 21:45:06 +00003394 size_t __lhs_sz = size();
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003395 size_t __rhs_sz = __sv.size();
3396 int __result = traits_type::compare(data(), __sv.data(),
Howard Hinnantfa06d752011-07-24 21:45:06 +00003397 _VSTD::min(__lhs_sz, __rhs_sz));
3398 if (__result != 0)
3399 return __result;
3400 if (__lhs_sz < __rhs_sz)
3401 return -1;
3402 if (__lhs_sz > __rhs_sz)
3403 return 1;
3404 return 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003405}
3406
3407template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003408inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003409int
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003410basic_string<_CharT, _Traits, _Allocator>::compare(const basic_string& __str) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003411{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003412 return compare(__self_view(__str));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003413}
3414
3415template <class _CharT, class _Traits, class _Allocator>
3416int
Howard Hinnanta6119a82011-05-29 19:57:12 +00003417basic_string<_CharT, _Traits, _Allocator>::compare(size_type __pos1,
3418 size_type __n1,
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003419 const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003420 size_type __n2) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003421{
Alp Tokerec34c482014-05-15 11:27:39 +00003422 _LIBCPP_ASSERT(__n2 == 0 || __s != nullptr, "string::compare(): received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003423 size_type __sz = size();
3424 if (__pos1 > __sz || __n2 == npos)
3425 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00003426 size_type __rlen = _VSTD::min(__n1, __sz - __pos1);
3427 int __r = traits_type::compare(data() + __pos1, __s, _VSTD::min(__rlen, __n2));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003428 if (__r == 0)
3429 {
3430 if (__rlen < __n2)
3431 __r = -1;
3432 else if (__rlen > __n2)
3433 __r = 1;
3434 }
3435 return __r;
3436}
3437
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003438template <class _CharT, class _Traits, class _Allocator>
3439inline _LIBCPP_INLINE_VISIBILITY
3440int
3441basic_string<_CharT, _Traits, _Allocator>::compare(size_type __pos1,
3442 size_type __n1,
3443 __self_view __sv) const
3444{
3445 return compare(__pos1, __n1, __sv.data(), __sv.size());
3446}
3447
3448template <class _CharT, class _Traits, class _Allocator>
3449inline _LIBCPP_INLINE_VISIBILITY
3450int
3451basic_string<_CharT, _Traits, _Allocator>::compare(size_type __pos1,
3452 size_type __n1,
3453 const basic_string& __str) const
3454{
3455 return compare(__pos1, __n1, __str.data(), __str.size());
3456}
3457
3458template <class _CharT, class _Traits, class _Allocator>
Marshall Clow6ac8de02016-09-24 22:45:42 +00003459template <class _Tp>
3460typename enable_if
3461<
3462 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
3463 int
3464>::type
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003465basic_string<_CharT, _Traits, _Allocator>::compare(size_type __pos1,
3466 size_type __n1,
Marshall Clow6ac8de02016-09-24 22:45:42 +00003467 const _Tp& __t,
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003468 size_type __pos2,
3469 size_type __n2) const
3470{
Marshall Clow6ac8de02016-09-24 22:45:42 +00003471 __self_view __sv = __t;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003472 return __self_view(*this).substr(__pos1, __n1).compare(__sv.substr(__pos2, __n2));
3473}
3474
3475template <class _CharT, class _Traits, class _Allocator>
3476int
3477basic_string<_CharT, _Traits, _Allocator>::compare(size_type __pos1,
3478 size_type __n1,
3479 const basic_string& __str,
3480 size_type __pos2,
3481 size_type __n2) const
3482{
3483 return compare(__pos1, __n1, __self_view(__str), __pos2, __n2);
3484}
3485
3486template <class _CharT, class _Traits, class _Allocator>
3487int
3488basic_string<_CharT, _Traits, _Allocator>::compare(const value_type* __s) const _NOEXCEPT
3489{
3490 _LIBCPP_ASSERT(__s != nullptr, "string::compare(): received nullptr");
3491 return compare(0, npos, __s, traits_type::length(__s));
3492}
3493
3494template <class _CharT, class _Traits, class _Allocator>
3495int
3496basic_string<_CharT, _Traits, _Allocator>::compare(size_type __pos1,
3497 size_type __n1,
3498 const value_type* __s) const
3499{
3500 _LIBCPP_ASSERT(__s != nullptr, "string::compare(): received nullptr");
3501 return compare(__pos1, __n1, __s, traits_type::length(__s));
3502}
3503
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003504// __invariants
3505
3506template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003507inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003508bool
3509basic_string<_CharT, _Traits, _Allocator>::__invariants() const
3510{
3511 if (size() > capacity())
3512 return false;
3513 if (capacity() < __min_cap - 1)
3514 return false;
3515 if (data() == 0)
3516 return false;
3517 if (data()[size()] != value_type(0))
3518 return false;
3519 return true;
3520}
3521
3522// operator==
3523
3524template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003525inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003526bool
3527operator==(const basic_string<_CharT, _Traits, _Allocator>& __lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003528 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003529{
Howard Hinnant08dd2532013-04-22 23:55:13 +00003530 size_t __lhs_sz = __lhs.size();
3531 return __lhs_sz == __rhs.size() && _Traits::compare(__lhs.data(),
3532 __rhs.data(),
3533 __lhs_sz) == 0;
3534}
3535
3536template<class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003537inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant08dd2532013-04-22 23:55:13 +00003538bool
3539operator==(const basic_string<char, char_traits<char>, _Allocator>& __lhs,
3540 const basic_string<char, char_traits<char>, _Allocator>& __rhs) _NOEXCEPT
3541{
3542 size_t __lhs_sz = __lhs.size();
3543 if (__lhs_sz != __rhs.size())
3544 return false;
3545 const char* __lp = __lhs.data();
3546 const char* __rp = __rhs.data();
3547 if (__lhs.__is_long())
3548 return char_traits<char>::compare(__lp, __rp, __lhs_sz) == 0;
3549 for (; __lhs_sz != 0; --__lhs_sz, ++__lp, ++__rp)
3550 if (*__lp != *__rp)
3551 return false;
3552 return true;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003553}
3554
3555template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003556inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003557bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003558operator==(const _CharT* __lhs,
3559 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003560{
Eric Fiselier4f241822015-08-28 03:02:37 +00003561 typedef basic_string<_CharT, _Traits, _Allocator> _String;
3562 _LIBCPP_ASSERT(__lhs != nullptr, "operator==(char*, basic_string): received nullptr");
3563 size_t __lhs_len = _Traits::length(__lhs);
3564 if (__lhs_len != __rhs.size()) return false;
3565 return __rhs.compare(0, _String::npos, __lhs, __lhs_len) == 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003566}
3567
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003568template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003569inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003570bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003571operator==(const basic_string<_CharT,_Traits,_Allocator>& __lhs,
3572 const _CharT* __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003573{
Eric Fiselier4f241822015-08-28 03:02:37 +00003574 typedef basic_string<_CharT, _Traits, _Allocator> _String;
3575 _LIBCPP_ASSERT(__rhs != nullptr, "operator==(basic_string, char*): received nullptr");
3576 size_t __rhs_len = _Traits::length(__rhs);
3577 if (__rhs_len != __lhs.size()) return false;
3578 return __lhs.compare(0, _String::npos, __rhs, __rhs_len) == 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003579}
3580
Howard Hinnant324bb032010-08-22 00:02:43 +00003581template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003582inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003583bool
3584operator!=(const basic_string<_CharT,_Traits,_Allocator>& __lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003585 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003586{
3587 return !(__lhs == __rhs);
3588}
3589
3590template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003591inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003592bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003593operator!=(const _CharT* __lhs,
3594 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003595{
3596 return !(__lhs == __rhs);
3597}
3598
3599template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003600inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003601bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003602operator!=(const basic_string<_CharT, _Traits, _Allocator>& __lhs,
3603 const _CharT* __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003604{
3605 return !(__lhs == __rhs);
3606}
3607
3608// operator<
3609
3610template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003611inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003612bool
3613operator< (const basic_string<_CharT, _Traits, _Allocator>& __lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003614 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003615{
Howard Hinnant2644a7b2011-07-24 15:07:21 +00003616 return __lhs.compare(__rhs) < 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003617}
3618
3619template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003620inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003621bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003622operator< (const basic_string<_CharT, _Traits, _Allocator>& __lhs,
3623 const _CharT* __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003624{
Howard Hinnant2644a7b2011-07-24 15:07:21 +00003625 return __lhs.compare(__rhs) < 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003626}
3627
3628template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003629inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003630bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003631operator< (const _CharT* __lhs,
3632 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003633{
3634 return __rhs.compare(__lhs) > 0;
3635}
3636
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003637// operator>
3638
3639template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003640inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003641bool
3642operator> (const basic_string<_CharT, _Traits, _Allocator>& __lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003643 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003644{
3645 return __rhs < __lhs;
3646}
3647
3648template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003649inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003650bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003651operator> (const basic_string<_CharT, _Traits, _Allocator>& __lhs,
3652 const _CharT* __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003653{
3654 return __rhs < __lhs;
3655}
3656
3657template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003658inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003659bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003660operator> (const _CharT* __lhs,
3661 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003662{
3663 return __rhs < __lhs;
3664}
3665
3666// operator<=
3667
3668template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003669inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003670bool
3671operator<=(const basic_string<_CharT, _Traits, _Allocator>& __lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003672 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003673{
3674 return !(__rhs < __lhs);
3675}
3676
3677template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003678inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003679bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003680operator<=(const basic_string<_CharT, _Traits, _Allocator>& __lhs,
3681 const _CharT* __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003682{
3683 return !(__rhs < __lhs);
3684}
3685
3686template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003687inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003688bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003689operator<=(const _CharT* __lhs,
3690 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003691{
3692 return !(__rhs < __lhs);
3693}
3694
3695// operator>=
3696
3697template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003698inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003699bool
3700operator>=(const basic_string<_CharT, _Traits, _Allocator>& __lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003701 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003702{
3703 return !(__lhs < __rhs);
3704}
3705
3706template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003707inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003708bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003709operator>=(const basic_string<_CharT, _Traits, _Allocator>& __lhs,
3710 const _CharT* __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003711{
3712 return !(__lhs < __rhs);
3713}
3714
3715template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003716inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003717bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003718operator>=(const _CharT* __lhs,
3719 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003720{
3721 return !(__lhs < __rhs);
3722}
3723
3724// operator +
3725
3726template<class _CharT, class _Traits, class _Allocator>
3727basic_string<_CharT, _Traits, _Allocator>
3728operator+(const basic_string<_CharT, _Traits, _Allocator>& __lhs,
3729 const basic_string<_CharT, _Traits, _Allocator>& __rhs)
3730{
3731 basic_string<_CharT, _Traits, _Allocator> __r(__lhs.get_allocator());
3732 typename basic_string<_CharT, _Traits, _Allocator>::size_type __lhs_sz = __lhs.size();
3733 typename basic_string<_CharT, _Traits, _Allocator>::size_type __rhs_sz = __rhs.size();
3734 __r.__init(__lhs.data(), __lhs_sz, __lhs_sz + __rhs_sz);
3735 __r.append(__rhs.data(), __rhs_sz);
3736 return __r;
3737}
3738
3739template<class _CharT, class _Traits, class _Allocator>
3740basic_string<_CharT, _Traits, _Allocator>
3741operator+(const _CharT* __lhs , const basic_string<_CharT,_Traits,_Allocator>& __rhs)
3742{
3743 basic_string<_CharT, _Traits, _Allocator> __r(__rhs.get_allocator());
3744 typename basic_string<_CharT, _Traits, _Allocator>::size_type __lhs_sz = _Traits::length(__lhs);
3745 typename basic_string<_CharT, _Traits, _Allocator>::size_type __rhs_sz = __rhs.size();
3746 __r.__init(__lhs, __lhs_sz, __lhs_sz + __rhs_sz);
3747 __r.append(__rhs.data(), __rhs_sz);
3748 return __r;
3749}
3750
3751template<class _CharT, class _Traits, class _Allocator>
3752basic_string<_CharT, _Traits, _Allocator>
3753operator+(_CharT __lhs, const basic_string<_CharT,_Traits,_Allocator>& __rhs)
3754{
3755 basic_string<_CharT, _Traits, _Allocator> __r(__rhs.get_allocator());
3756 typename basic_string<_CharT, _Traits, _Allocator>::size_type __rhs_sz = __rhs.size();
3757 __r.__init(&__lhs, 1, 1 + __rhs_sz);
3758 __r.append(__rhs.data(), __rhs_sz);
3759 return __r;
3760}
3761
3762template<class _CharT, class _Traits, class _Allocator>
3763basic_string<_CharT, _Traits, _Allocator>
3764operator+(const basic_string<_CharT, _Traits, _Allocator>& __lhs, const _CharT* __rhs)
3765{
3766 basic_string<_CharT, _Traits, _Allocator> __r(__lhs.get_allocator());
3767 typename basic_string<_CharT, _Traits, _Allocator>::size_type __lhs_sz = __lhs.size();
3768 typename basic_string<_CharT, _Traits, _Allocator>::size_type __rhs_sz = _Traits::length(__rhs);
3769 __r.__init(__lhs.data(), __lhs_sz, __lhs_sz + __rhs_sz);
3770 __r.append(__rhs, __rhs_sz);
3771 return __r;
3772}
3773
3774template<class _CharT, class _Traits, class _Allocator>
3775basic_string<_CharT, _Traits, _Allocator>
3776operator+(const basic_string<_CharT, _Traits, _Allocator>& __lhs, _CharT __rhs)
3777{
3778 basic_string<_CharT, _Traits, _Allocator> __r(__lhs.get_allocator());
3779 typename basic_string<_CharT, _Traits, _Allocator>::size_type __lhs_sz = __lhs.size();
3780 __r.__init(__lhs.data(), __lhs_sz, __lhs_sz + 1);
3781 __r.push_back(__rhs);
3782 return __r;
3783}
3784
Howard Hinnant73d21a42010-09-04 23:28:19 +00003785#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003786
3787template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003788inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003789basic_string<_CharT, _Traits, _Allocator>
3790operator+(basic_string<_CharT, _Traits, _Allocator>&& __lhs, const basic_string<_CharT, _Traits, _Allocator>& __rhs)
3791{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003792 return _VSTD::move(__lhs.append(__rhs));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003793}
3794
3795template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003796inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003797basic_string<_CharT, _Traits, _Allocator>
3798operator+(const basic_string<_CharT, _Traits, _Allocator>& __lhs, basic_string<_CharT, _Traits, _Allocator>&& __rhs)
3799{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003800 return _VSTD::move(__rhs.insert(0, __lhs));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003801}
3802
3803template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003804inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003805basic_string<_CharT, _Traits, _Allocator>
3806operator+(basic_string<_CharT, _Traits, _Allocator>&& __lhs, basic_string<_CharT, _Traits, _Allocator>&& __rhs)
3807{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003808 return _VSTD::move(__lhs.append(__rhs));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003809}
3810
3811template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003812inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003813basic_string<_CharT, _Traits, _Allocator>
3814operator+(const _CharT* __lhs , basic_string<_CharT,_Traits,_Allocator>&& __rhs)
3815{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003816 return _VSTD::move(__rhs.insert(0, __lhs));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003817}
3818
3819template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003820inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003821basic_string<_CharT, _Traits, _Allocator>
3822operator+(_CharT __lhs, basic_string<_CharT,_Traits,_Allocator>&& __rhs)
3823{
3824 __rhs.insert(__rhs.begin(), __lhs);
Howard Hinnant0949eed2011-06-30 21:18:19 +00003825 return _VSTD::move(__rhs);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003826}
3827
3828template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003829inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003830basic_string<_CharT, _Traits, _Allocator>
3831operator+(basic_string<_CharT, _Traits, _Allocator>&& __lhs, const _CharT* __rhs)
3832{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003833 return _VSTD::move(__lhs.append(__rhs));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003834}
3835
3836template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003837inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003838basic_string<_CharT, _Traits, _Allocator>
3839operator+(basic_string<_CharT, _Traits, _Allocator>&& __lhs, _CharT __rhs)
3840{
3841 __lhs.push_back(__rhs);
Howard Hinnant0949eed2011-06-30 21:18:19 +00003842 return _VSTD::move(__lhs);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003843}
3844
Howard Hinnant73d21a42010-09-04 23:28:19 +00003845#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003846
3847// swap
3848
3849template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003850inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003851void
Howard Hinnanta6119a82011-05-29 19:57:12 +00003852swap(basic_string<_CharT, _Traits, _Allocator>& __lhs,
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00003853 basic_string<_CharT, _Traits, _Allocator>& __rhs)
3854 _NOEXCEPT_(_NOEXCEPT_(__lhs.swap(__rhs)))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003855{
3856 __lhs.swap(__rhs);
3857}
3858
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003859#ifndef _LIBCPP_HAS_NO_UNICODE_CHARS
3860
3861typedef basic_string<char16_t> u16string;
3862typedef basic_string<char32_t> u32string;
3863
Howard Hinnant324bb032010-08-22 00:02:43 +00003864#endif // _LIBCPP_HAS_NO_UNICODE_CHARS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003865
Howard Hinnant0f678bd2013-08-12 18:38:34 +00003866_LIBCPP_FUNC_VIS int stoi (const string& __str, size_t* __idx = 0, int __base = 10);
3867_LIBCPP_FUNC_VIS long stol (const string& __str, size_t* __idx = 0, int __base = 10);
3868_LIBCPP_FUNC_VIS unsigned long stoul (const string& __str, size_t* __idx = 0, int __base = 10);
3869_LIBCPP_FUNC_VIS long long stoll (const string& __str, size_t* __idx = 0, int __base = 10);
3870_LIBCPP_FUNC_VIS unsigned long long stoull(const string& __str, size_t* __idx = 0, int __base = 10);
Howard Hinnanta6a062d2010-06-02 18:20:39 +00003871
Howard Hinnant0f678bd2013-08-12 18:38:34 +00003872_LIBCPP_FUNC_VIS float stof (const string& __str, size_t* __idx = 0);
3873_LIBCPP_FUNC_VIS double stod (const string& __str, size_t* __idx = 0);
3874_LIBCPP_FUNC_VIS long double stold(const string& __str, size_t* __idx = 0);
Howard Hinnanta6a062d2010-06-02 18:20:39 +00003875
Howard Hinnant0f678bd2013-08-12 18:38:34 +00003876_LIBCPP_FUNC_VIS string to_string(int __val);
3877_LIBCPP_FUNC_VIS string to_string(unsigned __val);
3878_LIBCPP_FUNC_VIS string to_string(long __val);
3879_LIBCPP_FUNC_VIS string to_string(unsigned long __val);
3880_LIBCPP_FUNC_VIS string to_string(long long __val);
3881_LIBCPP_FUNC_VIS string to_string(unsigned long long __val);
3882_LIBCPP_FUNC_VIS string to_string(float __val);
3883_LIBCPP_FUNC_VIS string to_string(double __val);
3884_LIBCPP_FUNC_VIS string to_string(long double __val);
Howard Hinnanta6a062d2010-06-02 18:20:39 +00003885
Howard Hinnant0f678bd2013-08-12 18:38:34 +00003886_LIBCPP_FUNC_VIS int stoi (const wstring& __str, size_t* __idx = 0, int __base = 10);
3887_LIBCPP_FUNC_VIS long stol (const wstring& __str, size_t* __idx = 0, int __base = 10);
3888_LIBCPP_FUNC_VIS unsigned long stoul (const wstring& __str, size_t* __idx = 0, int __base = 10);
3889_LIBCPP_FUNC_VIS long long stoll (const wstring& __str, size_t* __idx = 0, int __base = 10);
3890_LIBCPP_FUNC_VIS unsigned long long stoull(const wstring& __str, size_t* __idx = 0, int __base = 10);
Howard Hinnanta6a062d2010-06-02 18:20:39 +00003891
Howard Hinnant0f678bd2013-08-12 18:38:34 +00003892_LIBCPP_FUNC_VIS float stof (const wstring& __str, size_t* __idx = 0);
3893_LIBCPP_FUNC_VIS double stod (const wstring& __str, size_t* __idx = 0);
3894_LIBCPP_FUNC_VIS long double stold(const wstring& __str, size_t* __idx = 0);
Howard Hinnanta6a062d2010-06-02 18:20:39 +00003895
Howard Hinnant0f678bd2013-08-12 18:38:34 +00003896_LIBCPP_FUNC_VIS wstring to_wstring(int __val);
3897_LIBCPP_FUNC_VIS wstring to_wstring(unsigned __val);
3898_LIBCPP_FUNC_VIS wstring to_wstring(long __val);
3899_LIBCPP_FUNC_VIS wstring to_wstring(unsigned long __val);
3900_LIBCPP_FUNC_VIS wstring to_wstring(long long __val);
3901_LIBCPP_FUNC_VIS wstring to_wstring(unsigned long long __val);
3902_LIBCPP_FUNC_VIS wstring to_wstring(float __val);
3903_LIBCPP_FUNC_VIS wstring to_wstring(double __val);
3904_LIBCPP_FUNC_VIS wstring to_wstring(long double __val);
Howard Hinnanta6a062d2010-06-02 18:20:39 +00003905
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003906template<class _CharT, class _Traits, class _Allocator>
3907 const typename basic_string<_CharT, _Traits, _Allocator>::size_type
3908 basic_string<_CharT, _Traits, _Allocator>::npos;
3909
3910template<class _CharT, class _Traits, class _Allocator>
Eric Fiselierc3589a82017-01-04 23:56:00 +00003911struct _LIBCPP_TEMPLATE_VIS hash<basic_string<_CharT, _Traits, _Allocator> >
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003912 : public unary_function<basic_string<_CharT, _Traits, _Allocator>, size_t>
3913{
3914 size_t
Howard Hinnanta6119a82011-05-29 19:57:12 +00003915 operator()(const basic_string<_CharT, _Traits, _Allocator>& __val) const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003916};
3917
3918template<class _CharT, class _Traits, class _Allocator>
3919size_t
3920hash<basic_string<_CharT, _Traits, _Allocator> >::operator()(
Howard Hinnanta6119a82011-05-29 19:57:12 +00003921 const basic_string<_CharT, _Traits, _Allocator>& __val) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003922{
Sean Huntaffd9e52011-07-29 23:31:56 +00003923 return __do_string_hash(__val.data(), __val.data() + __val.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003924}
3925
Howard Hinnant464aa5c2011-07-18 15:51:59 +00003926template<class _CharT, class _Traits, class _Allocator>
3927basic_ostream<_CharT, _Traits>&
3928operator<<(basic_ostream<_CharT, _Traits>& __os,
3929 const basic_string<_CharT, _Traits, _Allocator>& __str);
3930
3931template<class _CharT, class _Traits, class _Allocator>
3932basic_istream<_CharT, _Traits>&
3933operator>>(basic_istream<_CharT, _Traits>& __is,
3934 basic_string<_CharT, _Traits, _Allocator>& __str);
3935
3936template<class _CharT, class _Traits, class _Allocator>
3937basic_istream<_CharT, _Traits>&
3938getline(basic_istream<_CharT, _Traits>& __is,
3939 basic_string<_CharT, _Traits, _Allocator>& __str, _CharT __dlm);
3940
3941template<class _CharT, class _Traits, class _Allocator>
3942inline _LIBCPP_INLINE_VISIBILITY
3943basic_istream<_CharT, _Traits>&
3944getline(basic_istream<_CharT, _Traits>& __is,
3945 basic_string<_CharT, _Traits, _Allocator>& __str);
3946
3947#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
3948
3949template<class _CharT, class _Traits, class _Allocator>
3950inline _LIBCPP_INLINE_VISIBILITY
3951basic_istream<_CharT, _Traits>&
3952getline(basic_istream<_CharT, _Traits>&& __is,
3953 basic_string<_CharT, _Traits, _Allocator>& __str, _CharT __dlm);
3954
3955template<class _CharT, class _Traits, class _Allocator>
3956inline _LIBCPP_INLINE_VISIBILITY
3957basic_istream<_CharT, _Traits>&
3958getline(basic_istream<_CharT, _Traits>&& __is,
3959 basic_string<_CharT, _Traits, _Allocator>& __str);
3960
3961#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
3962
Howard Hinnant499cea12013-08-23 17:37:05 +00003963#if _LIBCPP_DEBUG_LEVEL >= 2
3964
3965template<class _CharT, class _Traits, class _Allocator>
3966bool
3967basic_string<_CharT, _Traits, _Allocator>::__dereferenceable(const const_iterator* __i) const
3968{
3969 return this->data() <= _VSTD::__to_raw_pointer(__i->base()) &&
3970 _VSTD::__to_raw_pointer(__i->base()) < this->data() + this->size();
3971}
3972
3973template<class _CharT, class _Traits, class _Allocator>
3974bool
3975basic_string<_CharT, _Traits, _Allocator>::__decrementable(const const_iterator* __i) const
3976{
3977 return this->data() < _VSTD::__to_raw_pointer(__i->base()) &&
3978 _VSTD::__to_raw_pointer(__i->base()) <= this->data() + this->size();
3979}
3980
3981template<class _CharT, class _Traits, class _Allocator>
3982bool
3983basic_string<_CharT, _Traits, _Allocator>::__addable(const const_iterator* __i, ptrdiff_t __n) const
3984{
3985 const value_type* __p = _VSTD::__to_raw_pointer(__i->base()) + __n;
3986 return this->data() <= __p && __p <= this->data() + this->size();
3987}
3988
3989template<class _CharT, class _Traits, class _Allocator>
3990bool
3991basic_string<_CharT, _Traits, _Allocator>::__subscriptable(const const_iterator* __i, ptrdiff_t __n) const
3992{
3993 const value_type* __p = _VSTD::__to_raw_pointer(__i->base()) + __n;
3994 return this->data() <= __p && __p < this->data() + this->size();
3995}
3996
3997#endif // _LIBCPP_DEBUG_LEVEL >= 2
3998
Marshall Clow15234322013-07-23 17:05:24 +00003999#if _LIBCPP_STD_VER > 11
4000// Literal suffixes for basic_string [basic.string.literals]
Marshall Clow8d9dd7a2013-10-05 21:18:32 +00004001inline namespace literals
Marshall Clow15234322013-07-23 17:05:24 +00004002{
4003 inline namespace string_literals
4004 {
Howard Hinnantab61b2c2013-08-07 19:39:48 +00004005 inline _LIBCPP_INLINE_VISIBILITY
4006 basic_string<char> operator "" s( const char *__str, size_t __len )
4007 {
4008 return basic_string<char> (__str, __len);
4009 }
Marshall Clow15234322013-07-23 17:05:24 +00004010
Howard Hinnantab61b2c2013-08-07 19:39:48 +00004011 inline _LIBCPP_INLINE_VISIBILITY
4012 basic_string<wchar_t> operator "" s( const wchar_t *__str, size_t __len )
4013 {
4014 return basic_string<wchar_t> (__str, __len);
4015 }
Marshall Clow15234322013-07-23 17:05:24 +00004016
Howard Hinnantab61b2c2013-08-07 19:39:48 +00004017 inline _LIBCPP_INLINE_VISIBILITY
4018 basic_string<char16_t> operator "" s( const char16_t *__str, size_t __len )
4019 {
4020 return basic_string<char16_t> (__str, __len);
4021 }
Marshall Clow15234322013-07-23 17:05:24 +00004022
Howard Hinnantab61b2c2013-08-07 19:39:48 +00004023 inline _LIBCPP_INLINE_VISIBILITY
4024 basic_string<char32_t> operator "" s( const char32_t *__str, size_t __len )
4025 {
4026 return basic_string<char32_t> (__str, __len);
4027 }
Marshall Clow15234322013-07-23 17:05:24 +00004028 }
4029}
4030#endif
4031
Eric Fiselier833d6442016-09-15 22:27:07 +00004032_LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS basic_string<char>)
4033_LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS basic_string<wchar_t>)
Howard Hinnant499cea12013-08-23 17:37:05 +00004034_LIBCPP_EXTERN_TEMPLATE(string operator+<char, char_traits<char>, allocator<char> >(char const*, string const&))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004035
4036_LIBCPP_END_NAMESPACE_STD
4037
4038#endif // _LIBCPP_STRING