blob: cf42f529c7015a6ec143bdfcae4a5be204f64c4f [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
Eric Fiselierb9536102014-08-10 23:53:08 +0000487#include <__debug>
488
Howard Hinnant08e17472011-10-17 20:05:10 +0000489#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000490#pragma GCC system_header
Howard Hinnant08e17472011-10-17 20:05:10 +0000491#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000492
Eric Fiselier018a3d52017-05-31 22:07:49 +0000493_LIBCPP_PUSH_MACROS
494#include <__undef_macros>
495
496
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000497_LIBCPP_BEGIN_NAMESPACE_STD
498
499// fpos
500
501template <class _StateT>
Eric Fiselierc3589a82017-01-04 23:56:00 +0000502class _LIBCPP_TEMPLATE_VIS fpos
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000503{
504private:
505 _StateT __st_;
506 streamoff __off_;
507public:
508 _LIBCPP_INLINE_VISIBILITY fpos(streamoff __off = streamoff()) : __st_(), __off_(__off) {}
509
510 _LIBCPP_INLINE_VISIBILITY operator streamoff() const {return __off_;}
511
512 _LIBCPP_INLINE_VISIBILITY _StateT state() const {return __st_;}
513 _LIBCPP_INLINE_VISIBILITY void state(_StateT __st) {__st_ = __st;}
514
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 _LIBCPP_INLINE_VISIBILITY fpos& operator-=(streamoff __off) {__off_ -= __off; return *this;}
518 _LIBCPP_INLINE_VISIBILITY fpos operator- (streamoff __off) const {fpos __t(*this); __t -= __off; return __t;}
519};
520
521template <class _StateT>
522inline _LIBCPP_INLINE_VISIBILITY
523streamoff operator-(const fpos<_StateT>& __x, const fpos<_StateT>& __y)
524 {return streamoff(__x) - streamoff(__y);}
525
526template <class _StateT>
527inline _LIBCPP_INLINE_VISIBILITY
528bool operator==(const fpos<_StateT>& __x, const fpos<_StateT>& __y)
529 {return streamoff(__x) == streamoff(__y);}
530
531template <class _StateT>
532inline _LIBCPP_INLINE_VISIBILITY
533bool operator!=(const fpos<_StateT>& __x, const fpos<_StateT>& __y)
534 {return streamoff(__x) != streamoff(__y);}
535
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000536// basic_string
537
538template<class _CharT, class _Traits, class _Allocator>
539basic_string<_CharT, _Traits, _Allocator>
Howard Hinnant2b1b2d42011-06-14 19:58:17 +0000540operator+(const basic_string<_CharT, _Traits, _Allocator>& __x,
541 const basic_string<_CharT, _Traits, _Allocator>& __y);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000542
543template<class _CharT, class _Traits, class _Allocator>
544basic_string<_CharT, _Traits, _Allocator>
Howard Hinnant2b1b2d42011-06-14 19:58:17 +0000545operator+(const _CharT* __x, const basic_string<_CharT,_Traits,_Allocator>& __y);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000546
547template<class _CharT, class _Traits, class _Allocator>
548basic_string<_CharT, _Traits, _Allocator>
Howard Hinnant2b1b2d42011-06-14 19:58:17 +0000549operator+(_CharT __x, const basic_string<_CharT,_Traits,_Allocator>& __y);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000550
551template<class _CharT, class _Traits, class _Allocator>
552basic_string<_CharT, _Traits, _Allocator>
Howard Hinnant2b1b2d42011-06-14 19:58:17 +0000553operator+(const basic_string<_CharT, _Traits, _Allocator>& __x, const _CharT* __y);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000554
555template<class _CharT, class _Traits, class _Allocator>
556basic_string<_CharT, _Traits, _Allocator>
Howard Hinnant2b1b2d42011-06-14 19:58:17 +0000557operator+(const basic_string<_CharT, _Traits, _Allocator>& __x, _CharT __y);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000558
559template <bool>
Eric Fiselierc3589a82017-01-04 23:56:00 +0000560class _LIBCPP_TEMPLATE_VIS __basic_string_common
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000561{
562protected:
Marshall Clow14c09a22016-08-25 15:09:01 +0000563 _LIBCPP_NORETURN void __throw_length_error() const;
564 _LIBCPP_NORETURN void __throw_out_of_range() const;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000565};
566
567template <bool __b>
568void
569__basic_string_common<__b>::__throw_length_error() const
570{
Marshall Clow14c09a22016-08-25 15:09:01 +0000571 _VSTD::__throw_length_error("basic_string");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000572}
573
574template <bool __b>
575void
576__basic_string_common<__b>::__throw_out_of_range() const
577{
Marshall Clow14c09a22016-08-25 15:09:01 +0000578 _VSTD::__throw_out_of_range("basic_string");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000579}
580
Eric Fiselier833d6442016-09-15 22:27:07 +0000581_LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS __basic_string_common<true>)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000582
Marshall Clowdf9db312016-01-13 21:54:34 +0000583#ifdef _LIBCPP_NO_EXCEPTIONS
584template <class _Iter>
585struct __libcpp_string_gets_noexcept_iterator_impl : public true_type {};
586#elif defined(_LIBCPP_HAS_NO_NOEXCEPT)
587template <class _Iter>
588struct __libcpp_string_gets_noexcept_iterator_impl : public false_type {};
589#else
590template <class _Iter, bool = __is_forward_iterator<_Iter>::value>
591struct __libcpp_string_gets_noexcept_iterator_impl : public _LIBCPP_BOOL_CONSTANT((
592 noexcept(++(declval<_Iter&>())) &&
593 is_nothrow_assignable<_Iter&, _Iter>::value &&
594 noexcept(declval<_Iter>() == declval<_Iter>()) &&
595 noexcept(*declval<_Iter>())
596)) {};
597
598template <class _Iter>
599struct __libcpp_string_gets_noexcept_iterator_impl<_Iter, false> : public false_type {};
600#endif
601
602
603template <class _Iter>
604struct __libcpp_string_gets_noexcept_iterator
605 : public _LIBCPP_BOOL_CONSTANT(__libcpp_is_trivial_iterator<_Iter>::value || __libcpp_string_gets_noexcept_iterator_impl<_Iter>::value) {};
606
Marshall Clow6ac8de02016-09-24 22:45:42 +0000607template <class _CharT, class _Traits, class _Tp>
608struct __can_be_converted_to_string_view : public _LIBCPP_BOOL_CONSTANT(
609 ( is_convertible<const _Tp&, basic_string_view<_CharT, _Traits> >::value &&
610 !is_convertible<const _Tp&, const _CharT*>::value)) {};
611
Evgeniy Stepanov4f01aa82015-10-13 23:48:28 +0000612#ifdef _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Howard Hinnant15467182013-04-30 21:44:48 +0000613
614template <class _CharT, size_t = sizeof(_CharT)>
615struct __padding
616{
617 unsigned char __xx[sizeof(_CharT)-1];
618};
619
620template <class _CharT>
621struct __padding<_CharT, 1>
622{
623};
624
Evgeniy Stepanov4f01aa82015-10-13 23:48:28 +0000625#endif // _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Howard Hinnant15467182013-04-30 21:44:48 +0000626
Howard Hinnant324bb032010-08-22 00:02:43 +0000627template<class _CharT, class _Traits, class _Allocator>
Eric Fiselierc3589a82017-01-04 23:56:00 +0000628class _LIBCPP_TEMPLATE_VIS basic_string
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000629 : private __basic_string_common<true>
630{
631public:
632 typedef basic_string __self;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000633 typedef basic_string_view<_CharT, _Traits> __self_view;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000634 typedef _Traits traits_type;
Marshall Clow2d4c3fa2017-03-15 18:41:11 +0000635 typedef _CharT value_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000636 typedef _Allocator allocator_type;
Howard Hinnante32b5e22010-11-17 17:55:08 +0000637 typedef allocator_traits<allocator_type> __alloc_traits;
638 typedef typename __alloc_traits::size_type size_type;
639 typedef typename __alloc_traits::difference_type difference_type;
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000640 typedef value_type& reference;
641 typedef const value_type& const_reference;
Howard Hinnante32b5e22010-11-17 17:55:08 +0000642 typedef typename __alloc_traits::pointer pointer;
643 typedef typename __alloc_traits::const_pointer const_pointer;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000644
Howard Hinnant499cea12013-08-23 17:37:05 +0000645 static_assert(is_pod<value_type>::value, "Character type of basic_string must be a POD");
Marshall Clow2d4c3fa2017-03-15 18:41:11 +0000646 static_assert((is_same<_CharT, typename traits_type::char_type>::value),
Howard Hinnant499cea12013-08-23 17:37:05 +0000647 "traits_type::char_type must be the same type as CharT");
648 static_assert((is_same<typename allocator_type::value_type, value_type>::value),
649 "Allocator::value_type must be same type as value_type");
650#if defined(_LIBCPP_RAW_ITERATORS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000651 typedef pointer iterator;
652 typedef const_pointer const_iterator;
Howard Hinnant324bb032010-08-22 00:02:43 +0000653#else // defined(_LIBCPP_RAW_ITERATORS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000654 typedef __wrap_iter<pointer> iterator;
655 typedef __wrap_iter<const_pointer> const_iterator;
Howard Hinnant324bb032010-08-22 00:02:43 +0000656#endif // defined(_LIBCPP_RAW_ITERATORS)
Howard Hinnant0949eed2011-06-30 21:18:19 +0000657 typedef _VSTD::reverse_iterator<iterator> reverse_iterator;
658 typedef _VSTD::reverse_iterator<const_iterator> const_reverse_iterator;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000659
660private:
Howard Hinnant15467182013-04-30 21:44:48 +0000661
Evgeniy Stepanov4f01aa82015-10-13 23:48:28 +0000662#ifdef _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Howard Hinnant15467182013-04-30 21:44:48 +0000663
664 struct __long
665 {
666 pointer __data_;
667 size_type __size_;
668 size_type __cap_;
669 };
670
671#if _LIBCPP_BIG_ENDIAN
Ben Craigde79ab62017-07-12 01:45:13 +0000672 static const size_type __short_mask = 0x01;
673 static const size_type __long_mask = 0x1ul;
Howard Hinnant15467182013-04-30 21:44:48 +0000674#else // _LIBCPP_BIG_ENDIAN
Ben Craigde79ab62017-07-12 01:45:13 +0000675 static const size_type __short_mask = 0x80;
676 static const size_type __long_mask = ~(size_type(~0) >> 1);
Howard Hinnant15467182013-04-30 21:44:48 +0000677#endif // _LIBCPP_BIG_ENDIAN
678
679 enum {__min_cap = (sizeof(__long) - 1)/sizeof(value_type) > 2 ?
680 (sizeof(__long) - 1)/sizeof(value_type) : 2};
681
682 struct __short
683 {
684 value_type __data_[__min_cap];
685 struct
686 : __padding<value_type>
687 {
688 unsigned char __size_;
689 };
690 };
691
692#else
693
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000694 struct __long
695 {
696 size_type __cap_;
697 size_type __size_;
698 pointer __data_;
699 };
700
701#if _LIBCPP_BIG_ENDIAN
Ben Craigde79ab62017-07-12 01:45:13 +0000702 static const size_type __short_mask = 0x80;
703 static const size_type __long_mask = ~(size_type(~0) >> 1);
Howard Hinnant324bb032010-08-22 00:02:43 +0000704#else // _LIBCPP_BIG_ENDIAN
Ben Craigde79ab62017-07-12 01:45:13 +0000705 static const size_type __short_mask = 0x01;
706 static const size_type __long_mask = 0x1ul;
Howard Hinnant324bb032010-08-22 00:02:43 +0000707#endif // _LIBCPP_BIG_ENDIAN
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000708
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000709 enum {__min_cap = (sizeof(__long) - 1)/sizeof(value_type) > 2 ?
710 (sizeof(__long) - 1)/sizeof(value_type) : 2};
711
712 struct __short
713 {
714 union
715 {
716 unsigned char __size_;
Howard Hinnant9c0df142012-10-30 19:06:59 +0000717 value_type __lx;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000718 };
719 value_type __data_[__min_cap];
720 };
721
Evgeniy Stepanov4f01aa82015-10-13 23:48:28 +0000722#endif // _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Howard Hinnant15467182013-04-30 21:44:48 +0000723
Howard Hinnant499cea12013-08-23 17:37:05 +0000724 union __ulx{__long __lx; __short __lxx;};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000725
Howard Hinnant499cea12013-08-23 17:37:05 +0000726 enum {__n_words = sizeof(__ulx) / sizeof(size_type)};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000727
728 struct __raw
729 {
730 size_type __words[__n_words];
731 };
732
733 struct __rep
734 {
735 union
736 {
737 __long __l;
738 __short __s;
739 __raw __r;
740 };
741 };
742
743 __compressed_pair<__rep, allocator_type> __r_;
744
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000745public:
746 static const size_type npos = -1;
747
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000748 _LIBCPP_INLINE_VISIBILITY basic_string()
749 _NOEXCEPT_(is_nothrow_default_constructible<allocator_type>::value);
Marshall Clow7b193f72015-06-03 19:56:43 +0000750
751 _LIBCPP_INLINE_VISIBILITY explicit basic_string(const allocator_type& __a)
752#if _LIBCPP_STD_VER <= 14
753 _NOEXCEPT_(is_nothrow_copy_constructible<allocator_type>::value);
754#else
755 _NOEXCEPT;
756#endif
757
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000758 basic_string(const basic_string& __str);
759 basic_string(const basic_string& __str, const allocator_type& __a);
Marshall Clow7b193f72015-06-03 19:56:43 +0000760
Eric Fiselier3e928972017-04-19 00:28:44 +0000761#ifndef _LIBCPP_CXX03_LANG
Howard Hinnant9f193f22011-01-26 00:06:59 +0000762 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000763 basic_string(basic_string&& __str)
Marshall Clow7b193f72015-06-03 19:56:43 +0000764#if _LIBCPP_STD_VER <= 14
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000765 _NOEXCEPT_(is_nothrow_move_constructible<allocator_type>::value);
Marshall Clow7b193f72015-06-03 19:56:43 +0000766#else
767 _NOEXCEPT;
768#endif
769
Howard Hinnant9f193f22011-01-26 00:06:59 +0000770 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000771 basic_string(basic_string&& __str, const allocator_type& __a);
Eric Fiselier3e928972017-04-19 00:28:44 +0000772#endif // _LIBCPP_CXX03_LANG
Eric Fiselier0eaf2e82017-02-17 01:17:10 +0000773 _LIBCPP_INLINE_VISIBILITY basic_string(const _CharT* __s);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000774 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +0000775 basic_string(const _CharT* __s, const _Allocator& __a);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000776 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +0000777 basic_string(const _CharT* __s, size_type __n);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000778 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +0000779 basic_string(const _CharT* __s, size_type __n, const _Allocator& __a);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000780 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +0000781 basic_string(size_type __n, _CharT __c);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000782 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +0000783 basic_string(size_type __n, _CharT __c, const _Allocator& __a);
Marshall Clowf4f7d8f2016-04-07 18:13:41 +0000784 basic_string(const basic_string& __str, size_type __pos, size_type __n,
Eric Fiselier0eaf2e82017-02-17 01:17:10 +0000785 const _Allocator& __a = _Allocator());
Marshall Clowf4f7d8f2016-04-07 18:13:41 +0000786 _LIBCPP_INLINE_VISIBILITY
787 basic_string(const basic_string& __str, size_type __pos,
Eric Fiselier0eaf2e82017-02-17 01:17:10 +0000788 const _Allocator& __a = _Allocator());
Marshall Clowdb7fa112016-11-14 18:22:19 +0000789 template<class _Tp>
Shoaib Meenai24e8dbd2017-03-02 03:02:50 +0000790 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
Eric Fiselier0eaf2e82017-02-17 01:17:10 +0000791 basic_string(const _Tp& __t, size_type __pos, size_type __n,
Marshall Clowdb7fa112016-11-14 18:22:19 +0000792 const allocator_type& __a = allocator_type(),
793 typename enable_if<__can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value, void>::type* = 0);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000794 _LIBCPP_INLINE_VISIBILITY explicit
795 basic_string(__self_view __sv);
796 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +0000797 basic_string(__self_view __sv, const _Allocator& __a);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000798 template<class _InputIterator>
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000799 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000800 basic_string(_InputIterator __first, _InputIterator __last);
801 template<class _InputIterator>
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000802 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000803 basic_string(_InputIterator __first, _InputIterator __last, const allocator_type& __a);
Eric Fiselier3e928972017-04-19 00:28:44 +0000804#ifndef _LIBCPP_CXX03_LANG
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000805 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +0000806 basic_string(initializer_list<_CharT> __il);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000807 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +0000808 basic_string(initializer_list<_CharT> __il, const _Allocator& __a);
Eric Fiselier3e928972017-04-19 00:28:44 +0000809#endif // _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000810
Eric Fiselier51eb1d52016-10-31 03:42:50 +0000811 inline ~basic_string();
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000812
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000813 _LIBCPP_INLINE_VISIBILITY
814 operator __self_view() const _NOEXCEPT { return __self_view(data(), size()); }
815
Howard Hinnante32b5e22010-11-17 17:55:08 +0000816 basic_string& operator=(const basic_string& __str);
Eric Fiselierf472d6c2017-01-23 21:24:58 +0000817
818#ifndef _LIBCPP_CXX03_LANG
Eric Fiselier37b2be92017-01-17 22:10:32 +0000819 template <class = void>
Eric Fiselierf472d6c2017-01-23 21:24:58 +0000820#endif
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000821 _LIBCPP_INLINE_VISIBILITY
822 basic_string& operator=(__self_view __sv) {return assign(__sv);}
Eric Fiselier3e928972017-04-19 00:28:44 +0000823#ifndef _LIBCPP_CXX03_LANG
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000824 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000825 basic_string& operator=(basic_string&& __str)
Marshall Clowaf961ed2015-08-18 18:57:00 +0000826 _NOEXCEPT_((__noexcept_move_assign_container<_Allocator, __alloc_traits>::value));
Eric Fiselier3e928972017-04-19 00:28:44 +0000827 _LIBCPP_INLINE_VISIBILITY
828 basic_string& operator=(initializer_list<value_type> __il) {return assign(__il.begin(), __il.size());}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000829#endif
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000830 _LIBCPP_INLINE_VISIBILITY basic_string& operator=(const value_type* __s) {return assign(__s);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000831 basic_string& operator=(value_type __c);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000832
Howard Hinnant499cea12013-08-23 17:37:05 +0000833#if _LIBCPP_DEBUG_LEVEL >= 2
834 _LIBCPP_INLINE_VISIBILITY
835 iterator begin() _NOEXCEPT
836 {return iterator(this, __get_pointer());}
837 _LIBCPP_INLINE_VISIBILITY
838 const_iterator begin() const _NOEXCEPT
839 {return const_iterator(this, __get_pointer());}
840 _LIBCPP_INLINE_VISIBILITY
841 iterator end() _NOEXCEPT
842 {return iterator(this, __get_pointer() + size());}
843 _LIBCPP_INLINE_VISIBILITY
844 const_iterator end() const _NOEXCEPT
845 {return const_iterator(this, __get_pointer() + size());}
846#else
Howard Hinnanta6119a82011-05-29 19:57:12 +0000847 _LIBCPP_INLINE_VISIBILITY
848 iterator begin() _NOEXCEPT
849 {return iterator(__get_pointer());}
850 _LIBCPP_INLINE_VISIBILITY
851 const_iterator begin() const _NOEXCEPT
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000852 {return const_iterator(__get_pointer());}
Howard Hinnanta6119a82011-05-29 19:57:12 +0000853 _LIBCPP_INLINE_VISIBILITY
854 iterator end() _NOEXCEPT
855 {return iterator(__get_pointer() + size());}
856 _LIBCPP_INLINE_VISIBILITY
857 const_iterator end() const _NOEXCEPT
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000858 {return const_iterator(__get_pointer() + size());}
Howard Hinnant499cea12013-08-23 17:37:05 +0000859#endif // _LIBCPP_DEBUG_LEVEL >= 2
Howard Hinnanta6119a82011-05-29 19:57:12 +0000860 _LIBCPP_INLINE_VISIBILITY
861 reverse_iterator rbegin() _NOEXCEPT
862 {return reverse_iterator(end());}
863 _LIBCPP_INLINE_VISIBILITY
864 const_reverse_iterator rbegin() const _NOEXCEPT
865 {return const_reverse_iterator(end());}
866 _LIBCPP_INLINE_VISIBILITY
867 reverse_iterator rend() _NOEXCEPT
868 {return reverse_iterator(begin());}
869 _LIBCPP_INLINE_VISIBILITY
870 const_reverse_iterator rend() const _NOEXCEPT
871 {return const_reverse_iterator(begin());}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000872
Howard Hinnanta6119a82011-05-29 19:57:12 +0000873 _LIBCPP_INLINE_VISIBILITY
874 const_iterator cbegin() const _NOEXCEPT
875 {return begin();}
876 _LIBCPP_INLINE_VISIBILITY
877 const_iterator cend() const _NOEXCEPT
878 {return end();}
879 _LIBCPP_INLINE_VISIBILITY
880 const_reverse_iterator crbegin() const _NOEXCEPT
881 {return rbegin();}
882 _LIBCPP_INLINE_VISIBILITY
883 const_reverse_iterator crend() const _NOEXCEPT
884 {return rend();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000885
Howard Hinnanta6119a82011-05-29 19:57:12 +0000886 _LIBCPP_INLINE_VISIBILITY size_type size() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000887 {return __is_long() ? __get_long_size() : __get_short_size();}
Howard Hinnanta6119a82011-05-29 19:57:12 +0000888 _LIBCPP_INLINE_VISIBILITY size_type length() const _NOEXCEPT {return size();}
889 _LIBCPP_INLINE_VISIBILITY size_type max_size() const _NOEXCEPT;
890 _LIBCPP_INLINE_VISIBILITY size_type capacity() const _NOEXCEPT
Eric Fiseliere2d48922015-08-28 07:02:42 +0000891 {return (__is_long() ? __get_long_cap()
892 : static_cast<size_type>(__min_cap)) - 1;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000893
894 void resize(size_type __n, value_type __c);
895 _LIBCPP_INLINE_VISIBILITY void resize(size_type __n) {resize(__n, value_type());}
896
Eric Fiselier59e24fe2017-06-01 02:29:37 +0000897 void reserve(size_type __res_arg = 0);
Howard Hinnant8d7a9552010-09-23 17:31:07 +0000898 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000899 void shrink_to_fit() _NOEXCEPT {reserve();}
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000900 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +0000901 void clear() _NOEXCEPT;
902 _LIBCPP_INLINE_VISIBILITY bool empty() const _NOEXCEPT {return size() == 0;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000903
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000904 _LIBCPP_INLINE_VISIBILITY const_reference operator[](size_type __pos) const _NOEXCEPT;
905 _LIBCPP_INLINE_VISIBILITY reference operator[](size_type __pos) _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000906
907 const_reference at(size_type __n) const;
908 reference at(size_type __n);
909
910 _LIBCPP_INLINE_VISIBILITY basic_string& operator+=(const basic_string& __str) {return append(__str);}
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000911 _LIBCPP_INLINE_VISIBILITY basic_string& operator+=(__self_view __sv) {return append(__sv);}
912 _LIBCPP_INLINE_VISIBILITY basic_string& operator+=(const value_type* __s) {return append(__s);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000913 _LIBCPP_INLINE_VISIBILITY basic_string& operator+=(value_type __c) {push_back(__c); return *this;}
Eric Fiselier3e928972017-04-19 00:28:44 +0000914#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000915 _LIBCPP_INLINE_VISIBILITY basic_string& operator+=(initializer_list<value_type> __il) {return append(__il);}
Eric Fiselier3e928972017-04-19 00:28:44 +0000916#endif // _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000917
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000918 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000919 basic_string& append(const basic_string& __str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000920 _LIBCPP_INLINE_VISIBILITY
921 basic_string& append(__self_view __sv) { return append(__sv.data(), __sv.size()); }
Marshall Clowa93b5e22014-03-04 19:17:19 +0000922 basic_string& append(const basic_string& __str, size_type __pos, size_type __n=npos);
Marshall Clow42a87db2016-10-03 23:40:48 +0000923 template <class _Tp>
Shoaib Meenai24e8dbd2017-03-02 03:02:50 +0000924 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
925 typename enable_if
Marshall Clow6ac8de02016-09-24 22:45:42 +0000926 <
927 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
928 basic_string&
929 >::type
930 append(const _Tp& __t, size_type __pos, size_type __n=npos);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000931 basic_string& append(const value_type* __s, size_type __n);
932 basic_string& append(const value_type* __s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000933 basic_string& append(size_type __n, value_type __c);
Eric Fiselier026d38e2016-10-31 02:46:25 +0000934 template <class _ForwardIterator>
Shoaib Meenai24e8dbd2017-03-02 03:02:50 +0000935 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
936 basic_string& __append_forward_unsafe(_ForwardIterator, _ForwardIterator);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000937 template<class _InputIterator>
Shoaib Meenai24e8dbd2017-03-02 03:02:50 +0000938 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
939 typename enable_if
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000940 <
Marshall Clowdf9db312016-01-13 21:54:34 +0000941 __is_exactly_input_iterator<_InputIterator>::value
942 || !__libcpp_string_gets_noexcept_iterator<_InputIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000943 basic_string&
944 >::type
Eric Fiselier026d38e2016-10-31 02:46:25 +0000945 _LIBCPP_INLINE_VISIBILITY
946 append(_InputIterator __first, _InputIterator __last) {
947 const basic_string __temp (__first, __last, __alloc());
948 append(__temp.data(), __temp.size());
949 return *this;
950 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000951 template<class _ForwardIterator>
Shoaib Meenai24e8dbd2017-03-02 03:02:50 +0000952 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
953 typename enable_if
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000954 <
Marshall Clowdf9db312016-01-13 21:54:34 +0000955 __is_forward_iterator<_ForwardIterator>::value
956 && __libcpp_string_gets_noexcept_iterator<_ForwardIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000957 basic_string&
958 >::type
Eric Fiselier026d38e2016-10-31 02:46:25 +0000959 _LIBCPP_INLINE_VISIBILITY
960 append(_ForwardIterator __first, _ForwardIterator __last) {
961 return __append_forward_unsafe(__first, __last);
962 }
963
Eric Fiselier3e928972017-04-19 00:28:44 +0000964#ifndef _LIBCPP_CXX03_LANG
Howard Hinnant8d7a9552010-09-23 17:31:07 +0000965 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000966 basic_string& append(initializer_list<value_type> __il) {return append(__il.begin(), __il.size());}
Eric Fiselier3e928972017-04-19 00:28:44 +0000967#endif // _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000968
969 void push_back(value_type __c);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000970 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000971 void pop_back();
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000972 _LIBCPP_INLINE_VISIBILITY reference front();
973 _LIBCPP_INLINE_VISIBILITY const_reference front() const;
974 _LIBCPP_INLINE_VISIBILITY reference back();
975 _LIBCPP_INLINE_VISIBILITY const_reference back() const;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000976
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000977 _LIBCPP_INLINE_VISIBILITY
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000978 basic_string& assign(__self_view __sv) { return assign(__sv.data(), __sv.size()); }
979 _LIBCPP_INLINE_VISIBILITY
Marshall Clowf40ec902016-03-09 18:08:29 +0000980 basic_string& assign(const basic_string& __str) { return *this = __str; }
Eric Fiselier3e928972017-04-19 00:28:44 +0000981#ifndef _LIBCPP_CXX03_LANG
Howard Hinnanta6119a82011-05-29 19:57:12 +0000982 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier59e24fe2017-06-01 02:29:37 +0000983 basic_string& assign(basic_string&& __str)
Marshall Clow7ed093b2015-10-05 16:17:34 +0000984 _NOEXCEPT_((__noexcept_move_assign_container<_Allocator, __alloc_traits>::value))
Eric Fiselier59e24fe2017-06-01 02:29:37 +0000985 {*this = _VSTD::move(__str); return *this;}
Howard Hinnanta6119a82011-05-29 19:57:12 +0000986#endif
Marshall Clowa93b5e22014-03-04 19:17:19 +0000987 basic_string& assign(const basic_string& __str, size_type __pos, size_type __n=npos);
Marshall Clow42a87db2016-10-03 23:40:48 +0000988 template <class _Tp>
Shoaib Meenai24e8dbd2017-03-02 03:02:50 +0000989 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
990 typename enable_if
Marshall Clow6ac8de02016-09-24 22:45:42 +0000991 <
992 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
993 basic_string&
994 >::type
Eric Fiselier59e24fe2017-06-01 02:29:37 +0000995 assign(const _Tp & __t, size_type __pos, size_type __n=npos);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000996 basic_string& assign(const value_type* __s, size_type __n);
997 basic_string& assign(const value_type* __s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000998 basic_string& assign(size_type __n, value_type __c);
999 template<class _InputIterator>
Shoaib Meenai24e8dbd2017-03-02 03:02:50 +00001000 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
1001 typename enable_if
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001002 <
Marshall Clowdf9db312016-01-13 21:54:34 +00001003 __is_exactly_input_iterator<_InputIterator>::value
1004 || !__libcpp_string_gets_noexcept_iterator<_InputIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001005 basic_string&
1006 >::type
1007 assign(_InputIterator __first, _InputIterator __last);
1008 template<class _ForwardIterator>
Shoaib Meenai24e8dbd2017-03-02 03:02:50 +00001009 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
1010 typename enable_if
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001011 <
Marshall Clowdf9db312016-01-13 21:54:34 +00001012 __is_forward_iterator<_ForwardIterator>::value
1013 && __libcpp_string_gets_noexcept_iterator<_ForwardIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001014 basic_string&
1015 >::type
1016 assign(_ForwardIterator __first, _ForwardIterator __last);
Eric Fiselier3e928972017-04-19 00:28:44 +00001017#ifndef _LIBCPP_CXX03_LANG
Howard Hinnant8d7a9552010-09-23 17:31:07 +00001018 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001019 basic_string& assign(initializer_list<value_type> __il) {return assign(__il.begin(), __il.size());}
Eric Fiselier3e928972017-04-19 00:28:44 +00001020#endif // _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001021
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001022 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001023 basic_string& insert(size_type __pos1, const basic_string& __str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001024 _LIBCPP_INLINE_VISIBILITY
1025 basic_string& insert(size_type __pos1, __self_view __sv) { return insert(__pos1, __sv.data(), __sv.size()); }
Marshall Clow6ac8de02016-09-24 22:45:42 +00001026 template <class _Tp>
Shoaib Meenai24e8dbd2017-03-02 03:02:50 +00001027 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
1028 typename enable_if
Marshall Clow6ac8de02016-09-24 22:45:42 +00001029 <
1030 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
1031 basic_string&
1032 >::type
1033 insert(size_type __pos1, const _Tp& __t, size_type __pos2, size_type __n=npos);
Marshall Clowa93b5e22014-03-04 19:17:19 +00001034 basic_string& insert(size_type __pos1, const basic_string& __str, size_type __pos2, size_type __n=npos);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001035 basic_string& insert(size_type __pos, const value_type* __s, size_type __n);
1036 basic_string& insert(size_type __pos, const value_type* __s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001037 basic_string& insert(size_type __pos, size_type __n, value_type __c);
1038 iterator insert(const_iterator __pos, value_type __c);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001039 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001040 iterator insert(const_iterator __pos, size_type __n, value_type __c);
1041 template<class _InputIterator>
Shoaib Meenai24e8dbd2017-03-02 03:02:50 +00001042 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
1043 typename enable_if
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001044 <
Marshall Clowdf9db312016-01-13 21:54:34 +00001045 __is_exactly_input_iterator<_InputIterator>::value
1046 || !__libcpp_string_gets_noexcept_iterator<_InputIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001047 iterator
1048 >::type
1049 insert(const_iterator __pos, _InputIterator __first, _InputIterator __last);
1050 template<class _ForwardIterator>
Shoaib Meenai24e8dbd2017-03-02 03:02:50 +00001051 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
1052 typename enable_if
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001053 <
Marshall Clowdf9db312016-01-13 21:54:34 +00001054 __is_forward_iterator<_ForwardIterator>::value
1055 && __libcpp_string_gets_noexcept_iterator<_ForwardIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001056 iterator
1057 >::type
1058 insert(const_iterator __pos, _ForwardIterator __first, _ForwardIterator __last);
Eric Fiselier3e928972017-04-19 00:28:44 +00001059#ifndef _LIBCPP_CXX03_LANG
Howard Hinnant8d7a9552010-09-23 17:31:07 +00001060 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001061 iterator insert(const_iterator __pos, initializer_list<value_type> __il)
1062 {return insert(__pos, __il.begin(), __il.end());}
Eric Fiselier3e928972017-04-19 00:28:44 +00001063#endif // _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001064
1065 basic_string& erase(size_type __pos = 0, size_type __n = npos);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001066 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001067 iterator erase(const_iterator __pos);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001068 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001069 iterator erase(const_iterator __first, const_iterator __last);
1070
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001071 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001072 basic_string& replace(size_type __pos1, size_type __n1, const basic_string& __str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001073 _LIBCPP_INLINE_VISIBILITY
1074 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 +00001075 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 +00001076 template <class _Tp>
Shoaib Meenai24e8dbd2017-03-02 03:02:50 +00001077 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
1078 typename enable_if
Marshall Clow6ac8de02016-09-24 22:45:42 +00001079 <
1080 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
1081 basic_string&
1082 >::type
1083 replace(size_type __pos1, size_type __n1, const _Tp& __t, size_type __pos2, size_type __n2=npos);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001084 basic_string& replace(size_type __pos, size_type __n1, const value_type* __s, size_type __n2);
1085 basic_string& replace(size_type __pos, size_type __n1, const value_type* __s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001086 basic_string& replace(size_type __pos, size_type __n1, size_type __n2, value_type __c);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001087 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7b2cb482010-11-17 21:11:40 +00001088 basic_string& replace(const_iterator __i1, const_iterator __i2, const basic_string& __str);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001089 _LIBCPP_INLINE_VISIBILITY
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001090 basic_string& replace(const_iterator __i1, const_iterator __i2, __self_view __sv) { return replace(__i1 - begin(), __i2 - __i1, __sv); }
1091 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001092 basic_string& replace(const_iterator __i1, const_iterator __i2, const value_type* __s, size_type __n);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001093 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001094 basic_string& replace(const_iterator __i1, const_iterator __i2, const value_type* __s);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001095 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7b2cb482010-11-17 21:11:40 +00001096 basic_string& replace(const_iterator __i1, const_iterator __i2, size_type __n, value_type __c);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001097 template<class _InputIterator>
Shoaib Meenai24e8dbd2017-03-02 03:02:50 +00001098 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
1099 typename enable_if
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001100 <
1101 __is_input_iterator<_InputIterator>::value,
1102 basic_string&
1103 >::type
Howard Hinnant7b2cb482010-11-17 21:11:40 +00001104 replace(const_iterator __i1, const_iterator __i2, _InputIterator __j1, _InputIterator __j2);
Eric Fiselier3e928972017-04-19 00:28:44 +00001105#ifndef _LIBCPP_CXX03_LANG
Howard Hinnant8d7a9552010-09-23 17:31:07 +00001106 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7b2cb482010-11-17 21:11:40 +00001107 basic_string& replace(const_iterator __i1, const_iterator __i2, initializer_list<value_type> __il)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001108 {return replace(__i1, __i2, __il.begin(), __il.end());}
Eric Fiselier3e928972017-04-19 00:28:44 +00001109#endif // _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001110
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001111 size_type copy(value_type* __s, size_type __n, size_type __pos = 0) const;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001112 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001113 basic_string substr(size_type __pos = 0, size_type __n = npos) const;
1114
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001115 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00001116 void swap(basic_string& __str)
Marshall Clow7d914d12015-07-13 20:04:56 +00001117#if _LIBCPP_STD_VER >= 14
Eric Fiselier47257c42016-12-28 05:53:01 +00001118 _NOEXCEPT_DEBUG;
Marshall Clow7d914d12015-07-13 20:04:56 +00001119#else
Eric Fiselier47257c42016-12-28 05:53:01 +00001120 _NOEXCEPT_DEBUG_(!__alloc_traits::propagate_on_container_swap::value ||
Marshall Clow7d914d12015-07-13 20:04:56 +00001121 __is_nothrow_swappable<allocator_type>::value);
1122#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001123
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001124 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001125 const value_type* c_str() const _NOEXCEPT {return data();}
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001126 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001127 const value_type* data() const _NOEXCEPT {return _VSTD::__to_raw_pointer(__get_pointer());}
Marshall Clowf532a702016-03-08 15:44:30 +00001128#if _LIBCPP_STD_VER > 14
1129 _LIBCPP_INLINE_VISIBILITY
1130 value_type* data() _NOEXCEPT {return _VSTD::__to_raw_pointer(__get_pointer());}
1131#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001132
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001133 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001134 allocator_type get_allocator() const _NOEXCEPT {return __alloc();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001135
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001136 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001137 size_type find(const basic_string& __str, size_type __pos = 0) const _NOEXCEPT;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001138 _LIBCPP_INLINE_VISIBILITY
1139 size_type find(__self_view __sv, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001140 size_type find(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001141 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001142 size_type find(const value_type* __s, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnanta6119a82011-05-29 19:57:12 +00001143 size_type find(value_type __c, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001144
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001145 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001146 size_type rfind(const basic_string& __str, size_type __pos = npos) const _NOEXCEPT;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001147 _LIBCPP_INLINE_VISIBILITY
1148 size_type rfind(__self_view __sv, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001149 size_type rfind(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001150 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001151 size_type rfind(const value_type* __s, size_type __pos = npos) const _NOEXCEPT;
Howard Hinnanta6119a82011-05-29 19:57:12 +00001152 size_type rfind(value_type __c, size_type __pos = npos) const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001153
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001154 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001155 size_type find_first_of(const basic_string& __str, size_type __pos = 0) const _NOEXCEPT;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001156 _LIBCPP_INLINE_VISIBILITY
1157 size_type find_first_of(__self_view __sv, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001158 size_type find_first_of(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001159 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001160 size_type find_first_of(const value_type* __s, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001161 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001162 size_type find_first_of(value_type __c, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001163
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001164 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001165 size_type find_last_of(const basic_string& __str, size_type __pos = npos) const _NOEXCEPT;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001166 _LIBCPP_INLINE_VISIBILITY
1167 size_type find_last_of(__self_view __sv, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001168 size_type find_last_of(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001169 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001170 size_type find_last_of(const value_type* __s, size_type __pos = npos) const _NOEXCEPT;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001171 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001172 size_type find_last_of(value_type __c, size_type __pos = npos) const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001173
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001174 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001175 size_type find_first_not_of(const basic_string& __str, size_type __pos = 0) const _NOEXCEPT;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001176 _LIBCPP_INLINE_VISIBILITY
1177 size_type find_first_not_of(__self_view __sv, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001178 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 +00001179 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001180 size_type find_first_not_of(const value_type* __s, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnanta6119a82011-05-29 19:57:12 +00001181 _LIBCPP_INLINE_VISIBILITY
1182 size_type find_first_not_of(value_type __c, size_type __pos = 0) const _NOEXCEPT;
1183
1184 _LIBCPP_INLINE_VISIBILITY
1185 size_type find_last_not_of(const basic_string& __str, size_type __pos = npos) const _NOEXCEPT;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001186 _LIBCPP_INLINE_VISIBILITY
1187 size_type find_last_not_of(__self_view __sv, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001188 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 +00001189 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001190 size_type find_last_not_of(const value_type* __s, size_type __pos = npos) const _NOEXCEPT;
Howard Hinnanta6119a82011-05-29 19:57:12 +00001191 _LIBCPP_INLINE_VISIBILITY
1192 size_type find_last_not_of(value_type __c, size_type __pos = npos) const _NOEXCEPT;
1193
1194 _LIBCPP_INLINE_VISIBILITY
1195 int compare(const basic_string& __str) const _NOEXCEPT;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001196 _LIBCPP_INLINE_VISIBILITY
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001197 int compare(__self_view __sv) const _NOEXCEPT;
1198 _LIBCPP_INLINE_VISIBILITY
1199 int compare(size_type __pos1, size_type __n1, __self_view __sv) const;
1200 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001201 int compare(size_type __pos1, size_type __n1, const basic_string& __str) const;
Marshall Clowa93b5e22014-03-04 19:17:19 +00001202 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 +00001203 template <class _Tp>
Eric Fiselier9dbc0532016-10-14 05:29:46 +00001204 inline _LIBCPP_INLINE_VISIBILITY
Marshall Clow6ac8de02016-09-24 22:45:42 +00001205 typename enable_if
1206 <
1207 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
1208 int
1209 >::type
1210 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 +00001211 int compare(const value_type* __s) const _NOEXCEPT;
1212 int compare(size_type __pos1, size_type __n1, const value_type* __s) const;
1213 int compare(size_type __pos1, size_type __n1, const value_type* __s, size_type __n2) const;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001214
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001215 _LIBCPP_INLINE_VISIBILITY bool __invariants() const;
Howard Hinnant08dd2532013-04-22 23:55:13 +00001216
1217 _LIBCPP_INLINE_VISIBILITY
1218 bool __is_long() const _NOEXCEPT
1219 {return bool(__r_.first().__s.__size_ & __short_mask);}
1220
Howard Hinnant499cea12013-08-23 17:37:05 +00001221#if _LIBCPP_DEBUG_LEVEL >= 2
1222
1223 bool __dereferenceable(const const_iterator* __i) const;
1224 bool __decrementable(const const_iterator* __i) const;
1225 bool __addable(const const_iterator* __i, ptrdiff_t __n) const;
1226 bool __subscriptable(const const_iterator* __i, ptrdiff_t __n) const;
1227
1228#endif // _LIBCPP_DEBUG_LEVEL >= 2
1229
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001230private:
Howard Hinnanta6119a82011-05-29 19:57:12 +00001231 _LIBCPP_INLINE_VISIBILITY
1232 allocator_type& __alloc() _NOEXCEPT
1233 {return __r_.second();}
1234 _LIBCPP_INLINE_VISIBILITY
1235 const allocator_type& __alloc() const _NOEXCEPT
1236 {return __r_.second();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001237
Evgeniy Stepanov4f01aa82015-10-13 23:48:28 +00001238#ifdef _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Howard Hinnant15467182013-04-30 21:44:48 +00001239
Howard Hinnanta6119a82011-05-29 19:57:12 +00001240 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001241 void __set_short_size(size_type __s) _NOEXCEPT
Howard Hinnant15467182013-04-30 21:44:48 +00001242# if _LIBCPP_BIG_ENDIAN
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001243 {__r_.first().__s.__size_ = (unsigned char)(__s << 1);}
Howard Hinnant15467182013-04-30 21:44:48 +00001244# else
1245 {__r_.first().__s.__size_ = (unsigned char)(__s);}
1246# endif
1247
Howard Hinnanta6119a82011-05-29 19:57:12 +00001248 _LIBCPP_INLINE_VISIBILITY
1249 size_type __get_short_size() const _NOEXCEPT
Howard Hinnant15467182013-04-30 21:44:48 +00001250# if _LIBCPP_BIG_ENDIAN
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001251 {return __r_.first().__s.__size_ >> 1;}
Howard Hinnant15467182013-04-30 21:44:48 +00001252# else
1253 {return __r_.first().__s.__size_;}
1254# endif
1255
Evgeniy Stepanov4f01aa82015-10-13 23:48:28 +00001256#else // _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Howard Hinnant15467182013-04-30 21:44:48 +00001257
1258 _LIBCPP_INLINE_VISIBILITY
1259 void __set_short_size(size_type __s) _NOEXCEPT
1260# if _LIBCPP_BIG_ENDIAN
1261 {__r_.first().__s.__size_ = (unsigned char)(__s);}
1262# else
1263 {__r_.first().__s.__size_ = (unsigned char)(__s << 1);}
1264# endif
1265
1266 _LIBCPP_INLINE_VISIBILITY
1267 size_type __get_short_size() const _NOEXCEPT
1268# if _LIBCPP_BIG_ENDIAN
1269 {return __r_.first().__s.__size_;}
1270# else
1271 {return __r_.first().__s.__size_ >> 1;}
1272# endif
1273
Evgeniy Stepanov4f01aa82015-10-13 23:48:28 +00001274#endif // _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Howard Hinnant15467182013-04-30 21:44:48 +00001275
Howard Hinnanta6119a82011-05-29 19:57:12 +00001276 _LIBCPP_INLINE_VISIBILITY
1277 void __set_long_size(size_type __s) _NOEXCEPT
1278 {__r_.first().__l.__size_ = __s;}
1279 _LIBCPP_INLINE_VISIBILITY
1280 size_type __get_long_size() const _NOEXCEPT
1281 {return __r_.first().__l.__size_;}
1282 _LIBCPP_INLINE_VISIBILITY
1283 void __set_size(size_type __s) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001284 {if (__is_long()) __set_long_size(__s); else __set_short_size(__s);}
1285
Howard Hinnanta6119a82011-05-29 19:57:12 +00001286 _LIBCPP_INLINE_VISIBILITY
1287 void __set_long_cap(size_type __s) _NOEXCEPT
1288 {__r_.first().__l.__cap_ = __long_mask | __s;}
1289 _LIBCPP_INLINE_VISIBILITY
1290 size_type __get_long_cap() const _NOEXCEPT
Howard Hinnantec3773c2011-12-01 20:21:04 +00001291 {return __r_.first().__l.__cap_ & size_type(~__long_mask);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001292
Howard Hinnanta6119a82011-05-29 19:57:12 +00001293 _LIBCPP_INLINE_VISIBILITY
1294 void __set_long_pointer(pointer __p) _NOEXCEPT
1295 {__r_.first().__l.__data_ = __p;}
1296 _LIBCPP_INLINE_VISIBILITY
1297 pointer __get_long_pointer() _NOEXCEPT
1298 {return __r_.first().__l.__data_;}
1299 _LIBCPP_INLINE_VISIBILITY
1300 const_pointer __get_long_pointer() const _NOEXCEPT
1301 {return __r_.first().__l.__data_;}
1302 _LIBCPP_INLINE_VISIBILITY
1303 pointer __get_short_pointer() _NOEXCEPT
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001304 {return pointer_traits<pointer>::pointer_to(__r_.first().__s.__data_[0]);}
Howard Hinnanta6119a82011-05-29 19:57:12 +00001305 _LIBCPP_INLINE_VISIBILITY
1306 const_pointer __get_short_pointer() const _NOEXCEPT
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001307 {return pointer_traits<const_pointer>::pointer_to(__r_.first().__s.__data_[0]);}
Howard Hinnanta6119a82011-05-29 19:57:12 +00001308 _LIBCPP_INLINE_VISIBILITY
1309 pointer __get_pointer() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001310 {return __is_long() ? __get_long_pointer() : __get_short_pointer();}
Howard Hinnanta6119a82011-05-29 19:57:12 +00001311 _LIBCPP_INLINE_VISIBILITY
1312 const_pointer __get_pointer() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001313 {return __is_long() ? __get_long_pointer() : __get_short_pointer();}
1314
Howard Hinnanta6119a82011-05-29 19:57:12 +00001315 _LIBCPP_INLINE_VISIBILITY
1316 void __zero() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001317 {
1318 size_type (&__a)[__n_words] = __r_.first().__r.__words;
1319 for (unsigned __i = 0; __i < __n_words; ++__i)
1320 __a[__i] = 0;
1321 }
1322
1323 template <size_type __a> static
Howard Hinnanta6119a82011-05-29 19:57:12 +00001324 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7f764502013-08-14 18:00:20 +00001325 size_type __align_it(size_type __s) _NOEXCEPT
Eric Fiseliere2d48922015-08-28 07:02:42 +00001326 {return (__s + (__a-1)) & ~(__a-1);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001327 enum {__alignment = 16};
Howard Hinnanta6119a82011-05-29 19:57:12 +00001328 static _LIBCPP_INLINE_VISIBILITY
1329 size_type __recommend(size_type __s) _NOEXCEPT
Eric Fiseliere2d48922015-08-28 07:02:42 +00001330 {return (__s < __min_cap ? static_cast<size_type>(__min_cap) :
Howard Hinnant7f764502013-08-14 18:00:20 +00001331 __align_it<sizeof(value_type) < __alignment ?
Howard Hinnanta6119a82011-05-29 19:57:12 +00001332 __alignment/sizeof(value_type) : 1 > (__s+1)) - 1;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001333
Duncan P. N. Exon Smithed3c0e62017-04-01 03:20:48 +00001334 inline
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001335 void __init(const value_type* __s, size_type __sz, size_type __reserve);
Duncan P. N. Exon Smithed3c0e62017-04-01 03:20:48 +00001336 inline
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001337 void __init(const value_type* __s, size_type __sz);
Duncan P. N. Exon Smithed3c0e62017-04-01 03:20:48 +00001338 inline
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001339 void __init(size_type __n, value_type __c);
Howard Hinnant324bb032010-08-22 00:02:43 +00001340
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001341 template <class _InputIterator>
Duncan P. N. Exon Smithed3c0e62017-04-01 03:20:48 +00001342 inline
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001343 typename enable_if
1344 <
Marshall Clowdf9db312016-01-13 21:54:34 +00001345 __is_exactly_input_iterator<_InputIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001346 void
1347 >::type
1348 __init(_InputIterator __first, _InputIterator __last);
1349
1350 template <class _ForwardIterator>
Duncan P. N. Exon Smithed3c0e62017-04-01 03:20:48 +00001351 inline
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001352 typename enable_if
1353 <
1354 __is_forward_iterator<_ForwardIterator>::value,
1355 void
1356 >::type
1357 __init(_ForwardIterator __first, _ForwardIterator __last);
1358
1359 void __grow_by(size_type __old_cap, size_type __delta_cap, size_type __old_sz,
Howard Hinnant324bb032010-08-22 00:02:43 +00001360 size_type __n_copy, size_type __n_del, size_type __n_add = 0);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001361 void __grow_by_and_replace(size_type __old_cap, size_type __delta_cap, size_type __old_sz,
1362 size_type __n_copy, size_type __n_del,
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001363 size_type __n_add, const value_type* __p_new_stuff);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001364
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001365 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001366 void __erase_to_end(size_type __pos);
1367
Howard Hinnante32b5e22010-11-17 17:55:08 +00001368 _LIBCPP_INLINE_VISIBILITY
1369 void __copy_assign_alloc(const basic_string& __str)
1370 {__copy_assign_alloc(__str, integral_constant<bool,
1371 __alloc_traits::propagate_on_container_copy_assignment::value>());}
1372
1373 _LIBCPP_INLINE_VISIBILITY
1374 void __copy_assign_alloc(const basic_string& __str, true_type)
1375 {
Marshall Clow9247fd22017-01-31 03:40:52 +00001376 if (__alloc() == __str.__alloc())
1377 __alloc() = __str.__alloc();
1378 else
Howard Hinnante32b5e22010-11-17 17:55:08 +00001379 {
Marshall Clow9247fd22017-01-31 03:40:52 +00001380 if (!__str.__is_long())
1381 {
1382 clear();
1383 shrink_to_fit();
1384 __alloc() = __str.__alloc();
1385 }
1386 else
1387 {
1388 allocator_type __a = __str.__alloc();
1389 pointer __p = __alloc_traits::allocate(__a, __str.__get_long_cap());
1390 clear();
1391 shrink_to_fit();
1392 __alloc() = _VSTD::move(__a);
1393 __set_long_pointer(__p);
1394 __set_long_cap(__str.__get_long_cap());
1395 __set_long_size(__str.size());
1396 }
Howard Hinnante32b5e22010-11-17 17:55:08 +00001397 }
Howard Hinnante32b5e22010-11-17 17:55:08 +00001398 }
1399
1400 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantec3773c2011-12-01 20:21:04 +00001401 void __copy_assign_alloc(const basic_string&, false_type) _NOEXCEPT
Howard Hinnante32b5e22010-11-17 17:55:08 +00001402 {}
1403
Eric Fiselier3e928972017-04-19 00:28:44 +00001404#ifndef _LIBCPP_CXX03_LANG
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001405 _LIBCPP_INLINE_VISIBILITY
Marshall Clowaf961ed2015-08-18 18:57:00 +00001406 void __move_assign(basic_string& __str, false_type)
1407 _NOEXCEPT_(__alloc_traits::is_always_equal::value);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001408 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00001409 void __move_assign(basic_string& __str, true_type)
Marshall Clowaf961ed2015-08-18 18:57:00 +00001410#if _LIBCPP_STD_VER > 14
1411 _NOEXCEPT;
1412#else
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00001413 _NOEXCEPT_(is_nothrow_move_assignable<allocator_type>::value);
Howard Hinnante32b5e22010-11-17 17:55:08 +00001414#endif
Marshall Clowaf961ed2015-08-18 18:57:00 +00001415#endif
Howard Hinnante32b5e22010-11-17 17:55:08 +00001416
1417 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3fdbbd22011-08-17 20:36:18 +00001418 void
Howard Hinnant9cbee432011-09-02 20:42:31 +00001419 __move_assign_alloc(basic_string& __str)
Howard Hinnant3fdbbd22011-08-17 20:36:18 +00001420 _NOEXCEPT_(
1421 !__alloc_traits::propagate_on_container_move_assignment::value ||
1422 is_nothrow_move_assignable<allocator_type>::value)
1423 {__move_assign_alloc(__str, integral_constant<bool,
1424 __alloc_traits::propagate_on_container_move_assignment::value>());}
1425
1426 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9cbee432011-09-02 20:42:31 +00001427 void __move_assign_alloc(basic_string& __c, true_type)
Howard Hinnant3fdbbd22011-08-17 20:36:18 +00001428 _NOEXCEPT_(is_nothrow_move_assignable<allocator_type>::value)
1429 {
1430 __alloc() = _VSTD::move(__c.__alloc());
1431 }
1432
1433 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantec3773c2011-12-01 20:21:04 +00001434 void __move_assign_alloc(basic_string&, false_type)
Howard Hinnant3fdbbd22011-08-17 20:36:18 +00001435 _NOEXCEPT
1436 {}
1437
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001438 _LIBCPP_INLINE_VISIBILITY void __invalidate_all_iterators();
1439 _LIBCPP_INLINE_VISIBILITY void __invalidate_iterators_past(size_type);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001440
1441 friend basic_string operator+<>(const basic_string&, const basic_string&);
1442 friend basic_string operator+<>(const value_type*, const basic_string&);
1443 friend basic_string operator+<>(value_type, const basic_string&);
1444 friend basic_string operator+<>(const basic_string&, const value_type*);
1445 friend basic_string operator+<>(const basic_string&, value_type);
1446};
1447
1448template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001449inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001450void
1451basic_string<_CharT, _Traits, _Allocator>::__invalidate_all_iterators()
1452{
Howard Hinnant499cea12013-08-23 17:37:05 +00001453#if _LIBCPP_DEBUG_LEVEL >= 2
1454 __get_db()->__invalidate_all(this);
1455#endif // _LIBCPP_DEBUG_LEVEL >= 2
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001456}
1457
1458template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001459inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001460void
Howard Hinnantec3773c2011-12-01 20:21:04 +00001461basic_string<_CharT, _Traits, _Allocator>::__invalidate_iterators_past(size_type
Howard Hinnant499cea12013-08-23 17:37:05 +00001462#if _LIBCPP_DEBUG_LEVEL >= 2
Howard Hinnantec3773c2011-12-01 20:21:04 +00001463 __pos
1464#endif
1465 )
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001466{
Howard Hinnant499cea12013-08-23 17:37:05 +00001467#if _LIBCPP_DEBUG_LEVEL >= 2
1468 __c_node* __c = __get_db()->__find_c_and_lock(this);
1469 if (__c)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001470 {
Howard Hinnant499cea12013-08-23 17:37:05 +00001471 const_pointer __new_last = __get_pointer() + __pos;
1472 for (__i_node** __p = __c->end_; __p != __c->beg_; )
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001473 {
Howard Hinnant499cea12013-08-23 17:37:05 +00001474 --__p;
1475 const_iterator* __i = static_cast<const_iterator*>((*__p)->__i_);
1476 if (__i->base() > __new_last)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001477 {
Howard Hinnant499cea12013-08-23 17:37:05 +00001478 (*__p)->__c_ = nullptr;
1479 if (--__c->end_ != __p)
1480 memmove(__p, __p+1, (__c->end_ - __p)*sizeof(__i_node*));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001481 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001482 }
Howard Hinnant499cea12013-08-23 17:37:05 +00001483 __get_db()->unlock();
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001484 }
Howard Hinnant499cea12013-08-23 17:37:05 +00001485#endif // _LIBCPP_DEBUG_LEVEL >= 2
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001486}
1487
1488template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001489inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00001490basic_string<_CharT, _Traits, _Allocator>::basic_string()
Marshall Clowc912c0c2015-06-04 02:05:41 +00001491 _NOEXCEPT_(is_nothrow_default_constructible<allocator_type>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001492{
Howard Hinnant499cea12013-08-23 17:37:05 +00001493#if _LIBCPP_DEBUG_LEVEL >= 2
1494 __get_db()->__insert_c(this);
1495#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001496 __zero();
1497}
1498
1499template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001500inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001501basic_string<_CharT, _Traits, _Allocator>::basic_string(const allocator_type& __a)
Eric Fiselier692177d2015-07-18 20:40:46 +00001502#if _LIBCPP_STD_VER <= 14
1503 _NOEXCEPT_(is_nothrow_copy_constructible<allocator_type>::value)
1504#else
1505 _NOEXCEPT
1506#endif
Eric Fiselierdb14bcc2017-04-12 23:45:53 +00001507: __r_(__second_tag(), __a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001508{
Howard Hinnant499cea12013-08-23 17:37:05 +00001509#if _LIBCPP_DEBUG_LEVEL >= 2
1510 __get_db()->__insert_c(this);
1511#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001512 __zero();
1513}
1514
1515template <class _CharT, class _Traits, class _Allocator>
Eric Fiselier6dbed462016-09-16 00:00:48 +00001516void basic_string<_CharT, _Traits, _Allocator>::__init(const value_type* __s,
1517 size_type __sz,
1518 size_type __reserve)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001519{
1520 if (__reserve > max_size())
1521 this->__throw_length_error();
1522 pointer __p;
1523 if (__reserve < __min_cap)
1524 {
1525 __set_short_size(__sz);
1526 __p = __get_short_pointer();
1527 }
1528 else
1529 {
1530 size_type __cap = __recommend(__reserve);
Howard Hinnante32b5e22010-11-17 17:55:08 +00001531 __p = __alloc_traits::allocate(__alloc(), __cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001532 __set_long_pointer(__p);
1533 __set_long_cap(__cap+1);
1534 __set_long_size(__sz);
1535 }
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001536 traits_type::copy(_VSTD::__to_raw_pointer(__p), __s, __sz);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001537 traits_type::assign(__p[__sz], value_type());
1538}
1539
1540template <class _CharT, class _Traits, class _Allocator>
1541void
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001542basic_string<_CharT, _Traits, _Allocator>::__init(const value_type* __s, size_type __sz)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001543{
1544 if (__sz > max_size())
1545 this->__throw_length_error();
1546 pointer __p;
1547 if (__sz < __min_cap)
1548 {
1549 __set_short_size(__sz);
1550 __p = __get_short_pointer();
1551 }
1552 else
1553 {
1554 size_type __cap = __recommend(__sz);
Howard Hinnante32b5e22010-11-17 17:55:08 +00001555 __p = __alloc_traits::allocate(__alloc(), __cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001556 __set_long_pointer(__p);
1557 __set_long_cap(__cap+1);
1558 __set_long_size(__sz);
1559 }
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001560 traits_type::copy(_VSTD::__to_raw_pointer(__p), __s, __sz);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001561 traits_type::assign(__p[__sz], value_type());
1562}
1563
1564template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001565inline _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +00001566basic_string<_CharT, _Traits, _Allocator>::basic_string(const _CharT* __s)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001567{
Howard Hinnant499cea12013-08-23 17:37:05 +00001568 _LIBCPP_ASSERT(__s != nullptr, "basic_string(const char*) detected nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001569 __init(__s, traits_type::length(__s));
Howard Hinnant499cea12013-08-23 17:37:05 +00001570#if _LIBCPP_DEBUG_LEVEL >= 2
1571 __get_db()->__insert_c(this);
1572#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001573}
1574
1575template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001576inline _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +00001577basic_string<_CharT, _Traits, _Allocator>::basic_string(const _CharT* __s, const _Allocator& __a)
Eric Fiselierdb14bcc2017-04-12 23:45:53 +00001578 : __r_(__second_tag(), __a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001579{
Howard Hinnant499cea12013-08-23 17:37:05 +00001580 _LIBCPP_ASSERT(__s != nullptr, "basic_string(const char*, allocator) detected nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001581 __init(__s, traits_type::length(__s));
Howard Hinnant499cea12013-08-23 17:37:05 +00001582#if _LIBCPP_DEBUG_LEVEL >= 2
1583 __get_db()->__insert_c(this);
1584#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001585}
1586
1587template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001588inline _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +00001589basic_string<_CharT, _Traits, _Allocator>::basic_string(const _CharT* __s, size_type __n)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001590{
Howard Hinnant499cea12013-08-23 17:37:05 +00001591 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "basic_string(const char*, n) detected nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001592 __init(__s, __n);
Howard Hinnant499cea12013-08-23 17:37:05 +00001593#if _LIBCPP_DEBUG_LEVEL >= 2
1594 __get_db()->__insert_c(this);
1595#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001596}
1597
1598template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001599inline _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +00001600basic_string<_CharT, _Traits, _Allocator>::basic_string(const _CharT* __s, size_type __n, const _Allocator& __a)
Eric Fiselierdb14bcc2017-04-12 23:45:53 +00001601 : __r_(__second_tag(), __a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001602{
Howard Hinnant499cea12013-08-23 17:37:05 +00001603 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "basic_string(const char*, n, allocator) detected nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001604 __init(__s, __n);
Howard Hinnant499cea12013-08-23 17:37:05 +00001605#if _LIBCPP_DEBUG_LEVEL >= 2
1606 __get_db()->__insert_c(this);
1607#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001608}
1609
1610template <class _CharT, class _Traits, class _Allocator>
1611basic_string<_CharT, _Traits, _Allocator>::basic_string(const basic_string& __str)
Eric Fiselierdb14bcc2017-04-12 23:45:53 +00001612 : __r_(__second_tag(), __alloc_traits::select_on_container_copy_construction(__str.__alloc()))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001613{
1614 if (!__str.__is_long())
1615 __r_.first().__r = __str.__r_.first().__r;
1616 else
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001617 __init(_VSTD::__to_raw_pointer(__str.__get_long_pointer()), __str.__get_long_size());
Howard Hinnant499cea12013-08-23 17:37:05 +00001618#if _LIBCPP_DEBUG_LEVEL >= 2
1619 __get_db()->__insert_c(this);
1620#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001621}
1622
1623template <class _CharT, class _Traits, class _Allocator>
Eric Fiselier0eaf2e82017-02-17 01:17:10 +00001624basic_string<_CharT, _Traits, _Allocator>::basic_string(
1625 const basic_string& __str, const allocator_type& __a)
Eric Fiselierdb14bcc2017-04-12 23:45:53 +00001626 : __r_(__second_tag(), __a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001627{
1628 if (!__str.__is_long())
1629 __r_.first().__r = __str.__r_.first().__r;
1630 else
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001631 __init(_VSTD::__to_raw_pointer(__str.__get_long_pointer()), __str.__get_long_size());
Howard Hinnant499cea12013-08-23 17:37:05 +00001632#if _LIBCPP_DEBUG_LEVEL >= 2
1633 __get_db()->__insert_c(this);
1634#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001635}
1636
Eric Fiselier3e928972017-04-19 00:28:44 +00001637#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001638
1639template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001640inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00001641basic_string<_CharT, _Traits, _Allocator>::basic_string(basic_string&& __str)
Marshall Clow7b193f72015-06-03 19:56:43 +00001642#if _LIBCPP_STD_VER <= 14
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00001643 _NOEXCEPT_(is_nothrow_move_constructible<allocator_type>::value)
Marshall Clow7b193f72015-06-03 19:56:43 +00001644#else
1645 _NOEXCEPT
1646#endif
Howard Hinnant0949eed2011-06-30 21:18:19 +00001647 : __r_(_VSTD::move(__str.__r_))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001648{
1649 __str.__zero();
Howard Hinnant499cea12013-08-23 17:37:05 +00001650#if _LIBCPP_DEBUG_LEVEL >= 2
1651 __get_db()->__insert_c(this);
1652 if (__is_long())
1653 __get_db()->swap(this, &__str);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001654#endif
1655}
1656
1657template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001658inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001659basic_string<_CharT, _Traits, _Allocator>::basic_string(basic_string&& __str, const allocator_type& __a)
Eric Fiselierdb14bcc2017-04-12 23:45:53 +00001660 : __r_(__second_tag(), __a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001661{
Marshall Clowd5549cc2014-07-17 15:32:20 +00001662 if (__str.__is_long() && __a != __str.__alloc()) // copy, not move
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001663 __init(_VSTD::__to_raw_pointer(__str.__get_long_pointer()), __str.__get_long_size());
Marshall Clowd5549cc2014-07-17 15:32:20 +00001664 else
1665 {
1666 __r_.first().__r = __str.__r_.first().__r;
1667 __str.__zero();
1668 }
Howard Hinnant499cea12013-08-23 17:37:05 +00001669#if _LIBCPP_DEBUG_LEVEL >= 2
1670 __get_db()->__insert_c(this);
1671 if (__is_long())
1672 __get_db()->swap(this, &__str);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001673#endif
1674}
1675
Eric Fiselier3e928972017-04-19 00:28:44 +00001676#endif // _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001677
1678template <class _CharT, class _Traits, class _Allocator>
1679void
1680basic_string<_CharT, _Traits, _Allocator>::__init(size_type __n, value_type __c)
1681{
1682 if (__n > max_size())
1683 this->__throw_length_error();
1684 pointer __p;
1685 if (__n < __min_cap)
1686 {
1687 __set_short_size(__n);
1688 __p = __get_short_pointer();
1689 }
1690 else
1691 {
1692 size_type __cap = __recommend(__n);
Howard Hinnante32b5e22010-11-17 17:55:08 +00001693 __p = __alloc_traits::allocate(__alloc(), __cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001694 __set_long_pointer(__p);
1695 __set_long_cap(__cap+1);
1696 __set_long_size(__n);
1697 }
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001698 traits_type::assign(_VSTD::__to_raw_pointer(__p), __n, __c);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001699 traits_type::assign(__p[__n], value_type());
1700}
1701
1702template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001703inline _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +00001704basic_string<_CharT, _Traits, _Allocator>::basic_string(size_type __n, _CharT __c)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001705{
1706 __init(__n, __c);
Howard Hinnant499cea12013-08-23 17:37:05 +00001707#if _LIBCPP_DEBUG_LEVEL >= 2
1708 __get_db()->__insert_c(this);
1709#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001710}
1711
1712template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001713inline _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +00001714basic_string<_CharT, _Traits, _Allocator>::basic_string(size_type __n, _CharT __c, const _Allocator& __a)
Eric Fiselierdb14bcc2017-04-12 23:45:53 +00001715 : __r_(__second_tag(), __a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001716{
1717 __init(__n, __c);
Howard Hinnant499cea12013-08-23 17:37:05 +00001718#if _LIBCPP_DEBUG_LEVEL >= 2
1719 __get_db()->__insert_c(this);
1720#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001721}
1722
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001723template <class _CharT, class _Traits, class _Allocator>
Eric Fiselier0eaf2e82017-02-17 01:17:10 +00001724basic_string<_CharT, _Traits, _Allocator>::basic_string(const basic_string& __str,
1725 size_type __pos, size_type __n,
1726 const _Allocator& __a)
Eric Fiselierdb14bcc2017-04-12 23:45:53 +00001727 : __r_(__second_tag(), __a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001728{
1729 size_type __str_sz = __str.size();
1730 if (__pos > __str_sz)
1731 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00001732 __init(__str.data() + __pos, _VSTD::min(__n, __str_sz - __pos));
Howard Hinnant499cea12013-08-23 17:37:05 +00001733#if _LIBCPP_DEBUG_LEVEL >= 2
1734 __get_db()->__insert_c(this);
1735#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001736}
1737
1738template <class _CharT, class _Traits, class _Allocator>
Marshall Clowf4f7d8f2016-04-07 18:13:41 +00001739inline _LIBCPP_INLINE_VISIBILITY
1740basic_string<_CharT, _Traits, _Allocator>::basic_string(const basic_string& __str, size_type __pos,
Eric Fiselier0eaf2e82017-02-17 01:17:10 +00001741 const _Allocator& __a)
Eric Fiselierdb14bcc2017-04-12 23:45:53 +00001742 : __r_(__second_tag(), __a)
Marshall Clowf4f7d8f2016-04-07 18:13:41 +00001743{
1744 size_type __str_sz = __str.size();
1745 if (__pos > __str_sz)
1746 this->__throw_out_of_range();
1747 __init(__str.data() + __pos, __str_sz - __pos);
1748#if _LIBCPP_DEBUG_LEVEL >= 2
1749 __get_db()->__insert_c(this);
1750#endif
1751}
1752
1753template <class _CharT, class _Traits, class _Allocator>
Marshall Clowdb7fa112016-11-14 18:22:19 +00001754template <class _Tp>
1755basic_string<_CharT, _Traits, _Allocator>::basic_string(
1756 const _Tp& __t, size_type __pos, size_type __n, const allocator_type& __a,
1757 typename enable_if<__can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value, void>::type *)
Eric Fiselierdb14bcc2017-04-12 23:45:53 +00001758 : __r_(__second_tag(), __a)
Marshall Clowdb7fa112016-11-14 18:22:19 +00001759{
1760 __self_view __sv = __self_view(__t).substr(__pos, __n);
1761 __init(__sv.data(), __sv.size());
1762#if _LIBCPP_DEBUG_LEVEL >= 2
1763 __get_db()->__insert_c(this);
Eric Fiselier0eaf2e82017-02-17 01:17:10 +00001764#endif
Marshall Clowdb7fa112016-11-14 18:22:19 +00001765}
1766
1767template <class _CharT, class _Traits, class _Allocator>
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001768inline _LIBCPP_INLINE_VISIBILITY
1769basic_string<_CharT, _Traits, _Allocator>::basic_string(__self_view __sv)
1770{
1771 __init(__sv.data(), __sv.size());
1772#if _LIBCPP_DEBUG_LEVEL >= 2
1773 __get_db()->__insert_c(this);
1774#endif
1775}
1776
1777template <class _CharT, class _Traits, class _Allocator>
1778inline _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +00001779basic_string<_CharT, _Traits, _Allocator>::basic_string(__self_view __sv, const _Allocator& __a)
Eric Fiselierdb14bcc2017-04-12 23:45:53 +00001780 : __r_(__second_tag(), __a)
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001781{
1782 __init(__sv.data(), __sv.size());
1783#if _LIBCPP_DEBUG_LEVEL >= 2
1784 __get_db()->__insert_c(this);
1785#endif
1786}
1787
1788template <class _CharT, class _Traits, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001789template <class _InputIterator>
1790typename enable_if
1791<
Marshall Clowdf9db312016-01-13 21:54:34 +00001792 __is_exactly_input_iterator<_InputIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001793 void
1794>::type
1795basic_string<_CharT, _Traits, _Allocator>::__init(_InputIterator __first, _InputIterator __last)
1796{
1797 __zero();
1798#ifndef _LIBCPP_NO_EXCEPTIONS
1799 try
1800 {
Howard Hinnant324bb032010-08-22 00:02:43 +00001801#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001802 for (; __first != __last; ++__first)
1803 push_back(*__first);
1804#ifndef _LIBCPP_NO_EXCEPTIONS
1805 }
1806 catch (...)
1807 {
1808 if (__is_long())
Howard Hinnante32b5e22010-11-17 17:55:08 +00001809 __alloc_traits::deallocate(__alloc(), __get_long_pointer(), __get_long_cap());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001810 throw;
1811 }
Howard Hinnant324bb032010-08-22 00:02:43 +00001812#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001813}
1814
1815template <class _CharT, class _Traits, class _Allocator>
1816template <class _ForwardIterator>
1817typename enable_if
1818<
1819 __is_forward_iterator<_ForwardIterator>::value,
1820 void
1821>::type
1822basic_string<_CharT, _Traits, _Allocator>::__init(_ForwardIterator __first, _ForwardIterator __last)
1823{
Howard Hinnant0949eed2011-06-30 21:18:19 +00001824 size_type __sz = static_cast<size_type>(_VSTD::distance(__first, __last));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001825 if (__sz > max_size())
1826 this->__throw_length_error();
1827 pointer __p;
1828 if (__sz < __min_cap)
1829 {
1830 __set_short_size(__sz);
1831 __p = __get_short_pointer();
1832 }
1833 else
1834 {
1835 size_type __cap = __recommend(__sz);
Howard Hinnante32b5e22010-11-17 17:55:08 +00001836 __p = __alloc_traits::allocate(__alloc(), __cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001837 __set_long_pointer(__p);
1838 __set_long_cap(__cap+1);
1839 __set_long_size(__sz);
1840 }
Eric Fiselierb9919752014-10-27 19:28:20 +00001841 for (; __first != __last; ++__first, (void) ++__p)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001842 traits_type::assign(*__p, *__first);
1843 traits_type::assign(*__p, value_type());
1844}
1845
1846template <class _CharT, class _Traits, class _Allocator>
1847template<class _InputIterator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001848inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001849basic_string<_CharT, _Traits, _Allocator>::basic_string(_InputIterator __first, _InputIterator __last)
1850{
1851 __init(__first, __last);
Howard Hinnant499cea12013-08-23 17:37:05 +00001852#if _LIBCPP_DEBUG_LEVEL >= 2
1853 __get_db()->__insert_c(this);
1854#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001855}
1856
1857template <class _CharT, class _Traits, class _Allocator>
1858template<class _InputIterator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001859inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001860basic_string<_CharT, _Traits, _Allocator>::basic_string(_InputIterator __first, _InputIterator __last,
1861 const allocator_type& __a)
Eric Fiselierdb14bcc2017-04-12 23:45:53 +00001862 : __r_(__second_tag(), __a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001863{
1864 __init(__first, __last);
Howard Hinnant499cea12013-08-23 17:37:05 +00001865#if _LIBCPP_DEBUG_LEVEL >= 2
1866 __get_db()->__insert_c(this);
1867#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001868}
1869
Eric Fiselier3e928972017-04-19 00:28:44 +00001870#ifndef _LIBCPP_CXX03_LANG
Howard Hinnante3e32912011-08-12 21:56:02 +00001871
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001872template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001873inline _LIBCPP_INLINE_VISIBILITY
Eric Fiselier0eaf2e82017-02-17 01:17:10 +00001874basic_string<_CharT, _Traits, _Allocator>::basic_string(
1875 initializer_list<_CharT> __il)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001876{
1877 __init(__il.begin(), __il.end());
Howard Hinnant499cea12013-08-23 17:37:05 +00001878#if _LIBCPP_DEBUG_LEVEL >= 2
1879 __get_db()->__insert_c(this);
1880#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001881}
1882
1883template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001884inline _LIBCPP_INLINE_VISIBILITY
Eric Fiselierdb14bcc2017-04-12 23:45:53 +00001885
Eric Fiselier0eaf2e82017-02-17 01:17:10 +00001886basic_string<_CharT, _Traits, _Allocator>::basic_string(
1887 initializer_list<_CharT> __il, const _Allocator& __a)
Eric Fiselierdb14bcc2017-04-12 23:45:53 +00001888 : __r_(__second_tag(), __a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001889{
1890 __init(__il.begin(), __il.end());
Howard Hinnant499cea12013-08-23 17:37:05 +00001891#if _LIBCPP_DEBUG_LEVEL >= 2
1892 __get_db()->__insert_c(this);
1893#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001894}
1895
Eric Fiselier3e928972017-04-19 00:28:44 +00001896#endif // _LIBCPP_CXX03_LANG
Howard Hinnante3e32912011-08-12 21:56:02 +00001897
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001898template <class _CharT, class _Traits, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001899basic_string<_CharT, _Traits, _Allocator>::~basic_string()
1900{
Howard Hinnant499cea12013-08-23 17:37:05 +00001901#if _LIBCPP_DEBUG_LEVEL >= 2
1902 __get_db()->__erase_c(this);
1903#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001904 if (__is_long())
Howard Hinnante32b5e22010-11-17 17:55:08 +00001905 __alloc_traits::deallocate(__alloc(), __get_long_pointer(), __get_long_cap());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001906}
1907
1908template <class _CharT, class _Traits, class _Allocator>
1909void
1910basic_string<_CharT, _Traits, _Allocator>::__grow_by_and_replace
1911 (size_type __old_cap, size_type __delta_cap, size_type __old_sz,
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001912 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 +00001913{
1914 size_type __ms = max_size();
1915 if (__delta_cap > __ms - __old_cap - 1)
1916 this->__throw_length_error();
1917 pointer __old_p = __get_pointer();
1918 size_type __cap = __old_cap < __ms / 2 - __alignment ?
Howard Hinnant0949eed2011-06-30 21:18:19 +00001919 __recommend(_VSTD::max(__old_cap + __delta_cap, 2 * __old_cap)) :
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001920 __ms - 1;
Howard Hinnante32b5e22010-11-17 17:55:08 +00001921 pointer __p = __alloc_traits::allocate(__alloc(), __cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001922 __invalidate_all_iterators();
1923 if (__n_copy != 0)
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001924 traits_type::copy(_VSTD::__to_raw_pointer(__p),
1925 _VSTD::__to_raw_pointer(__old_p), __n_copy);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001926 if (__n_add != 0)
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001927 traits_type::copy(_VSTD::__to_raw_pointer(__p) + __n_copy, __p_new_stuff, __n_add);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001928 size_type __sec_cp_sz = __old_sz - __n_del - __n_copy;
1929 if (__sec_cp_sz != 0)
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001930 traits_type::copy(_VSTD::__to_raw_pointer(__p) + __n_copy + __n_add,
1931 _VSTD::__to_raw_pointer(__old_p) + __n_copy + __n_del, __sec_cp_sz);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001932 if (__old_cap+1 != __min_cap)
Howard Hinnante32b5e22010-11-17 17:55:08 +00001933 __alloc_traits::deallocate(__alloc(), __old_p, __old_cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001934 __set_long_pointer(__p);
1935 __set_long_cap(__cap+1);
1936 __old_sz = __n_copy + __n_add + __sec_cp_sz;
1937 __set_long_size(__old_sz);
1938 traits_type::assign(__p[__old_sz], value_type());
1939}
1940
1941template <class _CharT, class _Traits, class _Allocator>
1942void
1943basic_string<_CharT, _Traits, _Allocator>::__grow_by(size_type __old_cap, size_type __delta_cap, size_type __old_sz,
1944 size_type __n_copy, size_type __n_del, size_type __n_add)
1945{
1946 size_type __ms = max_size();
Marshall Clowecc8d7b2013-11-06 14:24:38 +00001947 if (__delta_cap > __ms - __old_cap)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001948 this->__throw_length_error();
1949 pointer __old_p = __get_pointer();
1950 size_type __cap = __old_cap < __ms / 2 - __alignment ?
Howard Hinnant0949eed2011-06-30 21:18:19 +00001951 __recommend(_VSTD::max(__old_cap + __delta_cap, 2 * __old_cap)) :
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001952 __ms - 1;
Howard Hinnante32b5e22010-11-17 17:55:08 +00001953 pointer __p = __alloc_traits::allocate(__alloc(), __cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001954 __invalidate_all_iterators();
1955 if (__n_copy != 0)
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001956 traits_type::copy(_VSTD::__to_raw_pointer(__p),
1957 _VSTD::__to_raw_pointer(__old_p), __n_copy);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001958 size_type __sec_cp_sz = __old_sz - __n_del - __n_copy;
1959 if (__sec_cp_sz != 0)
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001960 traits_type::copy(_VSTD::__to_raw_pointer(__p) + __n_copy + __n_add,
1961 _VSTD::__to_raw_pointer(__old_p) + __n_copy + __n_del,
1962 __sec_cp_sz);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001963 if (__old_cap+1 != __min_cap)
Howard Hinnante32b5e22010-11-17 17:55:08 +00001964 __alloc_traits::deallocate(__alloc(), __old_p, __old_cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001965 __set_long_pointer(__p);
1966 __set_long_cap(__cap+1);
1967}
1968
1969// assign
1970
1971template <class _CharT, class _Traits, class _Allocator>
1972basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001973basic_string<_CharT, _Traits, _Allocator>::assign(const value_type* __s, size_type __n)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001974{
Alp Tokerec34c482014-05-15 11:27:39 +00001975 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::assign received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001976 size_type __cap = capacity();
1977 if (__cap >= __n)
1978 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001979 value_type* __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001980 traits_type::move(__p, __s, __n);
1981 traits_type::assign(__p[__n], value_type());
1982 __set_size(__n);
1983 __invalidate_iterators_past(__n);
1984 }
1985 else
1986 {
1987 size_type __sz = size();
1988 __grow_by_and_replace(__cap, __n - __cap, __sz, 0, __sz, __n, __s);
1989 }
1990 return *this;
1991}
1992
1993template <class _CharT, class _Traits, class _Allocator>
1994basic_string<_CharT, _Traits, _Allocator>&
1995basic_string<_CharT, _Traits, _Allocator>::assign(size_type __n, value_type __c)
1996{
1997 size_type __cap = capacity();
1998 if (__cap < __n)
1999 {
2000 size_type __sz = size();
2001 __grow_by(__cap, __n - __cap, __sz, 0, __sz);
2002 }
2003 else
2004 __invalidate_iterators_past(__n);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002005 value_type* __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002006 traits_type::assign(__p, __n, __c);
2007 traits_type::assign(__p[__n], value_type());
2008 __set_size(__n);
2009 return *this;
2010}
2011
2012template <class _CharT, class _Traits, class _Allocator>
2013basic_string<_CharT, _Traits, _Allocator>&
2014basic_string<_CharT, _Traits, _Allocator>::operator=(value_type __c)
2015{
2016 pointer __p;
2017 if (__is_long())
2018 {
2019 __p = __get_long_pointer();
2020 __set_long_size(1);
2021 }
2022 else
2023 {
2024 __p = __get_short_pointer();
2025 __set_short_size(1);
2026 }
2027 traits_type::assign(*__p, __c);
2028 traits_type::assign(*++__p, value_type());
2029 __invalidate_iterators_past(1);
2030 return *this;
2031}
2032
2033template <class _CharT, class _Traits, class _Allocator>
Howard Hinnante32b5e22010-11-17 17:55:08 +00002034basic_string<_CharT, _Traits, _Allocator>&
2035basic_string<_CharT, _Traits, _Allocator>::operator=(const basic_string& __str)
2036{
2037 if (this != &__str)
2038 {
2039 __copy_assign_alloc(__str);
Marshall Clowf40ec902016-03-09 18:08:29 +00002040 assign(__str.data(), __str.size());
Howard Hinnante32b5e22010-11-17 17:55:08 +00002041 }
2042 return *this;
2043}
2044
Eric Fiselier3e928972017-04-19 00:28:44 +00002045#ifndef _LIBCPP_CXX03_LANG
Howard Hinnante32b5e22010-11-17 17:55:08 +00002046
2047template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002048inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnante32b5e22010-11-17 17:55:08 +00002049void
2050basic_string<_CharT, _Traits, _Allocator>::__move_assign(basic_string& __str, false_type)
Marshall Clowaf961ed2015-08-18 18:57:00 +00002051 _NOEXCEPT_(__alloc_traits::is_always_equal::value)
Howard Hinnante32b5e22010-11-17 17:55:08 +00002052{
2053 if (__alloc() != __str.__alloc())
2054 assign(__str);
2055 else
2056 __move_assign(__str, true_type());
2057}
2058
2059template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002060inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnante32b5e22010-11-17 17:55:08 +00002061void
2062basic_string<_CharT, _Traits, _Allocator>::__move_assign(basic_string& __str, true_type)
Marshall Clowaf961ed2015-08-18 18:57:00 +00002063#if _LIBCPP_STD_VER > 14
2064 _NOEXCEPT
2065#else
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00002066 _NOEXCEPT_(is_nothrow_move_assignable<allocator_type>::value)
Marshall Clowaf961ed2015-08-18 18:57:00 +00002067#endif
Howard Hinnante32b5e22010-11-17 17:55:08 +00002068{
2069 clear();
2070 shrink_to_fit();
Howard Hinnant3fdbbd22011-08-17 20:36:18 +00002071 __r_.first() = __str.__r_.first();
2072 __move_assign_alloc(__str);
Howard Hinnante32b5e22010-11-17 17:55:08 +00002073 __str.__zero();
2074}
2075
2076template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002077inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnante32b5e22010-11-17 17:55:08 +00002078basic_string<_CharT, _Traits, _Allocator>&
2079basic_string<_CharT, _Traits, _Allocator>::operator=(basic_string&& __str)
Marshall Clowaf961ed2015-08-18 18:57:00 +00002080 _NOEXCEPT_((__noexcept_move_assign_container<_Allocator, __alloc_traits>::value))
Howard Hinnante32b5e22010-11-17 17:55:08 +00002081{
2082 __move_assign(__str, integral_constant<bool,
2083 __alloc_traits::propagate_on_container_move_assignment::value>());
2084 return *this;
2085}
2086
2087#endif
2088
2089template <class _CharT, class _Traits, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002090template<class _InputIterator>
2091typename enable_if
2092<
Marshall Clowdf9db312016-01-13 21:54:34 +00002093 __is_exactly_input_iterator <_InputIterator>::value
2094 || !__libcpp_string_gets_noexcept_iterator<_InputIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002095 basic_string<_CharT, _Traits, _Allocator>&
2096>::type
2097basic_string<_CharT, _Traits, _Allocator>::assign(_InputIterator __first, _InputIterator __last)
2098{
Marshall Clowd979eed2016-09-05 01:54:30 +00002099 const basic_string __temp(__first, __last, __alloc());
Marshall Clowdf9db312016-01-13 21:54:34 +00002100 assign(__temp.data(), __temp.size());
Argyrios Kyrtzidis1dc6f7a2012-10-13 02:03:45 +00002101 return *this;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002102}
2103
2104template <class _CharT, class _Traits, class _Allocator>
2105template<class _ForwardIterator>
2106typename enable_if
2107<
Marshall Clowdf9db312016-01-13 21:54:34 +00002108 __is_forward_iterator<_ForwardIterator>::value
2109 && __libcpp_string_gets_noexcept_iterator<_ForwardIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002110 basic_string<_CharT, _Traits, _Allocator>&
2111>::type
2112basic_string<_CharT, _Traits, _Allocator>::assign(_ForwardIterator __first, _ForwardIterator __last)
2113{
Howard Hinnant0949eed2011-06-30 21:18:19 +00002114 size_type __n = static_cast<size_type>(_VSTD::distance(__first, __last));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002115 size_type __cap = capacity();
2116 if (__cap < __n)
2117 {
2118 size_type __sz = size();
2119 __grow_by(__cap, __n - __cap, __sz, 0, __sz);
2120 }
2121 else
2122 __invalidate_iterators_past(__n);
2123 pointer __p = __get_pointer();
2124 for (; __first != __last; ++__first, ++__p)
2125 traits_type::assign(*__p, *__first);
2126 traits_type::assign(*__p, value_type());
2127 __set_size(__n);
2128 return *this;
2129}
2130
2131template <class _CharT, class _Traits, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002132basic_string<_CharT, _Traits, _Allocator>&
2133basic_string<_CharT, _Traits, _Allocator>::assign(const basic_string& __str, size_type __pos, size_type __n)
2134{
2135 size_type __sz = __str.size();
2136 if (__pos > __sz)
2137 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002138 return assign(__str.data() + __pos, _VSTD::min(__n, __sz - __pos));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002139}
2140
2141template <class _CharT, class _Traits, class _Allocator>
Marshall Clow6ac8de02016-09-24 22:45:42 +00002142template <class _Tp>
2143typename enable_if
2144<
2145 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
2146 basic_string<_CharT, _Traits, _Allocator>&
2147>::type
2148basic_string<_CharT, _Traits, _Allocator>::assign(const _Tp & __t, size_type __pos, size_type __n)
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002149{
Marshall Clow6ac8de02016-09-24 22:45:42 +00002150 __self_view __sv = __t;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002151 size_type __sz = __sv.size();
2152 if (__pos > __sz)
2153 this->__throw_out_of_range();
2154 return assign(__sv.data() + __pos, _VSTD::min(__n, __sz - __pos));
2155}
2156
2157
2158template <class _CharT, class _Traits, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002159basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002160basic_string<_CharT, _Traits, _Allocator>::assign(const value_type* __s)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002161{
Alp Tokerec34c482014-05-15 11:27:39 +00002162 _LIBCPP_ASSERT(__s != nullptr, "string::assign received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002163 return assign(__s, traits_type::length(__s));
2164}
2165
2166// append
2167
2168template <class _CharT, class _Traits, class _Allocator>
2169basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002170basic_string<_CharT, _Traits, _Allocator>::append(const value_type* __s, size_type __n)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002171{
Alp Tokerec34c482014-05-15 11:27:39 +00002172 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::append received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002173 size_type __cap = capacity();
2174 size_type __sz = size();
2175 if (__cap - __sz >= __n)
2176 {
2177 if (__n)
2178 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002179 value_type* __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002180 traits_type::copy(__p + __sz, __s, __n);
2181 __sz += __n;
2182 __set_size(__sz);
2183 traits_type::assign(__p[__sz], value_type());
2184 }
2185 }
2186 else
2187 __grow_by_and_replace(__cap, __sz + __n - __cap, __sz, __sz, 0, __n, __s);
2188 return *this;
2189}
2190
2191template <class _CharT, class _Traits, class _Allocator>
2192basic_string<_CharT, _Traits, _Allocator>&
2193basic_string<_CharT, _Traits, _Allocator>::append(size_type __n, value_type __c)
2194{
2195 if (__n)
2196 {
2197 size_type __cap = capacity();
2198 size_type __sz = size();
2199 if (__cap - __sz < __n)
2200 __grow_by(__cap, __sz + __n - __cap, __sz, __sz, 0);
2201 pointer __p = __get_pointer();
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002202 traits_type::assign(_VSTD::__to_raw_pointer(__p) + __sz, __n, __c);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002203 __sz += __n;
2204 __set_size(__sz);
2205 traits_type::assign(__p[__sz], value_type());
2206 }
2207 return *this;
2208}
2209
2210template <class _CharT, class _Traits, class _Allocator>
2211void
2212basic_string<_CharT, _Traits, _Allocator>::push_back(value_type __c)
2213{
Howard Hinnant15467182013-04-30 21:44:48 +00002214 bool __is_short = !__is_long();
2215 size_type __cap;
2216 size_type __sz;
2217 if (__is_short)
2218 {
2219 __cap = __min_cap - 1;
2220 __sz = __get_short_size();
2221 }
2222 else
2223 {
2224 __cap = __get_long_cap() - 1;
2225 __sz = __get_long_size();
2226 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002227 if (__sz == __cap)
Howard Hinnant15467182013-04-30 21:44:48 +00002228 {
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002229 __grow_by(__cap, 1, __sz, __sz, 0);
Howard Hinnant15467182013-04-30 21:44:48 +00002230 __is_short = !__is_long();
2231 }
2232 pointer __p;
2233 if (__is_short)
2234 {
2235 __p = __get_short_pointer() + __sz;
2236 __set_short_size(__sz+1);
2237 }
2238 else
2239 {
2240 __p = __get_long_pointer() + __sz;
2241 __set_long_size(__sz+1);
2242 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002243 traits_type::assign(*__p, __c);
2244 traits_type::assign(*++__p, value_type());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002245}
2246
Marshall Clowac655ef2016-09-07 03:32:06 +00002247template <class _Tp>
Marshall Clowd979eed2016-09-05 01:54:30 +00002248bool __ptr_in_range (const _Tp* __p, const _Tp* __first, const _Tp* __last)
2249{
2250 return __first <= __p && __p < __last;
2251}
2252
Marshall Clowac655ef2016-09-07 03:32:06 +00002253template <class _Tp1, class _Tp2>
Eric Fiselier0e5ebbc2016-12-23 23:37:52 +00002254bool __ptr_in_range (const _Tp1*, const _Tp2*, const _Tp2*)
Marshall Clowac655ef2016-09-07 03:32:06 +00002255{
2256 return false;
2257}
2258
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002259template <class _CharT, class _Traits, class _Allocator>
2260template<class _ForwardIterator>
Eric Fiselier026d38e2016-10-31 02:46:25 +00002261basic_string<_CharT, _Traits, _Allocator>&
2262basic_string<_CharT, _Traits, _Allocator>::__append_forward_unsafe(
2263 _ForwardIterator __first, _ForwardIterator __last)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002264{
Eric Fiselier026d38e2016-10-31 02:46:25 +00002265 static_assert(__is_forward_iterator<_ForwardIterator>::value,
2266 "function requires a ForwardIterator");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002267 size_type __sz = size();
2268 size_type __cap = capacity();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002269 size_type __n = static_cast<size_type>(_VSTD::distance(__first, __last));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002270 if (__n)
2271 {
Eric Fiselier622c7d52017-04-15 06:49:02 +00002272 typedef typename iterator_traits<_ForwardIterator>::reference _CharRef;
2273 _CharRef __tmp_ref = *__first;
2274 if (__ptr_in_range(_VSTD::addressof(__tmp_ref), data(), data() + size()))
Marshall Clowd979eed2016-09-05 01:54:30 +00002275 {
2276 const basic_string __temp (__first, __last, __alloc());
2277 append(__temp.data(), __temp.size());
2278 }
2279 else
2280 {
2281 if (__cap - __sz < __n)
2282 __grow_by(__cap, __sz + __n - __cap, __sz, __sz, 0);
2283 pointer __p = __get_pointer() + __sz;
2284 for (; __first != __last; ++__p, ++__first)
2285 traits_type::assign(*__p, *__first);
2286 traits_type::assign(*__p, value_type());
2287 __set_size(__sz + __n);
2288 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002289 }
2290 return *this;
2291}
2292
2293template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002294inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002295basic_string<_CharT, _Traits, _Allocator>&
2296basic_string<_CharT, _Traits, _Allocator>::append(const basic_string& __str)
2297{
2298 return append(__str.data(), __str.size());
2299}
2300
2301template <class _CharT, class _Traits, class _Allocator>
2302basic_string<_CharT, _Traits, _Allocator>&
2303basic_string<_CharT, _Traits, _Allocator>::append(const basic_string& __str, size_type __pos, size_type __n)
2304{
2305 size_type __sz = __str.size();
2306 if (__pos > __sz)
2307 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002308 return append(__str.data() + __pos, _VSTD::min(__n, __sz - __pos));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002309}
2310
2311template <class _CharT, class _Traits, class _Allocator>
Marshall Clow42a87db2016-10-03 23:40:48 +00002312template <class _Tp>
Marshall Clow6ac8de02016-09-24 22:45:42 +00002313 typename enable_if
2314 <
2315 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
2316 basic_string<_CharT, _Traits, _Allocator>&
2317 >::type
2318basic_string<_CharT, _Traits, _Allocator>::append(const _Tp & __t, size_type __pos, size_type __n)
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002319{
Marshall Clow6ac8de02016-09-24 22:45:42 +00002320 __self_view __sv = __t;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002321 size_type __sz = __sv.size();
2322 if (__pos > __sz)
2323 this->__throw_out_of_range();
2324 return append(__sv.data() + __pos, _VSTD::min(__n, __sz - __pos));
2325}
2326
2327template <class _CharT, class _Traits, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002328basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002329basic_string<_CharT, _Traits, _Allocator>::append(const value_type* __s)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002330{
Alp Tokerec34c482014-05-15 11:27:39 +00002331 _LIBCPP_ASSERT(__s != nullptr, "string::append received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002332 return append(__s, traits_type::length(__s));
2333}
2334
2335// insert
2336
2337template <class _CharT, class _Traits, class _Allocator>
2338basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002339basic_string<_CharT, _Traits, _Allocator>::insert(size_type __pos, const value_type* __s, size_type __n)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002340{
Alp Tokerec34c482014-05-15 11:27:39 +00002341 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::insert received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002342 size_type __sz = size();
2343 if (__pos > __sz)
2344 this->__throw_out_of_range();
2345 size_type __cap = capacity();
2346 if (__cap - __sz >= __n)
2347 {
2348 if (__n)
2349 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002350 value_type* __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002351 size_type __n_move = __sz - __pos;
2352 if (__n_move != 0)
2353 {
2354 if (__p + __pos <= __s && __s < __p + __sz)
2355 __s += __n;
2356 traits_type::move(__p + __pos + __n, __p + __pos, __n_move);
2357 }
2358 traits_type::move(__p + __pos, __s, __n);
2359 __sz += __n;
2360 __set_size(__sz);
2361 traits_type::assign(__p[__sz], value_type());
2362 }
2363 }
2364 else
2365 __grow_by_and_replace(__cap, __sz + __n - __cap, __sz, __pos, 0, __n, __s);
2366 return *this;
2367}
2368
2369template <class _CharT, class _Traits, class _Allocator>
2370basic_string<_CharT, _Traits, _Allocator>&
2371basic_string<_CharT, _Traits, _Allocator>::insert(size_type __pos, size_type __n, value_type __c)
2372{
2373 size_type __sz = size();
2374 if (__pos > __sz)
2375 this->__throw_out_of_range();
2376 if (__n)
2377 {
2378 size_type __cap = capacity();
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002379 value_type* __p;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002380 if (__cap - __sz >= __n)
2381 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002382 __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002383 size_type __n_move = __sz - __pos;
2384 if (__n_move != 0)
2385 traits_type::move(__p + __pos + __n, __p + __pos, __n_move);
2386 }
2387 else
2388 {
2389 __grow_by(__cap, __sz + __n - __cap, __sz, __pos, 0, __n);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002390 __p = _VSTD::__to_raw_pointer(__get_long_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002391 }
2392 traits_type::assign(__p + __pos, __n, __c);
2393 __sz += __n;
2394 __set_size(__sz);
2395 traits_type::assign(__p[__sz], value_type());
2396 }
2397 return *this;
2398}
2399
2400template <class _CharT, class _Traits, class _Allocator>
2401template<class _InputIterator>
2402typename enable_if
2403<
Marshall Clowdf9db312016-01-13 21:54:34 +00002404 __is_exactly_input_iterator<_InputIterator>::value
2405 || !__libcpp_string_gets_noexcept_iterator<_InputIterator>::value,
2406 typename basic_string<_CharT, _Traits, _Allocator>::iterator
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002407>::type
2408basic_string<_CharT, _Traits, _Allocator>::insert(const_iterator __pos, _InputIterator __first, _InputIterator __last)
2409{
Howard Hinnant499cea12013-08-23 17:37:05 +00002410#if _LIBCPP_DEBUG_LEVEL >= 2
2411 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__pos) == this,
2412 "string::insert(iterator, range) called with an iterator not"
2413 " referring to this string");
2414#endif
Marshall Clowd979eed2016-09-05 01:54:30 +00002415 const basic_string __temp(__first, __last, __alloc());
Marshall Clowdf9db312016-01-13 21:54:34 +00002416 return insert(__pos, __temp.data(), __temp.data() + __temp.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002417}
2418
2419template <class _CharT, class _Traits, class _Allocator>
2420template<class _ForwardIterator>
2421typename enable_if
2422<
Marshall Clowdf9db312016-01-13 21:54:34 +00002423 __is_forward_iterator<_ForwardIterator>::value
2424 && __libcpp_string_gets_noexcept_iterator<_ForwardIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002425 typename basic_string<_CharT, _Traits, _Allocator>::iterator
2426>::type
2427basic_string<_CharT, _Traits, _Allocator>::insert(const_iterator __pos, _ForwardIterator __first, _ForwardIterator __last)
2428{
Howard Hinnant499cea12013-08-23 17:37:05 +00002429#if _LIBCPP_DEBUG_LEVEL >= 2
2430 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__pos) == this,
2431 "string::insert(iterator, range) called with an iterator not"
2432 " referring to this string");
2433#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002434 size_type __ip = static_cast<size_type>(__pos - begin());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002435 size_type __n = static_cast<size_type>(_VSTD::distance(__first, __last));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002436 if (__n)
2437 {
Eric Fiselier622c7d52017-04-15 06:49:02 +00002438 typedef typename iterator_traits<_ForwardIterator>::reference _CharRef;
2439 _CharRef __tmp_char = *__first;
2440 if (__ptr_in_range(_VSTD::addressof(__tmp_char), data(), data() + size()))
Marshall Clowd979eed2016-09-05 01:54:30 +00002441 {
2442 const basic_string __temp(__first, __last, __alloc());
2443 return insert(__pos, __temp.data(), __temp.data() + __temp.size());
2444 }
2445
2446 size_type __sz = size();
2447 size_type __cap = capacity();
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002448 value_type* __p;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002449 if (__cap - __sz >= __n)
2450 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002451 __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002452 size_type __n_move = __sz - __ip;
2453 if (__n_move != 0)
2454 traits_type::move(__p + __ip + __n, __p + __ip, __n_move);
2455 }
2456 else
2457 {
2458 __grow_by(__cap, __sz + __n - __cap, __sz, __ip, 0, __n);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002459 __p = _VSTD::__to_raw_pointer(__get_long_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002460 }
2461 __sz += __n;
2462 __set_size(__sz);
2463 traits_type::assign(__p[__sz], value_type());
2464 for (__p += __ip; __first != __last; ++__p, ++__first)
2465 traits_type::assign(*__p, *__first);
2466 }
2467 return begin() + __ip;
2468}
2469
2470template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002471inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002472basic_string<_CharT, _Traits, _Allocator>&
2473basic_string<_CharT, _Traits, _Allocator>::insert(size_type __pos1, const basic_string& __str)
2474{
2475 return insert(__pos1, __str.data(), __str.size());
2476}
2477
2478template <class _CharT, class _Traits, class _Allocator>
2479basic_string<_CharT, _Traits, _Allocator>&
2480basic_string<_CharT, _Traits, _Allocator>::insert(size_type __pos1, const basic_string& __str,
2481 size_type __pos2, size_type __n)
2482{
2483 size_type __str_sz = __str.size();
2484 if (__pos2 > __str_sz)
2485 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002486 return insert(__pos1, __str.data() + __pos2, _VSTD::min(__n, __str_sz - __pos2));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002487}
2488
2489template <class _CharT, class _Traits, class _Allocator>
Marshall Clow6ac8de02016-09-24 22:45:42 +00002490template <class _Tp>
2491typename enable_if
2492<
2493 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
2494 basic_string<_CharT, _Traits, _Allocator>&
2495>::type
2496basic_string<_CharT, _Traits, _Allocator>::insert(size_type __pos1, const _Tp& __t,
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002497 size_type __pos2, size_type __n)
2498{
Marshall Clow6ac8de02016-09-24 22:45:42 +00002499 __self_view __sv = __t;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002500 size_type __str_sz = __sv.size();
2501 if (__pos2 > __str_sz)
2502 this->__throw_out_of_range();
2503 return insert(__pos1, __sv.data() + __pos2, _VSTD::min(__n, __str_sz - __pos2));
2504}
2505
2506template <class _CharT, class _Traits, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002507basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002508basic_string<_CharT, _Traits, _Allocator>::insert(size_type __pos, const value_type* __s)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002509{
Alp Tokerec34c482014-05-15 11:27:39 +00002510 _LIBCPP_ASSERT(__s != nullptr, "string::insert received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002511 return insert(__pos, __s, traits_type::length(__s));
2512}
2513
2514template <class _CharT, class _Traits, class _Allocator>
2515typename basic_string<_CharT, _Traits, _Allocator>::iterator
2516basic_string<_CharT, _Traits, _Allocator>::insert(const_iterator __pos, value_type __c)
2517{
2518 size_type __ip = static_cast<size_type>(__pos - begin());
2519 size_type __sz = size();
2520 size_type __cap = capacity();
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002521 value_type* __p;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002522 if (__cap == __sz)
2523 {
2524 __grow_by(__cap, 1, __sz, __ip, 0, 1);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002525 __p = _VSTD::__to_raw_pointer(__get_long_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002526 }
2527 else
2528 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002529 __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002530 size_type __n_move = __sz - __ip;
2531 if (__n_move != 0)
2532 traits_type::move(__p + __ip + 1, __p + __ip, __n_move);
2533 }
2534 traits_type::assign(__p[__ip], __c);
2535 traits_type::assign(__p[++__sz], value_type());
2536 __set_size(__sz);
2537 return begin() + static_cast<difference_type>(__ip);
2538}
2539
2540template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002541inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002542typename basic_string<_CharT, _Traits, _Allocator>::iterator
2543basic_string<_CharT, _Traits, _Allocator>::insert(const_iterator __pos, size_type __n, value_type __c)
2544{
Howard Hinnant499cea12013-08-23 17:37:05 +00002545#if _LIBCPP_DEBUG_LEVEL >= 2
2546 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__pos) == this,
2547 "string::insert(iterator, n, value) called with an iterator not"
2548 " referring to this string");
2549#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002550 difference_type __p = __pos - begin();
2551 insert(static_cast<size_type>(__p), __n, __c);
2552 return begin() + __p;
2553}
2554
2555// replace
2556
2557template <class _CharT, class _Traits, class _Allocator>
2558basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002559basic_string<_CharT, _Traits, _Allocator>::replace(size_type __pos, size_type __n1, const value_type* __s, size_type __n2)
Eric Fiselier3b7c1342017-03-09 01:54:13 +00002560 _LIBCPP_DISABLE_UBSAN_UNSIGNED_INTEGER_CHECK
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002561{
Alp Tokerec34c482014-05-15 11:27:39 +00002562 _LIBCPP_ASSERT(__n2 == 0 || __s != nullptr, "string::replace received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002563 size_type __sz = size();
2564 if (__pos > __sz)
2565 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002566 __n1 = _VSTD::min(__n1, __sz - __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002567 size_type __cap = capacity();
2568 if (__cap - __sz + __n1 >= __n2)
2569 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002570 value_type* __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002571 if (__n1 != __n2)
2572 {
2573 size_type __n_move = __sz - __pos - __n1;
2574 if (__n_move != 0)
2575 {
2576 if (__n1 > __n2)
2577 {
2578 traits_type::move(__p + __pos, __s, __n2);
2579 traits_type::move(__p + __pos + __n2, __p + __pos + __n1, __n_move);
2580 goto __finish;
2581 }
2582 if (__p + __pos < __s && __s < __p + __sz)
2583 {
2584 if (__p + __pos + __n1 <= __s)
2585 __s += __n2 - __n1;
2586 else // __p + __pos < __s < __p + __pos + __n1
2587 {
2588 traits_type::move(__p + __pos, __s, __n1);
2589 __pos += __n1;
2590 __s += __n2;
2591 __n2 -= __n1;
2592 __n1 = 0;
2593 }
2594 }
2595 traits_type::move(__p + __pos + __n2, __p + __pos + __n1, __n_move);
2596 }
2597 }
2598 traits_type::move(__p + __pos, __s, __n2);
2599__finish:
Eric Fiselier3b7c1342017-03-09 01:54:13 +00002600// __sz += __n2 - __n1; in this and the below function below can cause unsigned integer overflow,
2601// but this is a safe operation, so we disable the check.
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002602 __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)
Eric Fiselier3b7c1342017-03-09 01:54:13 +00002615 _LIBCPP_DISABLE_UBSAN_UNSIGNED_INTEGER_CHECK
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002616{
2617 size_type __sz = size();
2618 if (__pos > __sz)
2619 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002620 __n1 = _VSTD::min(__n1, __sz - __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002621 size_type __cap = capacity();
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002622 value_type* __p;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002623 if (__cap - __sz + __n1 >= __n2)
2624 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002625 __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002626 if (__n1 != __n2)
2627 {
2628 size_type __n_move = __sz - __pos - __n1;
2629 if (__n_move != 0)
2630 traits_type::move(__p + __pos + __n2, __p + __pos + __n1, __n_move);
2631 }
2632 }
2633 else
2634 {
2635 __grow_by(__cap, __sz - __n1 + __n2 - __cap, __sz, __pos, __n1, __n2);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002636 __p = _VSTD::__to_raw_pointer(__get_long_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002637 }
2638 traits_type::assign(__p + __pos, __n2, __c);
2639 __sz += __n2 - __n1;
2640 __set_size(__sz);
2641 __invalidate_iterators_past(__sz);
2642 traits_type::assign(__p[__sz], value_type());
2643 return *this;
2644}
2645
2646template <class _CharT, class _Traits, class _Allocator>
2647template<class _InputIterator>
2648typename enable_if
2649<
2650 __is_input_iterator<_InputIterator>::value,
2651 basic_string<_CharT, _Traits, _Allocator>&
2652>::type
Howard Hinnant7b2cb482010-11-17 21:11:40 +00002653basic_string<_CharT, _Traits, _Allocator>::replace(const_iterator __i1, const_iterator __i2,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002654 _InputIterator __j1, _InputIterator __j2)
2655{
Marshall Clowd979eed2016-09-05 01:54:30 +00002656 const basic_string __temp(__j1, __j2, __alloc());
Marshall Clowdf9db312016-01-13 21:54:34 +00002657 return this->replace(__i1, __i2, __temp);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002658}
2659
2660template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002661inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002662basic_string<_CharT, _Traits, _Allocator>&
2663basic_string<_CharT, _Traits, _Allocator>::replace(size_type __pos1, size_type __n1, const basic_string& __str)
2664{
2665 return replace(__pos1, __n1, __str.data(), __str.size());
2666}
2667
2668template <class _CharT, class _Traits, class _Allocator>
2669basic_string<_CharT, _Traits, _Allocator>&
2670basic_string<_CharT, _Traits, _Allocator>::replace(size_type __pos1, size_type __n1, const basic_string& __str,
2671 size_type __pos2, size_type __n2)
2672{
2673 size_type __str_sz = __str.size();
2674 if (__pos2 > __str_sz)
2675 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002676 return replace(__pos1, __n1, __str.data() + __pos2, _VSTD::min(__n2, __str_sz - __pos2));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002677}
2678
2679template <class _CharT, class _Traits, class _Allocator>
Marshall Clow6ac8de02016-09-24 22:45:42 +00002680template <class _Tp>
2681typename enable_if
2682<
2683 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
2684 basic_string<_CharT, _Traits, _Allocator>&
2685>::type
2686basic_string<_CharT, _Traits, _Allocator>::replace(size_type __pos1, size_type __n1, const _Tp& __t,
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002687 size_type __pos2, size_type __n2)
2688{
Marshall Clow6ac8de02016-09-24 22:45:42 +00002689 __self_view __sv = __t;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002690 size_type __str_sz = __sv.size();
2691 if (__pos2 > __str_sz)
2692 this->__throw_out_of_range();
2693 return replace(__pos1, __n1, __sv.data() + __pos2, _VSTD::min(__n2, __str_sz - __pos2));
2694}
2695
2696template <class _CharT, class _Traits, class _Allocator>
2697basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002698basic_string<_CharT, _Traits, _Allocator>::replace(size_type __pos, size_type __n1, const value_type* __s)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002699{
Alp Tokerec34c482014-05-15 11:27:39 +00002700 _LIBCPP_ASSERT(__s != nullptr, "string::replace received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002701 return replace(__pos, __n1, __s, traits_type::length(__s));
2702}
2703
2704template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002705inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002706basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant7b2cb482010-11-17 21:11:40 +00002707basic_string<_CharT, _Traits, _Allocator>::replace(const_iterator __i1, const_iterator __i2, const basic_string& __str)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002708{
2709 return replace(static_cast<size_type>(__i1 - begin()), static_cast<size_type>(__i2 - __i1),
2710 __str.data(), __str.size());
2711}
2712
2713template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002714inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002715basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002716basic_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 +00002717{
2718 return replace(static_cast<size_type>(__i1 - begin()), static_cast<size_type>(__i2 - __i1), __s, __n);
2719}
2720
2721template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002722inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002723basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002724basic_string<_CharT, _Traits, _Allocator>::replace(const_iterator __i1, const_iterator __i2, const value_type* __s)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002725{
2726 return replace(static_cast<size_type>(__i1 - begin()), static_cast<size_type>(__i2 - __i1), __s);
2727}
2728
2729template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002730inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002731basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant7b2cb482010-11-17 21:11:40 +00002732basic_string<_CharT, _Traits, _Allocator>::replace(const_iterator __i1, const_iterator __i2, size_type __n, value_type __c)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002733{
2734 return replace(static_cast<size_type>(__i1 - begin()), static_cast<size_type>(__i2 - __i1), __n, __c);
2735}
2736
2737// erase
2738
2739template <class _CharT, class _Traits, class _Allocator>
2740basic_string<_CharT, _Traits, _Allocator>&
2741basic_string<_CharT, _Traits, _Allocator>::erase(size_type __pos, size_type __n)
2742{
2743 size_type __sz = size();
2744 if (__pos > __sz)
2745 this->__throw_out_of_range();
2746 if (__n)
2747 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002748 value_type* __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002749 __n = _VSTD::min(__n, __sz - __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002750 size_type __n_move = __sz - __pos - __n;
2751 if (__n_move != 0)
2752 traits_type::move(__p + __pos, __p + __pos + __n, __n_move);
2753 __sz -= __n;
2754 __set_size(__sz);
2755 __invalidate_iterators_past(__sz);
2756 traits_type::assign(__p[__sz], value_type());
2757 }
2758 return *this;
2759}
2760
2761template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002762inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002763typename basic_string<_CharT, _Traits, _Allocator>::iterator
2764basic_string<_CharT, _Traits, _Allocator>::erase(const_iterator __pos)
2765{
Howard Hinnant499cea12013-08-23 17:37:05 +00002766#if _LIBCPP_DEBUG_LEVEL >= 2
2767 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__pos) == this,
2768 "string::erase(iterator) called with an iterator not"
2769 " referring to this string");
2770#endif
2771 _LIBCPP_ASSERT(__pos != end(),
2772 "string::erase(iterator) called with a non-dereferenceable iterator");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002773 iterator __b = begin();
2774 size_type __r = static_cast<size_type>(__pos - __b);
2775 erase(__r, 1);
Howard Hinnantec3773c2011-12-01 20:21:04 +00002776 return __b + static_cast<difference_type>(__r);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002777}
2778
2779template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002780inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002781typename basic_string<_CharT, _Traits, _Allocator>::iterator
2782basic_string<_CharT, _Traits, _Allocator>::erase(const_iterator __first, const_iterator __last)
2783{
Howard Hinnant499cea12013-08-23 17:37:05 +00002784#if _LIBCPP_DEBUG_LEVEL >= 2
2785 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__first) == this,
2786 "string::erase(iterator, iterator) called with an iterator not"
2787 " referring to this string");
2788#endif
2789 _LIBCPP_ASSERT(__first <= __last, "string::erase(first, last) called with invalid range");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002790 iterator __b = begin();
2791 size_type __r = static_cast<size_type>(__first - __b);
2792 erase(__r, static_cast<size_type>(__last - __first));
Howard Hinnantec3773c2011-12-01 20:21:04 +00002793 return __b + static_cast<difference_type>(__r);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002794}
2795
2796template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002797inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002798void
2799basic_string<_CharT, _Traits, _Allocator>::pop_back()
2800{
Howard Hinnant499cea12013-08-23 17:37:05 +00002801 _LIBCPP_ASSERT(!empty(), "string::pop_back(): string is already empty");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002802 size_type __sz;
2803 if (__is_long())
2804 {
2805 __sz = __get_long_size() - 1;
2806 __set_long_size(__sz);
2807 traits_type::assign(*(__get_long_pointer() + __sz), value_type());
2808 }
2809 else
2810 {
2811 __sz = __get_short_size() - 1;
2812 __set_short_size(__sz);
2813 traits_type::assign(*(__get_short_pointer() + __sz), value_type());
2814 }
2815 __invalidate_iterators_past(__sz);
2816}
2817
2818template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002819inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002820void
Howard Hinnanta6119a82011-05-29 19:57:12 +00002821basic_string<_CharT, _Traits, _Allocator>::clear() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002822{
2823 __invalidate_all_iterators();
2824 if (__is_long())
2825 {
2826 traits_type::assign(*__get_long_pointer(), value_type());
2827 __set_long_size(0);
2828 }
2829 else
2830 {
2831 traits_type::assign(*__get_short_pointer(), value_type());
2832 __set_short_size(0);
2833 }
2834}
2835
2836template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002837inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002838void
2839basic_string<_CharT, _Traits, _Allocator>::__erase_to_end(size_type __pos)
2840{
2841 if (__is_long())
2842 {
2843 traits_type::assign(*(__get_long_pointer() + __pos), value_type());
2844 __set_long_size(__pos);
2845 }
2846 else
2847 {
2848 traits_type::assign(*(__get_short_pointer() + __pos), value_type());
2849 __set_short_size(__pos);
2850 }
2851 __invalidate_iterators_past(__pos);
2852}
2853
2854template <class _CharT, class _Traits, class _Allocator>
2855void
2856basic_string<_CharT, _Traits, _Allocator>::resize(size_type __n, value_type __c)
2857{
2858 size_type __sz = size();
2859 if (__n > __sz)
2860 append(__n - __sz, __c);
2861 else
2862 __erase_to_end(__n);
2863}
2864
2865template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002866inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002867typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00002868basic_string<_CharT, _Traits, _Allocator>::max_size() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002869{
Howard Hinnante32b5e22010-11-17 17:55:08 +00002870 size_type __m = __alloc_traits::max_size(__alloc());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002871#if _LIBCPP_BIG_ENDIAN
Marshall Clow09f85502013-10-31 17:23:08 +00002872 return (__m <= ~__long_mask ? __m : __m/2) - __alignment;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002873#else
Marshall Clow09f85502013-10-31 17:23:08 +00002874 return __m - __alignment;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002875#endif
2876}
2877
2878template <class _CharT, class _Traits, class _Allocator>
2879void
2880basic_string<_CharT, _Traits, _Allocator>::reserve(size_type __res_arg)
2881{
2882 if (__res_arg > max_size())
2883 this->__throw_length_error();
2884 size_type __cap = capacity();
2885 size_type __sz = size();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002886 __res_arg = _VSTD::max(__res_arg, __sz);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002887 __res_arg = __recommend(__res_arg);
2888 if (__res_arg != __cap)
2889 {
2890 pointer __new_data, __p;
2891 bool __was_long, __now_long;
2892 if (__res_arg == __min_cap - 1)
2893 {
2894 __was_long = true;
2895 __now_long = false;
2896 __new_data = __get_short_pointer();
2897 __p = __get_long_pointer();
2898 }
2899 else
2900 {
2901 if (__res_arg > __cap)
Howard Hinnante32b5e22010-11-17 17:55:08 +00002902 __new_data = __alloc_traits::allocate(__alloc(), __res_arg+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002903 else
2904 {
2905 #ifndef _LIBCPP_NO_EXCEPTIONS
2906 try
2907 {
Howard Hinnant324bb032010-08-22 00:02:43 +00002908 #endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnante32b5e22010-11-17 17:55:08 +00002909 __new_data = __alloc_traits::allocate(__alloc(), __res_arg+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002910 #ifndef _LIBCPP_NO_EXCEPTIONS
2911 }
2912 catch (...)
2913 {
2914 return;
2915 }
Howard Hinnant324bb032010-08-22 00:02:43 +00002916 #else // _LIBCPP_NO_EXCEPTIONS
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002917 if (__new_data == nullptr)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002918 return;
Howard Hinnant324bb032010-08-22 00:02:43 +00002919 #endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002920 }
2921 __now_long = true;
2922 __was_long = __is_long();
2923 __p = __get_pointer();
2924 }
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002925 traits_type::copy(_VSTD::__to_raw_pointer(__new_data),
2926 _VSTD::__to_raw_pointer(__p), size()+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002927 if (__was_long)
Howard Hinnante32b5e22010-11-17 17:55:08 +00002928 __alloc_traits::deallocate(__alloc(), __p, __cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002929 if (__now_long)
2930 {
2931 __set_long_cap(__res_arg+1);
2932 __set_long_size(__sz);
2933 __set_long_pointer(__new_data);
2934 }
2935 else
2936 __set_short_size(__sz);
2937 __invalidate_all_iterators();
2938 }
2939}
2940
2941template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002942inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002943typename basic_string<_CharT, _Traits, _Allocator>::const_reference
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002944basic_string<_CharT, _Traits, _Allocator>::operator[](size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002945{
Howard Hinnant499cea12013-08-23 17:37:05 +00002946 _LIBCPP_ASSERT(__pos <= size(), "string index out of bounds");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002947 return *(data() + __pos);
2948}
2949
2950template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002951inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002952typename basic_string<_CharT, _Traits, _Allocator>::reference
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002953basic_string<_CharT, _Traits, _Allocator>::operator[](size_type __pos) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002954{
Howard Hinnant499cea12013-08-23 17:37:05 +00002955 _LIBCPP_ASSERT(__pos <= size(), "string index out of bounds");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002956 return *(__get_pointer() + __pos);
2957}
2958
2959template <class _CharT, class _Traits, class _Allocator>
2960typename basic_string<_CharT, _Traits, _Allocator>::const_reference
2961basic_string<_CharT, _Traits, _Allocator>::at(size_type __n) const
2962{
2963 if (__n >= size())
2964 this->__throw_out_of_range();
2965 return (*this)[__n];
2966}
2967
2968template <class _CharT, class _Traits, class _Allocator>
2969typename basic_string<_CharT, _Traits, _Allocator>::reference
2970basic_string<_CharT, _Traits, _Allocator>::at(size_type __n)
2971{
2972 if (__n >= size())
2973 this->__throw_out_of_range();
2974 return (*this)[__n];
2975}
2976
2977template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002978inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002979typename basic_string<_CharT, _Traits, _Allocator>::reference
2980basic_string<_CharT, _Traits, _Allocator>::front()
2981{
Howard Hinnant499cea12013-08-23 17:37:05 +00002982 _LIBCPP_ASSERT(!empty(), "string::front(): string is empty");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002983 return *__get_pointer();
2984}
2985
2986template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002987inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002988typename basic_string<_CharT, _Traits, _Allocator>::const_reference
2989basic_string<_CharT, _Traits, _Allocator>::front() const
2990{
Howard Hinnant499cea12013-08-23 17:37:05 +00002991 _LIBCPP_ASSERT(!empty(), "string::front(): string is empty");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002992 return *data();
2993}
2994
2995template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002996inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002997typename basic_string<_CharT, _Traits, _Allocator>::reference
2998basic_string<_CharT, _Traits, _Allocator>::back()
2999{
Howard Hinnant499cea12013-08-23 17:37:05 +00003000 _LIBCPP_ASSERT(!empty(), "string::back(): string is empty");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003001 return *(__get_pointer() + size() - 1);
3002}
3003
3004template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003005inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003006typename basic_string<_CharT, _Traits, _Allocator>::const_reference
3007basic_string<_CharT, _Traits, _Allocator>::back() const
3008{
Howard Hinnant499cea12013-08-23 17:37:05 +00003009 _LIBCPP_ASSERT(!empty(), "string::back(): string is empty");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003010 return *(data() + size() - 1);
3011}
3012
3013template <class _CharT, class _Traits, class _Allocator>
3014typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003015basic_string<_CharT, _Traits, _Allocator>::copy(value_type* __s, size_type __n, size_type __pos) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003016{
3017 size_type __sz = size();
3018 if (__pos > __sz)
3019 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00003020 size_type __rlen = _VSTD::min(__n, __sz - __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003021 traits_type::copy(__s, data() + __pos, __rlen);
3022 return __rlen;
3023}
3024
3025template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003026inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003027basic_string<_CharT, _Traits, _Allocator>
3028basic_string<_CharT, _Traits, _Allocator>::substr(size_type __pos, size_type __n) const
3029{
3030 return basic_string(*this, __pos, __n, __alloc());
3031}
3032
3033template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003034inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003035void
3036basic_string<_CharT, _Traits, _Allocator>::swap(basic_string& __str)
Marshall Clow7d914d12015-07-13 20:04:56 +00003037#if _LIBCPP_STD_VER >= 14
Eric Fiselier47257c42016-12-28 05:53:01 +00003038 _NOEXCEPT_DEBUG
Marshall Clow7d914d12015-07-13 20:04:56 +00003039#else
Eric Fiselier47257c42016-12-28 05:53:01 +00003040 _NOEXCEPT_DEBUG_(!__alloc_traits::propagate_on_container_swap::value ||
Marshall Clow7d914d12015-07-13 20:04:56 +00003041 __is_nothrow_swappable<allocator_type>::value)
3042#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003043{
Howard Hinnant499cea12013-08-23 17:37:05 +00003044#if _LIBCPP_DEBUG_LEVEL >= 2
3045 if (!__is_long())
3046 __get_db()->__invalidate_all(this);
3047 if (!__str.__is_long())
3048 __get_db()->__invalidate_all(&__str);
3049 __get_db()->swap(this, &__str);
3050#endif
Eric Fiselier47257c42016-12-28 05:53:01 +00003051 _LIBCPP_ASSERT(
3052 __alloc_traits::propagate_on_container_swap::value ||
3053 __alloc_traits::is_always_equal::value ||
3054 __alloc() == __str.__alloc(), "swapping non-equal allocators");
Howard Hinnant0949eed2011-06-30 21:18:19 +00003055 _VSTD::swap(__r_.first(), __str.__r_.first());
Marshall Clow7d914d12015-07-13 20:04:56 +00003056 __swap_allocator(__alloc(), __str.__alloc());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003057}
3058
3059// find
3060
3061template <class _Traits>
3062struct _LIBCPP_HIDDEN __traits_eq
3063{
3064 typedef typename _Traits::char_type char_type;
Howard Hinnanta6119a82011-05-29 19:57:12 +00003065 _LIBCPP_INLINE_VISIBILITY
3066 bool operator()(const char_type& __x, const char_type& __y) _NOEXCEPT
3067 {return _Traits::eq(__x, __y);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003068};
3069
3070template<class _CharT, class _Traits, class _Allocator>
3071typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003072basic_string<_CharT, _Traits, _Allocator>::find(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003073 size_type __pos,
3074 size_type __n) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003075{
Alp Tokerec34c482014-05-15 11:27:39 +00003076 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::find(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003077 return __str_find<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00003078 (data(), size(), __s, __pos, __n);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003079}
3080
3081template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003082inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003083typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003084basic_string<_CharT, _Traits, _Allocator>::find(const basic_string& __str,
3085 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003086{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003087 return __str_find<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00003088 (data(), size(), __str.data(), __pos, __str.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003089}
3090
3091template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003092inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003093typename basic_string<_CharT, _Traits, _Allocator>::size_type
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003094basic_string<_CharT, _Traits, _Allocator>::find(__self_view __sv,
3095 size_type __pos) const _NOEXCEPT
3096{
3097 return __str_find<value_type, size_type, traits_type, npos>
3098 (data(), size(), __sv.data(), __pos, __sv.size());
3099}
3100
3101template<class _CharT, class _Traits, class _Allocator>
3102inline _LIBCPP_INLINE_VISIBILITY
3103typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003104basic_string<_CharT, _Traits, _Allocator>::find(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003105 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003106{
Alp Tokerec34c482014-05-15 11:27:39 +00003107 _LIBCPP_ASSERT(__s != nullptr, "string::find(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003108 return __str_find<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00003109 (data(), size(), __s, __pos, traits_type::length(__s));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003110}
3111
3112template<class _CharT, class _Traits, class _Allocator>
3113typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003114basic_string<_CharT, _Traits, _Allocator>::find(value_type __c,
3115 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003116{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003117 return __str_find<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00003118 (data(), size(), __c, __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003119}
3120
3121// rfind
3122
3123template<class _CharT, class _Traits, class _Allocator>
3124typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003125basic_string<_CharT, _Traits, _Allocator>::rfind(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003126 size_type __pos,
3127 size_type __n) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003128{
Alp Tokerec34c482014-05-15 11:27:39 +00003129 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::rfind(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003130 return __str_rfind<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00003131 (data(), size(), __s, __pos, __n);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003132}
3133
3134template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003135inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003136typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003137basic_string<_CharT, _Traits, _Allocator>::rfind(const basic_string& __str,
3138 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003139{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003140 return __str_rfind<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00003141 (data(), size(), __str.data(), __pos, __str.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003142}
3143
3144template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003145inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003146typename basic_string<_CharT, _Traits, _Allocator>::size_type
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003147basic_string<_CharT, _Traits, _Allocator>::rfind(__self_view __sv,
3148 size_type __pos) const _NOEXCEPT
3149{
3150 return __str_rfind<value_type, size_type, traits_type, npos>
3151 (data(), size(), __sv.data(), __pos, __sv.size());
3152}
3153
3154template<class _CharT, class _Traits, class _Allocator>
3155inline _LIBCPP_INLINE_VISIBILITY
3156typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003157basic_string<_CharT, _Traits, _Allocator>::rfind(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003158 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003159{
Alp Tokerec34c482014-05-15 11:27:39 +00003160 _LIBCPP_ASSERT(__s != nullptr, "string::rfind(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003161 return __str_rfind<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00003162 (data(), size(), __s, __pos, traits_type::length(__s));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003163}
3164
3165template<class _CharT, class _Traits, class _Allocator>
3166typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003167basic_string<_CharT, _Traits, _Allocator>::rfind(value_type __c,
3168 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003169{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003170 return __str_rfind<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00003171 (data(), size(), __c, __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003172}
3173
3174// find_first_of
3175
3176template<class _CharT, class _Traits, class _Allocator>
3177typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003178basic_string<_CharT, _Traits, _Allocator>::find_first_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003179 size_type __pos,
3180 size_type __n) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003181{
Alp Tokerec34c482014-05-15 11:27:39 +00003182 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::find_first_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003183 return __str_find_first_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003184 (data(), size(), __s, __pos, __n);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003185}
3186
3187template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003188inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003189typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003190basic_string<_CharT, _Traits, _Allocator>::find_first_of(const basic_string& __str,
3191 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003192{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003193 return __str_find_first_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003194 (data(), size(), __str.data(), __pos, __str.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003195}
3196
3197template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003198inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003199typename basic_string<_CharT, _Traits, _Allocator>::size_type
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003200basic_string<_CharT, _Traits, _Allocator>::find_first_of(__self_view __sv,
3201 size_type __pos) const _NOEXCEPT
3202{
3203 return __str_find_first_of<value_type, size_type, traits_type, npos>
3204 (data(), size(), __sv.data(), __pos, __sv.size());
3205}
3206
3207template<class _CharT, class _Traits, class _Allocator>
3208inline _LIBCPP_INLINE_VISIBILITY
3209typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003210basic_string<_CharT, _Traits, _Allocator>::find_first_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003211 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003212{
Alp Tokerec34c482014-05-15 11:27:39 +00003213 _LIBCPP_ASSERT(__s != nullptr, "string::find_first_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003214 return __str_find_first_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003215 (data(), size(), __s, __pos, traits_type::length(__s));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003216}
3217
3218template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003219inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003220typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003221basic_string<_CharT, _Traits, _Allocator>::find_first_of(value_type __c,
3222 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003223{
3224 return find(__c, __pos);
3225}
3226
3227// find_last_of
3228
3229template<class _CharT, class _Traits, class _Allocator>
3230typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003231basic_string<_CharT, _Traits, _Allocator>::find_last_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003232 size_type __pos,
3233 size_type __n) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003234{
Alp Tokerec34c482014-05-15 11:27:39 +00003235 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::find_last_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003236 return __str_find_last_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003237 (data(), size(), __s, __pos, __n);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003238}
3239
3240template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003241inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003242typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003243basic_string<_CharT, _Traits, _Allocator>::find_last_of(const basic_string& __str,
3244 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003245{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003246 return __str_find_last_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003247 (data(), size(), __str.data(), __pos, __str.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003248}
3249
3250template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003251inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003252typename basic_string<_CharT, _Traits, _Allocator>::size_type
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003253basic_string<_CharT, _Traits, _Allocator>::find_last_of(__self_view __sv,
3254 size_type __pos) const _NOEXCEPT
3255{
3256 return __str_find_last_of<value_type, size_type, traits_type, npos>
3257 (data(), size(), __sv.data(), __pos, __sv.size());
3258}
3259
3260template<class _CharT, class _Traits, class _Allocator>
3261inline _LIBCPP_INLINE_VISIBILITY
3262typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003263basic_string<_CharT, _Traits, _Allocator>::find_last_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003264 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003265{
Alp Tokerec34c482014-05-15 11:27:39 +00003266 _LIBCPP_ASSERT(__s != nullptr, "string::find_last_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003267 return __str_find_last_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003268 (data(), size(), __s, __pos, traits_type::length(__s));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003269}
3270
3271template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003272inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003273typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003274basic_string<_CharT, _Traits, _Allocator>::find_last_of(value_type __c,
3275 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003276{
3277 return rfind(__c, __pos);
3278}
3279
3280// find_first_not_of
3281
3282template<class _CharT, class _Traits, class _Allocator>
3283typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003284basic_string<_CharT, _Traits, _Allocator>::find_first_not_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003285 size_type __pos,
3286 size_type __n) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003287{
Alp Tokerec34c482014-05-15 11:27:39 +00003288 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::find_first_not_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003289 return __str_find_first_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003290 (data(), size(), __s, __pos, __n);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003291}
3292
3293template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003294inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003295typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003296basic_string<_CharT, _Traits, _Allocator>::find_first_not_of(const basic_string& __str,
3297 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003298{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003299 return __str_find_first_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003300 (data(), size(), __str.data(), __pos, __str.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003301}
3302
3303template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003304inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003305typename basic_string<_CharT, _Traits, _Allocator>::size_type
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003306basic_string<_CharT, _Traits, _Allocator>::find_first_not_of(__self_view __sv,
3307 size_type __pos) const _NOEXCEPT
3308{
3309 return __str_find_first_not_of<value_type, size_type, traits_type, npos>
3310 (data(), size(), __sv.data(), __pos, __sv.size());
3311}
3312
3313template<class _CharT, class _Traits, class _Allocator>
3314inline _LIBCPP_INLINE_VISIBILITY
3315typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003316basic_string<_CharT, _Traits, _Allocator>::find_first_not_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003317 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003318{
Alp Tokerec34c482014-05-15 11:27:39 +00003319 _LIBCPP_ASSERT(__s != nullptr, "string::find_first_not_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003320 return __str_find_first_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003321 (data(), size(), __s, __pos, traits_type::length(__s));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003322}
3323
3324template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003325inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003326typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003327basic_string<_CharT, _Traits, _Allocator>::find_first_not_of(value_type __c,
3328 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003329{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003330 return __str_find_first_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003331 (data(), size(), __c, __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003332}
3333
3334// find_last_not_of
3335
3336template<class _CharT, class _Traits, class _Allocator>
3337typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003338basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003339 size_type __pos,
3340 size_type __n) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003341{
Alp Tokerec34c482014-05-15 11:27:39 +00003342 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::find_last_not_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003343 return __str_find_last_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003344 (data(), size(), __s, __pos, __n);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003345}
3346
3347template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003348inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003349typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003350basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(const basic_string& __str,
3351 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003352{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003353 return __str_find_last_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003354 (data(), size(), __str.data(), __pos, __str.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003355}
3356
3357template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003358inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003359typename basic_string<_CharT, _Traits, _Allocator>::size_type
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003360basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(__self_view __sv,
3361 size_type __pos) const _NOEXCEPT
3362{
3363 return __str_find_last_not_of<value_type, size_type, traits_type, npos>
3364 (data(), size(), __sv.data(), __pos, __sv.size());
3365}
3366
3367template<class _CharT, class _Traits, class _Allocator>
3368inline _LIBCPP_INLINE_VISIBILITY
3369typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003370basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003371 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003372{
Alp Tokerec34c482014-05-15 11:27:39 +00003373 _LIBCPP_ASSERT(__s != nullptr, "string::find_last_not_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003374 return __str_find_last_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003375 (data(), size(), __s, __pos, traits_type::length(__s));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003376}
3377
3378template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003379inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003380typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003381basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(value_type __c,
3382 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003383{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003384 return __str_find_last_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003385 (data(), size(), __c, __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003386}
3387
3388// compare
3389
3390template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003391inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003392int
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003393basic_string<_CharT, _Traits, _Allocator>::compare(__self_view __sv) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003394{
Howard Hinnantfa06d752011-07-24 21:45:06 +00003395 size_t __lhs_sz = size();
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003396 size_t __rhs_sz = __sv.size();
3397 int __result = traits_type::compare(data(), __sv.data(),
Howard Hinnantfa06d752011-07-24 21:45:06 +00003398 _VSTD::min(__lhs_sz, __rhs_sz));
3399 if (__result != 0)
3400 return __result;
3401 if (__lhs_sz < __rhs_sz)
3402 return -1;
3403 if (__lhs_sz > __rhs_sz)
3404 return 1;
3405 return 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003406}
3407
3408template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003409inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003410int
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003411basic_string<_CharT, _Traits, _Allocator>::compare(const basic_string& __str) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003412{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003413 return compare(__self_view(__str));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003414}
3415
3416template <class _CharT, class _Traits, class _Allocator>
3417int
Howard Hinnanta6119a82011-05-29 19:57:12 +00003418basic_string<_CharT, _Traits, _Allocator>::compare(size_type __pos1,
3419 size_type __n1,
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003420 const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003421 size_type __n2) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003422{
Alp Tokerec34c482014-05-15 11:27:39 +00003423 _LIBCPP_ASSERT(__n2 == 0 || __s != nullptr, "string::compare(): received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003424 size_type __sz = size();
3425 if (__pos1 > __sz || __n2 == npos)
3426 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00003427 size_type __rlen = _VSTD::min(__n1, __sz - __pos1);
3428 int __r = traits_type::compare(data() + __pos1, __s, _VSTD::min(__rlen, __n2));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003429 if (__r == 0)
3430 {
3431 if (__rlen < __n2)
3432 __r = -1;
3433 else if (__rlen > __n2)
3434 __r = 1;
3435 }
3436 return __r;
3437}
3438
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003439template <class _CharT, class _Traits, class _Allocator>
3440inline _LIBCPP_INLINE_VISIBILITY
3441int
3442basic_string<_CharT, _Traits, _Allocator>::compare(size_type __pos1,
3443 size_type __n1,
3444 __self_view __sv) const
3445{
3446 return compare(__pos1, __n1, __sv.data(), __sv.size());
3447}
3448
3449template <class _CharT, class _Traits, class _Allocator>
3450inline _LIBCPP_INLINE_VISIBILITY
3451int
3452basic_string<_CharT, _Traits, _Allocator>::compare(size_type __pos1,
3453 size_type __n1,
3454 const basic_string& __str) const
3455{
3456 return compare(__pos1, __n1, __str.data(), __str.size());
3457}
3458
3459template <class _CharT, class _Traits, class _Allocator>
Marshall Clow6ac8de02016-09-24 22:45:42 +00003460template <class _Tp>
3461typename enable_if
3462<
3463 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
3464 int
3465>::type
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003466basic_string<_CharT, _Traits, _Allocator>::compare(size_type __pos1,
3467 size_type __n1,
Marshall Clow6ac8de02016-09-24 22:45:42 +00003468 const _Tp& __t,
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003469 size_type __pos2,
3470 size_type __n2) const
3471{
Marshall Clow6ac8de02016-09-24 22:45:42 +00003472 __self_view __sv = __t;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003473 return __self_view(*this).substr(__pos1, __n1).compare(__sv.substr(__pos2, __n2));
3474}
3475
3476template <class _CharT, class _Traits, class _Allocator>
3477int
3478basic_string<_CharT, _Traits, _Allocator>::compare(size_type __pos1,
3479 size_type __n1,
3480 const basic_string& __str,
3481 size_type __pos2,
3482 size_type __n2) const
3483{
3484 return compare(__pos1, __n1, __self_view(__str), __pos2, __n2);
3485}
3486
3487template <class _CharT, class _Traits, class _Allocator>
3488int
3489basic_string<_CharT, _Traits, _Allocator>::compare(const value_type* __s) const _NOEXCEPT
3490{
3491 _LIBCPP_ASSERT(__s != nullptr, "string::compare(): received nullptr");
3492 return compare(0, npos, __s, traits_type::length(__s));
3493}
3494
3495template <class _CharT, class _Traits, class _Allocator>
3496int
3497basic_string<_CharT, _Traits, _Allocator>::compare(size_type __pos1,
3498 size_type __n1,
3499 const value_type* __s) const
3500{
3501 _LIBCPP_ASSERT(__s != nullptr, "string::compare(): received nullptr");
3502 return compare(__pos1, __n1, __s, traits_type::length(__s));
3503}
3504
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003505// __invariants
3506
3507template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003508inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003509bool
3510basic_string<_CharT, _Traits, _Allocator>::__invariants() const
3511{
3512 if (size() > capacity())
3513 return false;
3514 if (capacity() < __min_cap - 1)
3515 return false;
3516 if (data() == 0)
3517 return false;
3518 if (data()[size()] != value_type(0))
3519 return false;
3520 return true;
3521}
3522
3523// operator==
3524
3525template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003526inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003527bool
3528operator==(const basic_string<_CharT, _Traits, _Allocator>& __lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003529 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003530{
Howard Hinnant08dd2532013-04-22 23:55:13 +00003531 size_t __lhs_sz = __lhs.size();
3532 return __lhs_sz == __rhs.size() && _Traits::compare(__lhs.data(),
3533 __rhs.data(),
3534 __lhs_sz) == 0;
3535}
3536
3537template<class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003538inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant08dd2532013-04-22 23:55:13 +00003539bool
3540operator==(const basic_string<char, char_traits<char>, _Allocator>& __lhs,
3541 const basic_string<char, char_traits<char>, _Allocator>& __rhs) _NOEXCEPT
3542{
3543 size_t __lhs_sz = __lhs.size();
3544 if (__lhs_sz != __rhs.size())
3545 return false;
3546 const char* __lp = __lhs.data();
3547 const char* __rp = __rhs.data();
3548 if (__lhs.__is_long())
3549 return char_traits<char>::compare(__lp, __rp, __lhs_sz) == 0;
3550 for (; __lhs_sz != 0; --__lhs_sz, ++__lp, ++__rp)
3551 if (*__lp != *__rp)
3552 return false;
3553 return true;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003554}
3555
3556template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003557inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003558bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003559operator==(const _CharT* __lhs,
3560 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003561{
Eric Fiselier4f241822015-08-28 03:02:37 +00003562 typedef basic_string<_CharT, _Traits, _Allocator> _String;
3563 _LIBCPP_ASSERT(__lhs != nullptr, "operator==(char*, basic_string): received nullptr");
3564 size_t __lhs_len = _Traits::length(__lhs);
3565 if (__lhs_len != __rhs.size()) return false;
3566 return __rhs.compare(0, _String::npos, __lhs, __lhs_len) == 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003567}
3568
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003569template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003570inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003571bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003572operator==(const basic_string<_CharT,_Traits,_Allocator>& __lhs,
3573 const _CharT* __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003574{
Eric Fiselier4f241822015-08-28 03:02:37 +00003575 typedef basic_string<_CharT, _Traits, _Allocator> _String;
3576 _LIBCPP_ASSERT(__rhs != nullptr, "operator==(basic_string, char*): received nullptr");
3577 size_t __rhs_len = _Traits::length(__rhs);
3578 if (__rhs_len != __lhs.size()) return false;
3579 return __lhs.compare(0, _String::npos, __rhs, __rhs_len) == 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003580}
3581
Howard Hinnant324bb032010-08-22 00:02:43 +00003582template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003583inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003584bool
3585operator!=(const basic_string<_CharT,_Traits,_Allocator>& __lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003586 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003587{
3588 return !(__lhs == __rhs);
3589}
3590
3591template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003592inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003593bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003594operator!=(const _CharT* __lhs,
3595 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003596{
3597 return !(__lhs == __rhs);
3598}
3599
3600template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003601inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003602bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003603operator!=(const basic_string<_CharT, _Traits, _Allocator>& __lhs,
3604 const _CharT* __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003605{
3606 return !(__lhs == __rhs);
3607}
3608
3609// operator<
3610
3611template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003612inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003613bool
3614operator< (const basic_string<_CharT, _Traits, _Allocator>& __lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003615 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003616{
Howard Hinnant2644a7b2011-07-24 15:07:21 +00003617 return __lhs.compare(__rhs) < 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003618}
3619
3620template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003621inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003622bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003623operator< (const basic_string<_CharT, _Traits, _Allocator>& __lhs,
3624 const _CharT* __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003625{
Howard Hinnant2644a7b2011-07-24 15:07:21 +00003626 return __lhs.compare(__rhs) < 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003627}
3628
3629template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003630inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003631bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003632operator< (const _CharT* __lhs,
3633 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003634{
3635 return __rhs.compare(__lhs) > 0;
3636}
3637
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003638// operator>
3639
3640template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003641inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003642bool
3643operator> (const basic_string<_CharT, _Traits, _Allocator>& __lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003644 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003645{
3646 return __rhs < __lhs;
3647}
3648
3649template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003650inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003651bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003652operator> (const basic_string<_CharT, _Traits, _Allocator>& __lhs,
3653 const _CharT* __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003654{
3655 return __rhs < __lhs;
3656}
3657
3658template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003659inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003660bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003661operator> (const _CharT* __lhs,
3662 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003663{
3664 return __rhs < __lhs;
3665}
3666
3667// operator<=
3668
3669template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003670inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003671bool
3672operator<=(const basic_string<_CharT, _Traits, _Allocator>& __lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003673 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003674{
3675 return !(__rhs < __lhs);
3676}
3677
3678template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003679inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003680bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003681operator<=(const basic_string<_CharT, _Traits, _Allocator>& __lhs,
3682 const _CharT* __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003683{
3684 return !(__rhs < __lhs);
3685}
3686
3687template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003688inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003689bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003690operator<=(const _CharT* __lhs,
3691 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003692{
3693 return !(__rhs < __lhs);
3694}
3695
3696// operator>=
3697
3698template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003699inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003700bool
3701operator>=(const basic_string<_CharT, _Traits, _Allocator>& __lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003702 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003703{
3704 return !(__lhs < __rhs);
3705}
3706
3707template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003708inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003709bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003710operator>=(const basic_string<_CharT, _Traits, _Allocator>& __lhs,
3711 const _CharT* __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003712{
3713 return !(__lhs < __rhs);
3714}
3715
3716template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003717inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003718bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003719operator>=(const _CharT* __lhs,
3720 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003721{
3722 return !(__lhs < __rhs);
3723}
3724
3725// operator +
3726
3727template<class _CharT, class _Traits, class _Allocator>
3728basic_string<_CharT, _Traits, _Allocator>
3729operator+(const basic_string<_CharT, _Traits, _Allocator>& __lhs,
3730 const basic_string<_CharT, _Traits, _Allocator>& __rhs)
3731{
3732 basic_string<_CharT, _Traits, _Allocator> __r(__lhs.get_allocator());
3733 typename basic_string<_CharT, _Traits, _Allocator>::size_type __lhs_sz = __lhs.size();
3734 typename basic_string<_CharT, _Traits, _Allocator>::size_type __rhs_sz = __rhs.size();
3735 __r.__init(__lhs.data(), __lhs_sz, __lhs_sz + __rhs_sz);
3736 __r.append(__rhs.data(), __rhs_sz);
3737 return __r;
3738}
3739
3740template<class _CharT, class _Traits, class _Allocator>
3741basic_string<_CharT, _Traits, _Allocator>
3742operator+(const _CharT* __lhs , const basic_string<_CharT,_Traits,_Allocator>& __rhs)
3743{
3744 basic_string<_CharT, _Traits, _Allocator> __r(__rhs.get_allocator());
3745 typename basic_string<_CharT, _Traits, _Allocator>::size_type __lhs_sz = _Traits::length(__lhs);
3746 typename basic_string<_CharT, _Traits, _Allocator>::size_type __rhs_sz = __rhs.size();
3747 __r.__init(__lhs, __lhs_sz, __lhs_sz + __rhs_sz);
3748 __r.append(__rhs.data(), __rhs_sz);
3749 return __r;
3750}
3751
3752template<class _CharT, class _Traits, class _Allocator>
3753basic_string<_CharT, _Traits, _Allocator>
3754operator+(_CharT __lhs, const basic_string<_CharT,_Traits,_Allocator>& __rhs)
3755{
3756 basic_string<_CharT, _Traits, _Allocator> __r(__rhs.get_allocator());
3757 typename basic_string<_CharT, _Traits, _Allocator>::size_type __rhs_sz = __rhs.size();
3758 __r.__init(&__lhs, 1, 1 + __rhs_sz);
3759 __r.append(__rhs.data(), __rhs_sz);
3760 return __r;
3761}
3762
3763template<class _CharT, class _Traits, class _Allocator>
3764basic_string<_CharT, _Traits, _Allocator>
3765operator+(const basic_string<_CharT, _Traits, _Allocator>& __lhs, const _CharT* __rhs)
3766{
3767 basic_string<_CharT, _Traits, _Allocator> __r(__lhs.get_allocator());
3768 typename basic_string<_CharT, _Traits, _Allocator>::size_type __lhs_sz = __lhs.size();
3769 typename basic_string<_CharT, _Traits, _Allocator>::size_type __rhs_sz = _Traits::length(__rhs);
3770 __r.__init(__lhs.data(), __lhs_sz, __lhs_sz + __rhs_sz);
3771 __r.append(__rhs, __rhs_sz);
3772 return __r;
3773}
3774
3775template<class _CharT, class _Traits, class _Allocator>
3776basic_string<_CharT, _Traits, _Allocator>
3777operator+(const basic_string<_CharT, _Traits, _Allocator>& __lhs, _CharT __rhs)
3778{
3779 basic_string<_CharT, _Traits, _Allocator> __r(__lhs.get_allocator());
3780 typename basic_string<_CharT, _Traits, _Allocator>::size_type __lhs_sz = __lhs.size();
3781 __r.__init(__lhs.data(), __lhs_sz, __lhs_sz + 1);
3782 __r.push_back(__rhs);
3783 return __r;
3784}
3785
Eric Fiselier3e928972017-04-19 00:28:44 +00003786#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003787
3788template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003789inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003790basic_string<_CharT, _Traits, _Allocator>
3791operator+(basic_string<_CharT, _Traits, _Allocator>&& __lhs, const basic_string<_CharT, _Traits, _Allocator>& __rhs)
3792{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003793 return _VSTD::move(__lhs.append(__rhs));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003794}
3795
3796template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003797inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003798basic_string<_CharT, _Traits, _Allocator>
3799operator+(const basic_string<_CharT, _Traits, _Allocator>& __lhs, basic_string<_CharT, _Traits, _Allocator>&& __rhs)
3800{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003801 return _VSTD::move(__rhs.insert(0, __lhs));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003802}
3803
3804template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003805inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003806basic_string<_CharT, _Traits, _Allocator>
3807operator+(basic_string<_CharT, _Traits, _Allocator>&& __lhs, basic_string<_CharT, _Traits, _Allocator>&& __rhs)
3808{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003809 return _VSTD::move(__lhs.append(__rhs));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003810}
3811
3812template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003813inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003814basic_string<_CharT, _Traits, _Allocator>
3815operator+(const _CharT* __lhs , basic_string<_CharT,_Traits,_Allocator>&& __rhs)
3816{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003817 return _VSTD::move(__rhs.insert(0, __lhs));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003818}
3819
3820template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003821inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003822basic_string<_CharT, _Traits, _Allocator>
3823operator+(_CharT __lhs, basic_string<_CharT,_Traits,_Allocator>&& __rhs)
3824{
3825 __rhs.insert(__rhs.begin(), __lhs);
Howard Hinnant0949eed2011-06-30 21:18:19 +00003826 return _VSTD::move(__rhs);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003827}
3828
3829template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003830inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003831basic_string<_CharT, _Traits, _Allocator>
3832operator+(basic_string<_CharT, _Traits, _Allocator>&& __lhs, const _CharT* __rhs)
3833{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003834 return _VSTD::move(__lhs.append(__rhs));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003835}
3836
3837template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003838inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003839basic_string<_CharT, _Traits, _Allocator>
3840operator+(basic_string<_CharT, _Traits, _Allocator>&& __lhs, _CharT __rhs)
3841{
3842 __lhs.push_back(__rhs);
Howard Hinnant0949eed2011-06-30 21:18:19 +00003843 return _VSTD::move(__lhs);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003844}
3845
Eric Fiselier3e928972017-04-19 00:28:44 +00003846#endif // _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003847
3848// swap
3849
3850template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003851inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003852void
Howard Hinnanta6119a82011-05-29 19:57:12 +00003853swap(basic_string<_CharT, _Traits, _Allocator>& __lhs,
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00003854 basic_string<_CharT, _Traits, _Allocator>& __rhs)
3855 _NOEXCEPT_(_NOEXCEPT_(__lhs.swap(__rhs)))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003856{
3857 __lhs.swap(__rhs);
3858}
3859
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003860#ifndef _LIBCPP_HAS_NO_UNICODE_CHARS
3861
3862typedef basic_string<char16_t> u16string;
3863typedef basic_string<char32_t> u32string;
3864
Howard Hinnant324bb032010-08-22 00:02:43 +00003865#endif // _LIBCPP_HAS_NO_UNICODE_CHARS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003866
Howard Hinnant0f678bd2013-08-12 18:38:34 +00003867_LIBCPP_FUNC_VIS int stoi (const string& __str, size_t* __idx = 0, int __base = 10);
3868_LIBCPP_FUNC_VIS long stol (const string& __str, size_t* __idx = 0, int __base = 10);
3869_LIBCPP_FUNC_VIS unsigned long stoul (const string& __str, size_t* __idx = 0, int __base = 10);
3870_LIBCPP_FUNC_VIS long long stoll (const string& __str, size_t* __idx = 0, int __base = 10);
3871_LIBCPP_FUNC_VIS unsigned long long stoull(const string& __str, size_t* __idx = 0, int __base = 10);
Howard Hinnanta6a062d2010-06-02 18:20:39 +00003872
Howard Hinnant0f678bd2013-08-12 18:38:34 +00003873_LIBCPP_FUNC_VIS float stof (const string& __str, size_t* __idx = 0);
3874_LIBCPP_FUNC_VIS double stod (const string& __str, size_t* __idx = 0);
3875_LIBCPP_FUNC_VIS long double stold(const string& __str, size_t* __idx = 0);
Howard Hinnanta6a062d2010-06-02 18:20:39 +00003876
Howard Hinnant0f678bd2013-08-12 18:38:34 +00003877_LIBCPP_FUNC_VIS string to_string(int __val);
3878_LIBCPP_FUNC_VIS string to_string(unsigned __val);
3879_LIBCPP_FUNC_VIS string to_string(long __val);
3880_LIBCPP_FUNC_VIS string to_string(unsigned long __val);
3881_LIBCPP_FUNC_VIS string to_string(long long __val);
3882_LIBCPP_FUNC_VIS string to_string(unsigned long long __val);
3883_LIBCPP_FUNC_VIS string to_string(float __val);
3884_LIBCPP_FUNC_VIS string to_string(double __val);
3885_LIBCPP_FUNC_VIS string to_string(long double __val);
Howard Hinnanta6a062d2010-06-02 18:20:39 +00003886
Howard Hinnant0f678bd2013-08-12 18:38:34 +00003887_LIBCPP_FUNC_VIS int stoi (const wstring& __str, size_t* __idx = 0, int __base = 10);
3888_LIBCPP_FUNC_VIS long stol (const wstring& __str, size_t* __idx = 0, int __base = 10);
3889_LIBCPP_FUNC_VIS unsigned long stoul (const wstring& __str, size_t* __idx = 0, int __base = 10);
3890_LIBCPP_FUNC_VIS long long stoll (const wstring& __str, size_t* __idx = 0, int __base = 10);
3891_LIBCPP_FUNC_VIS unsigned long long stoull(const wstring& __str, size_t* __idx = 0, int __base = 10);
Howard Hinnanta6a062d2010-06-02 18:20:39 +00003892
Howard Hinnant0f678bd2013-08-12 18:38:34 +00003893_LIBCPP_FUNC_VIS float stof (const wstring& __str, size_t* __idx = 0);
3894_LIBCPP_FUNC_VIS double stod (const wstring& __str, size_t* __idx = 0);
3895_LIBCPP_FUNC_VIS long double stold(const wstring& __str, size_t* __idx = 0);
Howard Hinnanta6a062d2010-06-02 18:20:39 +00003896
Howard Hinnant0f678bd2013-08-12 18:38:34 +00003897_LIBCPP_FUNC_VIS wstring to_wstring(int __val);
3898_LIBCPP_FUNC_VIS wstring to_wstring(unsigned __val);
3899_LIBCPP_FUNC_VIS wstring to_wstring(long __val);
3900_LIBCPP_FUNC_VIS wstring to_wstring(unsigned long __val);
3901_LIBCPP_FUNC_VIS wstring to_wstring(long long __val);
3902_LIBCPP_FUNC_VIS wstring to_wstring(unsigned long long __val);
3903_LIBCPP_FUNC_VIS wstring to_wstring(float __val);
3904_LIBCPP_FUNC_VIS wstring to_wstring(double __val);
3905_LIBCPP_FUNC_VIS wstring to_wstring(long double __val);
Howard Hinnanta6a062d2010-06-02 18:20:39 +00003906
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003907template<class _CharT, class _Traits, class _Allocator>
3908 const typename basic_string<_CharT, _Traits, _Allocator>::size_type
3909 basic_string<_CharT, _Traits, _Allocator>::npos;
3910
3911template<class _CharT, class _Traits, class _Allocator>
Eric Fiselierc3589a82017-01-04 23:56:00 +00003912struct _LIBCPP_TEMPLATE_VIS hash<basic_string<_CharT, _Traits, _Allocator> >
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003913 : public unary_function<basic_string<_CharT, _Traits, _Allocator>, size_t>
3914{
3915 size_t
Howard Hinnanta6119a82011-05-29 19:57:12 +00003916 operator()(const basic_string<_CharT, _Traits, _Allocator>& __val) const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003917};
3918
3919template<class _CharT, class _Traits, class _Allocator>
3920size_t
3921hash<basic_string<_CharT, _Traits, _Allocator> >::operator()(
Howard Hinnanta6119a82011-05-29 19:57:12 +00003922 const basic_string<_CharT, _Traits, _Allocator>& __val) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003923{
Sean Huntaffd9e52011-07-29 23:31:56 +00003924 return __do_string_hash(__val.data(), __val.data() + __val.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003925}
3926
Howard Hinnant464aa5c2011-07-18 15:51:59 +00003927template<class _CharT, class _Traits, class _Allocator>
3928basic_ostream<_CharT, _Traits>&
3929operator<<(basic_ostream<_CharT, _Traits>& __os,
3930 const basic_string<_CharT, _Traits, _Allocator>& __str);
3931
3932template<class _CharT, class _Traits, class _Allocator>
3933basic_istream<_CharT, _Traits>&
3934operator>>(basic_istream<_CharT, _Traits>& __is,
3935 basic_string<_CharT, _Traits, _Allocator>& __str);
3936
3937template<class _CharT, class _Traits, class _Allocator>
3938basic_istream<_CharT, _Traits>&
3939getline(basic_istream<_CharT, _Traits>& __is,
3940 basic_string<_CharT, _Traits, _Allocator>& __str, _CharT __dlm);
3941
3942template<class _CharT, class _Traits, class _Allocator>
3943inline _LIBCPP_INLINE_VISIBILITY
3944basic_istream<_CharT, _Traits>&
3945getline(basic_istream<_CharT, _Traits>& __is,
3946 basic_string<_CharT, _Traits, _Allocator>& __str);
3947
Eric Fiselier3e928972017-04-19 00:28:44 +00003948#ifndef _LIBCPP_CXX03_LANG
Howard Hinnant464aa5c2011-07-18 15:51:59 +00003949
3950template<class _CharT, class _Traits, class _Allocator>
3951inline _LIBCPP_INLINE_VISIBILITY
3952basic_istream<_CharT, _Traits>&
3953getline(basic_istream<_CharT, _Traits>&& __is,
3954 basic_string<_CharT, _Traits, _Allocator>& __str, _CharT __dlm);
3955
3956template<class _CharT, class _Traits, class _Allocator>
3957inline _LIBCPP_INLINE_VISIBILITY
3958basic_istream<_CharT, _Traits>&
3959getline(basic_istream<_CharT, _Traits>&& __is,
3960 basic_string<_CharT, _Traits, _Allocator>& __str);
3961
Eric Fiselier3e928972017-04-19 00:28:44 +00003962#endif // _LIBCPP_CXX03_LANG
Howard Hinnant464aa5c2011-07-18 15:51:59 +00003963
Howard Hinnant499cea12013-08-23 17:37:05 +00003964#if _LIBCPP_DEBUG_LEVEL >= 2
3965
3966template<class _CharT, class _Traits, class _Allocator>
3967bool
3968basic_string<_CharT, _Traits, _Allocator>::__dereferenceable(const const_iterator* __i) const
3969{
3970 return this->data() <= _VSTD::__to_raw_pointer(__i->base()) &&
3971 _VSTD::__to_raw_pointer(__i->base()) < this->data() + this->size();
3972}
3973
3974template<class _CharT, class _Traits, class _Allocator>
3975bool
3976basic_string<_CharT, _Traits, _Allocator>::__decrementable(const const_iterator* __i) const
3977{
3978 return this->data() < _VSTD::__to_raw_pointer(__i->base()) &&
3979 _VSTD::__to_raw_pointer(__i->base()) <= this->data() + this->size();
3980}
3981
3982template<class _CharT, class _Traits, class _Allocator>
3983bool
3984basic_string<_CharT, _Traits, _Allocator>::__addable(const const_iterator* __i, ptrdiff_t __n) const
3985{
3986 const value_type* __p = _VSTD::__to_raw_pointer(__i->base()) + __n;
3987 return this->data() <= __p && __p <= this->data() + this->size();
3988}
3989
3990template<class _CharT, class _Traits, class _Allocator>
3991bool
3992basic_string<_CharT, _Traits, _Allocator>::__subscriptable(const const_iterator* __i, ptrdiff_t __n) const
3993{
3994 const value_type* __p = _VSTD::__to_raw_pointer(__i->base()) + __n;
3995 return this->data() <= __p && __p < this->data() + this->size();
3996}
3997
3998#endif // _LIBCPP_DEBUG_LEVEL >= 2
3999
Shoaib Meenai68506702017-06-29 02:52:46 +00004000_LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS basic_string<char>)
4001_LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS basic_string<wchar_t>)
Shoaib Meenaicd75b282017-07-13 21:35:52 +00004002_LIBCPP_EXTERN_TEMPLATE(_LIBCPP_FUNC_VIS string operator+<char, char_traits<char>, allocator<char> >(char const*, string const&))
Shoaib Meenai68506702017-06-29 02:52:46 +00004003
Marshall Clow15234322013-07-23 17:05:24 +00004004#if _LIBCPP_STD_VER > 11
4005// Literal suffixes for basic_string [basic.string.literals]
Marshall Clow8d9dd7a2013-10-05 21:18:32 +00004006inline namespace literals
Marshall Clow15234322013-07-23 17:05:24 +00004007{
4008 inline namespace string_literals
4009 {
Howard Hinnantab61b2c2013-08-07 19:39:48 +00004010 inline _LIBCPP_INLINE_VISIBILITY
4011 basic_string<char> operator "" s( const char *__str, size_t __len )
4012 {
4013 return basic_string<char> (__str, __len);
4014 }
Marshall Clow15234322013-07-23 17:05:24 +00004015
Howard Hinnantab61b2c2013-08-07 19:39:48 +00004016 inline _LIBCPP_INLINE_VISIBILITY
4017 basic_string<wchar_t> operator "" s( const wchar_t *__str, size_t __len )
4018 {
4019 return basic_string<wchar_t> (__str, __len);
4020 }
Marshall Clow15234322013-07-23 17:05:24 +00004021
Howard Hinnantab61b2c2013-08-07 19:39:48 +00004022 inline _LIBCPP_INLINE_VISIBILITY
4023 basic_string<char16_t> operator "" s( const char16_t *__str, size_t __len )
4024 {
4025 return basic_string<char16_t> (__str, __len);
4026 }
Marshall Clow15234322013-07-23 17:05:24 +00004027
Howard Hinnantab61b2c2013-08-07 19:39:48 +00004028 inline _LIBCPP_INLINE_VISIBILITY
4029 basic_string<char32_t> operator "" s( const char32_t *__str, size_t __len )
4030 {
4031 return basic_string<char32_t> (__str, __len);
4032 }
Marshall Clow15234322013-07-23 17:05:24 +00004033 }
4034}
4035#endif
4036
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004037_LIBCPP_END_NAMESPACE_STD
4038
Eric Fiselier018a3d52017-05-31 22:07:49 +00004039_LIBCPP_POP_MACROS
4040
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004041#endif // _LIBCPP_STRING