blob: 9a85797acaa6a8558bf305b06563b16d8310c5ce [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001// -*- C++ -*-
2//===--------------------------- string -----------------------------------===//
3//
Howard Hinnantf5256e12010-05-11 21:36:01 +00004// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005//
6// This file is distributed under the University of Illinois Open Source
7// License. See LICENSE.TXT for details.
8//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_STRING
12#define _LIBCPP_STRING
13
14/*
15 string synopsis
16
17namespace std
18{
19
20template <class stateT>
21class fpos
22{
23private:
24 stateT st;
25public:
26 fpos(streamoff = streamoff());
27
28 operator streamoff() const;
29
30 stateT state() const;
31 void state(stateT);
32
33 fpos& operator+=(streamoff);
34 fpos operator+ (streamoff) const;
35 fpos& operator-=(streamoff);
36 fpos operator- (streamoff) const;
37};
38
39template <class stateT> streamoff operator-(const fpos<stateT>& x, const fpos<stateT>& y);
40
41template <class stateT> bool operator==(const fpos<stateT>& x, const fpos<stateT>& y);
42template <class stateT> bool operator!=(const fpos<stateT>& x, const fpos<stateT>& y);
43
44template <class charT>
45struct char_traits
46{
47 typedef charT char_type;
48 typedef ... int_type;
49 typedef streamoff off_type;
50 typedef streampos pos_type;
51 typedef mbstate_t state_type;
52
Howard Hinnanta6119a82011-05-29 19:57:12 +000053 static void assign(char_type& c1, const char_type& c2) noexcept;
Howard Hinnant03d71812012-07-20 19:09:12 +000054 static constexpr bool eq(char_type c1, char_type c2) noexcept;
55 static constexpr bool lt(char_type c1, char_type c2) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000056
57 static int compare(const char_type* s1, const char_type* s2, size_t n);
58 static size_t length(const char_type* s);
59 static const char_type* find(const char_type* s, size_t n, const char_type& a);
60 static char_type* move(char_type* s1, const char_type* s2, size_t n);
61 static char_type* copy(char_type* s1, const char_type* s2, size_t n);
62 static char_type* assign(char_type* s, size_t n, char_type a);
63
Howard Hinnant03d71812012-07-20 19:09:12 +000064 static constexpr int_type not_eof(int_type c) noexcept;
65 static constexpr char_type to_char_type(int_type c) noexcept;
66 static constexpr int_type to_int_type(char_type c) noexcept;
67 static constexpr bool eq_int_type(int_type c1, int_type c2) noexcept;
68 static constexpr int_type eof() noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000069};
70
71template <> struct char_traits<char>;
72template <> struct char_traits<wchar_t>;
73
Howard Hinnant324bb032010-08-22 00:02:43 +000074template<class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000075class basic_string
76{
Howard Hinnant324bb032010-08-22 00:02:43 +000077public:
78// types:
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000079 typedef traits traits_type;
80 typedef typename traits_type::char_type value_type;
81 typedef Allocator allocator_type;
82 typedef typename allocator_type::size_type size_type;
83 typedef typename allocator_type::difference_type difference_type;
84 typedef typename allocator_type::reference reference;
85 typedef typename allocator_type::const_reference const_reference;
86 typedef typename allocator_type::pointer pointer;
87 typedef typename allocator_type::const_pointer const_pointer;
88 typedef implementation-defined iterator;
89 typedef implementation-defined const_iterator;
90 typedef std::reverse_iterator<iterator> reverse_iterator;
91 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
92
93 static const size_type npos = -1;
94
Howard Hinnant53f7d4c2011-06-03 18:40:47 +000095 basic_string()
96 noexcept(is_nothrow_default_constructible<allocator_type>::value);
97 explicit basic_string(const allocator_type& a);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000098 basic_string(const basic_string& str);
Howard Hinnant53f7d4c2011-06-03 18:40:47 +000099 basic_string(basic_string&& str)
100 noexcept(is_nothrow_move_constructible<allocator_type>::value);
Marshall Clowf4f7d8f2016-04-07 18:13:41 +0000101 basic_string(const basic_string& str, size_type pos,
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000102 const allocator_type& a = allocator_type());
Marshall Clowf4f7d8f2016-04-07 18:13:41 +0000103 basic_string(const basic_string& str, size_type pos, size_type n,
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000104 const Allocator& a = Allocator());
Marshall Clowdb7fa112016-11-14 18:22:19 +0000105 template<class T>
106 basic_string(const T& t, size_type pos, size_type n, const Allocator& a = Allocator()); // C++17
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000107 explicit basic_string(const basic_string_view<charT, traits> sv, const Allocator& a = Allocator());
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000108 basic_string(const value_type* s, const allocator_type& a = allocator_type());
109 basic_string(const value_type* s, size_type n, const allocator_type& a = allocator_type());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000110 basic_string(size_type n, value_type c, const allocator_type& a = allocator_type());
111 template<class InputIterator>
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000112 basic_string(InputIterator begin, InputIterator end,
113 const allocator_type& a = allocator_type());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000114 basic_string(initializer_list<value_type>, const Allocator& = Allocator());
115 basic_string(const basic_string&, const Allocator&);
116 basic_string(basic_string&&, const Allocator&);
117
118 ~basic_string();
119
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000120 operator basic_string_view<charT, traits>() const noexcept;
121
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000122 basic_string& operator=(const basic_string& str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000123 basic_string& operator=(basic_string_view<charT, traits> sv);
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000124 basic_string& operator=(basic_string&& str)
125 noexcept(
Marshall Clowaf961ed2015-08-18 18:57:00 +0000126 allocator_type::propagate_on_container_move_assignment::value ||
127 allocator_type::is_always_equal::value ); // C++17
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000128 basic_string& operator=(const value_type* s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000129 basic_string& operator=(value_type c);
130 basic_string& operator=(initializer_list<value_type>);
131
Howard Hinnanta6119a82011-05-29 19:57:12 +0000132 iterator begin() noexcept;
133 const_iterator begin() const noexcept;
134 iterator end() noexcept;
135 const_iterator end() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000136
Howard Hinnanta6119a82011-05-29 19:57:12 +0000137 reverse_iterator rbegin() noexcept;
138 const_reverse_iterator rbegin() const noexcept;
139 reverse_iterator rend() noexcept;
140 const_reverse_iterator rend() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000141
Howard Hinnanta6119a82011-05-29 19:57:12 +0000142 const_iterator cbegin() const noexcept;
143 const_iterator cend() const noexcept;
144 const_reverse_iterator crbegin() const noexcept;
145 const_reverse_iterator crend() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000146
Howard Hinnanta6119a82011-05-29 19:57:12 +0000147 size_type size() const noexcept;
148 size_type length() const noexcept;
149 size_type max_size() const noexcept;
150 size_type capacity() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000151
152 void resize(size_type n, value_type c);
153 void resize(size_type n);
154
155 void reserve(size_type res_arg = 0);
156 void shrink_to_fit();
Howard Hinnanta6119a82011-05-29 19:57:12 +0000157 void clear() noexcept;
158 bool empty() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000159
160 const_reference operator[](size_type pos) const;
161 reference operator[](size_type pos);
162
163 const_reference at(size_type n) const;
164 reference at(size_type n);
165
166 basic_string& operator+=(const basic_string& str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000167 basic_string& operator+=(basic_string_view<charT, traits> sv);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000168 basic_string& operator+=(const value_type* s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000169 basic_string& operator+=(value_type c);
170 basic_string& operator+=(initializer_list<value_type>);
171
172 basic_string& append(const basic_string& str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000173 basic_string& append(basic_string_view<charT, traits> sv);
Marshall Clowa93b5e22014-03-04 19:17:19 +0000174 basic_string& append(const basic_string& str, size_type pos, size_type n=npos); //C++14
Marshall Clow6ac8de02016-09-24 22:45:42 +0000175 template <class T>
176 basic_string& append(const T& t, size_type pos, size_type n=npos); // C++17
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000177 basic_string& append(const value_type* s, size_type n);
178 basic_string& append(const value_type* s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000179 basic_string& append(size_type n, value_type c);
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000180 template<class InputIterator>
181 basic_string& append(InputIterator first, InputIterator last);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000182 basic_string& append(initializer_list<value_type>);
183
184 void push_back(value_type c);
185 void pop_back();
186 reference front();
187 const_reference front() const;
188 reference back();
189 const_reference back() const;
190
191 basic_string& assign(const basic_string& str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000192 basic_string& assign(basic_string_view<charT, traits> sv);
Howard Hinnanta6119a82011-05-29 19:57:12 +0000193 basic_string& assign(basic_string&& str);
Marshall Clowa93b5e22014-03-04 19:17:19 +0000194 basic_string& assign(const basic_string& str, size_type pos, size_type n=npos); // C++14
Marshall Clow6ac8de02016-09-24 22:45:42 +0000195 template <class T>
196 basic_string& assign(const T& t, size_type pos, size_type n=npos); // C++17
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000197 basic_string& assign(const value_type* s, size_type n);
198 basic_string& assign(const value_type* s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000199 basic_string& assign(size_type n, value_type c);
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000200 template<class InputIterator>
201 basic_string& assign(InputIterator first, InputIterator last);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000202 basic_string& assign(initializer_list<value_type>);
203
204 basic_string& insert(size_type pos1, const basic_string& str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000205 basic_string& insert(size_type pos1, basic_string_view<charT, traits> sv);
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000206 basic_string& insert(size_type pos1, const basic_string& str,
207 size_type pos2, size_type n);
Marshall Clow6ac8de02016-09-24 22:45:42 +0000208 template <class T>
209 basic_string& insert(size_type pos1, const T& t, size_type pos2, size_type n); // C++17
Marshall Clowa93b5e22014-03-04 19:17:19 +0000210 basic_string& insert(size_type pos, const value_type* s, size_type n=npos); //C++14
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000211 basic_string& insert(size_type pos, const value_type* s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000212 basic_string& insert(size_type pos, size_type n, value_type c);
213 iterator insert(const_iterator p, value_type c);
214 iterator insert(const_iterator p, size_type n, value_type c);
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000215 template<class InputIterator>
216 iterator insert(const_iterator p, InputIterator first, InputIterator last);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000217 iterator insert(const_iterator p, initializer_list<value_type>);
218
219 basic_string& erase(size_type pos = 0, size_type n = npos);
220 iterator erase(const_iterator position);
221 iterator erase(const_iterator first, const_iterator last);
222
223 basic_string& replace(size_type pos1, size_type n1, const basic_string& str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000224 basic_string& replace(size_type pos1, size_type n1, basic_string_view<charT, traits> sv);
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000225 basic_string& replace(size_type pos1, size_type n1, const basic_string& str,
Marshall Clowa93b5e22014-03-04 19:17:19 +0000226 size_type pos2, size_type n2=npos); // C++14
Marshall Clow6ac8de02016-09-24 22:45:42 +0000227 template <class T>
228 basic_string& replace(size_type pos1, size_type n1, const T& t,
229 size_type pos2, size_type n); // C++17
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000230 basic_string& replace(size_type pos, size_type n1, const value_type* s, size_type n2);
231 basic_string& replace(size_type pos, size_type n1, const value_type* s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000232 basic_string& replace(size_type pos, size_type n1, size_type n2, value_type c);
Howard Hinnant7b2cb482010-11-17 21:11:40 +0000233 basic_string& replace(const_iterator i1, const_iterator i2, const basic_string& str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000234 basic_string& replace(const_iterator i1, const_iterator i2, basic_string_view<charT, traits> sv);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000235 basic_string& replace(const_iterator i1, const_iterator i2, const value_type* s, size_type n);
236 basic_string& replace(const_iterator i1, const_iterator i2, const value_type* s);
Howard Hinnant7b2cb482010-11-17 21:11:40 +0000237 basic_string& replace(const_iterator i1, const_iterator i2, size_type n, value_type c);
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000238 template<class InputIterator>
Howard Hinnant7b2cb482010-11-17 21:11:40 +0000239 basic_string& replace(const_iterator i1, const_iterator i2, InputIterator j1, InputIterator j2);
240 basic_string& replace(const_iterator i1, const_iterator i2, initializer_list<value_type>);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000241
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000242 size_type copy(value_type* s, size_type n, size_type pos = 0) const;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000243 basic_string substr(size_type pos = 0, size_type n = npos) const;
244
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000245 void swap(basic_string& str)
Marshall Clow7d914d12015-07-13 20:04:56 +0000246 noexcept(allocator_traits<allocator_type>::propagate_on_container_swap::value ||
247 allocator_traits<allocator_type>::is_always_equal::value); // C++17
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000248
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000249 const value_type* c_str() const noexcept;
250 const value_type* data() const noexcept;
Marshall Clowf532a702016-03-08 15:44:30 +0000251 value_type* data() noexcept; // C++17
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000252
Howard Hinnanta6119a82011-05-29 19:57:12 +0000253 allocator_type get_allocator() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000254
Howard Hinnanta6119a82011-05-29 19:57:12 +0000255 size_type find(const basic_string& str, size_type pos = 0) const noexcept;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000256 size_type find(basic_string_view<charT, traits> sv, size_type pos = 0) const noexcept;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000257 size_type find(const value_type* s, size_type pos, size_type n) const noexcept;
258 size_type find(const value_type* s, size_type pos = 0) const noexcept;
Howard Hinnanta6119a82011-05-29 19:57:12 +0000259 size_type find(value_type c, size_type pos = 0) const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000260
Howard Hinnanta6119a82011-05-29 19:57:12 +0000261 size_type rfind(const basic_string& str, size_type pos = npos) const noexcept;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000262 size_type ffind(basic_string_view<charT, traits> sv, size_type pos = 0) const noexcept;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000263 size_type rfind(const value_type* s, size_type pos, size_type n) const noexcept;
264 size_type rfind(const value_type* s, size_type pos = npos) const noexcept;
Howard Hinnanta6119a82011-05-29 19:57:12 +0000265 size_type rfind(value_type c, size_type pos = npos) const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000266
Howard Hinnanta6119a82011-05-29 19:57:12 +0000267 size_type find_first_of(const basic_string& str, size_type pos = 0) const noexcept;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000268 size_type find_first_of(basic_string_view<charT, traits> sv, size_type pos = 0) const noexcept;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000269 size_type find_first_of(const value_type* s, size_type pos, size_type n) const noexcept;
270 size_type find_first_of(const value_type* s, size_type pos = 0) const noexcept;
Howard Hinnanta6119a82011-05-29 19:57:12 +0000271 size_type find_first_of(value_type c, size_type pos = 0) const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000272
Howard Hinnanta6119a82011-05-29 19:57:12 +0000273 size_type find_last_of(const basic_string& str, size_type pos = npos) const noexcept;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000274 size_type find_last_of(basic_string_view<charT, traits> sv, size_type pos = 0) const noexcept;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000275 size_type find_last_of(const value_type* s, size_type pos, size_type n) const noexcept;
276 size_type find_last_of(const value_type* s, size_type pos = npos) const noexcept;
Howard Hinnanta6119a82011-05-29 19:57:12 +0000277 size_type find_last_of(value_type c, size_type pos = npos) const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000278
Howard Hinnanta6119a82011-05-29 19:57:12 +0000279 size_type find_first_not_of(const basic_string& str, size_type pos = 0) const noexcept;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000280 size_type find_first_not_of(basic_string_view<charT, traits> sv, size_type pos = 0) const noexcept;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000281 size_type find_first_not_of(const value_type* s, size_type pos, size_type n) const noexcept;
282 size_type find_first_not_of(const value_type* s, size_type pos = 0) const noexcept;
Howard Hinnanta6119a82011-05-29 19:57:12 +0000283 size_type find_first_not_of(value_type c, size_type pos = 0) const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000284
Howard Hinnanta6119a82011-05-29 19:57:12 +0000285 size_type find_last_not_of(const basic_string& str, size_type pos = npos) const noexcept;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000286 size_type find_last_not_of(basic_string_view<charT, traits> sv, size_type pos = 0) const noexcept;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000287 size_type find_last_not_of(const value_type* s, size_type pos, size_type n) const noexcept;
288 size_type find_last_not_of(const value_type* s, size_type pos = npos) const noexcept;
Howard Hinnanta6119a82011-05-29 19:57:12 +0000289 size_type find_last_not_of(value_type c, size_type pos = npos) const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000290
Howard Hinnanta6119a82011-05-29 19:57:12 +0000291 int compare(const basic_string& str) const noexcept;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000292 int compare(basic_string_view<charT, traits> sv) const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000293 int compare(size_type pos1, size_type n1, const basic_string& str) const;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000294 int compare(size_type pos1, size_type n1, basic_string_view<charT, traits> sv) const;
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000295 int compare(size_type pos1, size_type n1, const basic_string& str,
Marshall Clowa93b5e22014-03-04 19:17:19 +0000296 size_type pos2, size_type n2=npos) const; // C++14
Marshall Clow6ac8de02016-09-24 22:45:42 +0000297 template <class T>
298 int compare(size_type pos1, size_type n1, const T& t,
299 size_type pos2, size_type n2=npos) const; // C++17
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000300 int compare(const value_type* s) const noexcept;
301 int compare(size_type pos1, size_type n1, const value_type* s) const;
302 int compare(size_type pos1, size_type n1, const value_type* s, size_type n2) const;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000303
304 bool __invariants() const;
305};
306
307template<class charT, class traits, class Allocator>
308basic_string<charT, traits, Allocator>
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000309operator+(const basic_string<charT, traits, Allocator>& lhs,
310 const basic_string<charT, traits, Allocator>& rhs);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000311
312template<class charT, class traits, class Allocator>
313basic_string<charT, traits, Allocator>
314operator+(const charT* lhs , const basic_string<charT,traits,Allocator>&rhs);
315
316template<class charT, class traits, class Allocator>
317basic_string<charT, traits, Allocator>
318operator+(charT lhs, const basic_string<charT,traits,Allocator>& rhs);
319
320template<class charT, class traits, class Allocator>
321basic_string<charT, traits, Allocator>
322operator+(const basic_string<charT, traits, Allocator>& lhs, const charT* rhs);
323
324template<class charT, class traits, class Allocator>
325basic_string<charT, traits, Allocator>
326operator+(const basic_string<charT, traits, Allocator>& lhs, charT rhs);
327
328template<class charT, class traits, class Allocator>
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000329bool operator==(const basic_string<charT, traits, Allocator>& lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +0000330 const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000331
332template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000333bool operator==(const charT* lhs, const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000334
335template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000336bool operator==(const basic_string<charT,traits,Allocator>& lhs, const charT* rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000337
Howard Hinnant324bb032010-08-22 00:02:43 +0000338template<class charT, class traits, class Allocator>
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000339bool operator!=(const basic_string<charT,traits,Allocator>& lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +0000340 const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000341
342template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000343bool operator!=(const charT* lhs, const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000344
345template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000346bool operator!=(const basic_string<charT, traits, Allocator>& lhs, const charT* rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000347
348template<class charT, class traits, class Allocator>
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000349bool operator< (const basic_string<charT, traits, Allocator>& lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +0000350 const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000351
352template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000353bool operator< (const basic_string<charT, traits, Allocator>& lhs, const charT* rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000354
355template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000356bool operator< (const charT* lhs, const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000357
358template<class charT, class traits, class Allocator>
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000359bool operator> (const basic_string<charT, traits, Allocator>& lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +0000360 const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000361
362template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000363bool operator> (const basic_string<charT, traits, Allocator>& lhs, const charT* rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000364
365template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000366bool operator> (const charT* lhs, const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000367
368template<class charT, class traits, class Allocator>
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000369bool operator<=(const basic_string<charT, traits, Allocator>& lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +0000370 const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000371
372template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000373bool operator<=(const basic_string<charT, traits, Allocator>& lhs, const charT* rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000374
375template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000376bool operator<=(const charT* lhs, const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000377
378template<class charT, class traits, class Allocator>
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000379bool operator>=(const basic_string<charT, traits, Allocator>& lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +0000380 const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000381
382template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000383bool operator>=(const basic_string<charT, traits, Allocator>& lhs, const charT* rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000384
385template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000386bool operator>=(const charT* lhs, const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000387
388template<class charT, class traits, class Allocator>
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000389void swap(basic_string<charT, traits, Allocator>& lhs,
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000390 basic_string<charT, traits, Allocator>& rhs)
391 noexcept(noexcept(lhs.swap(rhs)));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000392
393template<class charT, class traits, class Allocator>
394basic_istream<charT, traits>&
395operator>>(basic_istream<charT, traits>& is, basic_string<charT, traits, Allocator>& str);
396
397template<class charT, class traits, class Allocator>
398basic_ostream<charT, traits>&
399operator<<(basic_ostream<charT, traits>& os, const basic_string<charT, traits, Allocator>& str);
400
401template<class charT, class traits, class Allocator>
Howard Hinnant324bb032010-08-22 00:02:43 +0000402basic_istream<charT, traits>&
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000403getline(basic_istream<charT, traits>& is, basic_string<charT, traits, Allocator>& str,
404 charT delim);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000405
406template<class charT, class traits, class Allocator>
407basic_istream<charT, traits>&
408getline(basic_istream<charT, traits>& is, basic_string<charT, traits, Allocator>& str);
409
410typedef basic_string<char> string;
411typedef basic_string<wchar_t> wstring;
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000412typedef basic_string<char16_t> u16string;
413typedef basic_string<char32_t> u32string;
414
415int stoi (const string& str, size_t* idx = 0, int base = 10);
416long stol (const string& str, size_t* idx = 0, int base = 10);
417unsigned long stoul (const string& str, size_t* idx = 0, int base = 10);
418long long stoll (const string& str, size_t* idx = 0, int base = 10);
419unsigned long long stoull(const string& str, size_t* idx = 0, int base = 10);
420
421float stof (const string& str, size_t* idx = 0);
422double stod (const string& str, size_t* idx = 0);
423long double stold(const string& str, size_t* idx = 0);
424
425string to_string(int val);
426string to_string(unsigned val);
427string to_string(long val);
428string to_string(unsigned long val);
429string to_string(long long val);
430string to_string(unsigned long long val);
431string to_string(float val);
432string to_string(double val);
433string to_string(long double val);
434
435int stoi (const wstring& str, size_t* idx = 0, int base = 10);
436long stol (const wstring& str, size_t* idx = 0, int base = 10);
437unsigned long stoul (const wstring& str, size_t* idx = 0, int base = 10);
438long long stoll (const wstring& str, size_t* idx = 0, int base = 10);
439unsigned long long stoull(const wstring& str, size_t* idx = 0, int base = 10);
440
441float stof (const wstring& str, size_t* idx = 0);
442double stod (const wstring& str, size_t* idx = 0);
443long double stold(const wstring& str, size_t* idx = 0);
444
445wstring to_wstring(int val);
446wstring to_wstring(unsigned val);
447wstring to_wstring(long val);
448wstring to_wstring(unsigned long val);
449wstring to_wstring(long long val);
450wstring to_wstring(unsigned long long val);
451wstring to_wstring(float val);
452wstring to_wstring(double val);
453wstring to_wstring(long double val);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000454
455template <> struct hash<string>;
456template <> struct hash<u16string>;
457template <> struct hash<u32string>;
458template <> struct hash<wstring>;
459
Marshall Clow15234322013-07-23 17:05:24 +0000460basic_string<char> operator "" s( const char *str, size_t len ); // C++14
461basic_string<wchar_t> operator "" s( const wchar_t *str, size_t len ); // C++14
462basic_string<char16_t> operator "" s( const char16_t *str, size_t len ); // C++14
463basic_string<char32_t> operator "" s( const char32_t *str, size_t len ); // C++14
464
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000465} // std
466
467*/
468
469#include <__config>
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000470#include <string_view>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000471#include <iosfwd>
472#include <cstring>
Howard Hinnantadff4892010-05-24 17:49:41 +0000473#include <cstdio> // For EOF.
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000474#include <cwchar>
475#include <algorithm>
476#include <iterator>
477#include <utility>
478#include <memory>
479#include <stdexcept>
480#include <type_traits>
481#include <initializer_list>
482#include <__functional_base>
483#ifndef _LIBCPP_HAS_NO_UNICODE_CHARS
484#include <cstdint>
485#endif
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000486
Howard Hinnant66c6f972011-11-29 16:45:27 +0000487#include <__undef_min_max>
488
Eric Fiselierb9536102014-08-10 23:53:08 +0000489#include <__debug>
490
Howard Hinnant08e17472011-10-17 20:05:10 +0000491#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000492#pragma GCC system_header
Howard Hinnant08e17472011-10-17 20:05:10 +0000493#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000494
495_LIBCPP_BEGIN_NAMESPACE_STD
496
497// fpos
498
499template <class _StateT>
Eric Fiselierc3589a82017-01-04 23:56:00 +0000500class _LIBCPP_TEMPLATE_VIS fpos
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000501{
502private:
503 _StateT __st_;
504 streamoff __off_;
505public:
506 _LIBCPP_INLINE_VISIBILITY fpos(streamoff __off = streamoff()) : __st_(), __off_(__off) {}
507
508 _LIBCPP_INLINE_VISIBILITY operator streamoff() const {return __off_;}
509
510 _LIBCPP_INLINE_VISIBILITY _StateT state() const {return __st_;}
511 _LIBCPP_INLINE_VISIBILITY void state(_StateT __st) {__st_ = __st;}
512
513 _LIBCPP_INLINE_VISIBILITY fpos& operator+=(streamoff __off) {__off_ += __off; return *this;}
514 _LIBCPP_INLINE_VISIBILITY fpos operator+ (streamoff __off) const {fpos __t(*this); __t += __off; return __t;}
515 _LIBCPP_INLINE_VISIBILITY fpos& operator-=(streamoff __off) {__off_ -= __off; return *this;}
516 _LIBCPP_INLINE_VISIBILITY fpos operator- (streamoff __off) const {fpos __t(*this); __t -= __off; return __t;}
517};
518
519template <class _StateT>
520inline _LIBCPP_INLINE_VISIBILITY
521streamoff operator-(const fpos<_StateT>& __x, const fpos<_StateT>& __y)
522 {return streamoff(__x) - streamoff(__y);}
523
524template <class _StateT>
525inline _LIBCPP_INLINE_VISIBILITY
526bool operator==(const fpos<_StateT>& __x, const fpos<_StateT>& __y)
527 {return streamoff(__x) == streamoff(__y);}
528
529template <class _StateT>
530inline _LIBCPP_INLINE_VISIBILITY
531bool operator!=(const fpos<_StateT>& __x, const fpos<_StateT>& __y)
532 {return streamoff(__x) != streamoff(__y);}
533
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000534// basic_string
535
536template<class _CharT, class _Traits, class _Allocator>
537basic_string<_CharT, _Traits, _Allocator>
Howard Hinnant2b1b2d42011-06-14 19:58:17 +0000538operator+(const basic_string<_CharT, _Traits, _Allocator>& __x,
539 const basic_string<_CharT, _Traits, _Allocator>& __y);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000540
541template<class _CharT, class _Traits, class _Allocator>
542basic_string<_CharT, _Traits, _Allocator>
Howard Hinnant2b1b2d42011-06-14 19:58:17 +0000543operator+(const _CharT* __x, const basic_string<_CharT,_Traits,_Allocator>& __y);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000544
545template<class _CharT, class _Traits, class _Allocator>
546basic_string<_CharT, _Traits, _Allocator>
Howard Hinnant2b1b2d42011-06-14 19:58:17 +0000547operator+(_CharT __x, const basic_string<_CharT,_Traits,_Allocator>& __y);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000548
549template<class _CharT, class _Traits, class _Allocator>
550basic_string<_CharT, _Traits, _Allocator>
Howard Hinnant2b1b2d42011-06-14 19:58:17 +0000551operator+(const basic_string<_CharT, _Traits, _Allocator>& __x, const _CharT* __y);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000552
553template<class _CharT, class _Traits, class _Allocator>
554basic_string<_CharT, _Traits, _Allocator>
Howard Hinnant2b1b2d42011-06-14 19:58:17 +0000555operator+(const basic_string<_CharT, _Traits, _Allocator>& __x, _CharT __y);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000556
557template <bool>
Eric Fiselierc3589a82017-01-04 23:56:00 +0000558class _LIBCPP_TEMPLATE_VIS __basic_string_common
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000559{
560protected:
Marshall Clow14c09a22016-08-25 15:09:01 +0000561 _LIBCPP_NORETURN void __throw_length_error() const;
562 _LIBCPP_NORETURN void __throw_out_of_range() const;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000563};
564
565template <bool __b>
566void
567__basic_string_common<__b>::__throw_length_error() const
568{
Marshall Clow14c09a22016-08-25 15:09:01 +0000569 _VSTD::__throw_length_error("basic_string");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000570}
571
572template <bool __b>
573void
574__basic_string_common<__b>::__throw_out_of_range() const
575{
Marshall Clow14c09a22016-08-25 15:09:01 +0000576 _VSTD::__throw_out_of_range("basic_string");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000577}
578
Howard Hinnante9df0a52013-08-01 18:17:34 +0000579#ifdef _LIBCPP_MSVC
Howard Hinnant78b68282011-10-22 20:59:45 +0000580#pragma warning( push )
581#pragma warning( disable: 4231 )
Howard Hinnante9df0a52013-08-01 18:17:34 +0000582#endif // _LIBCPP_MSVC
Eric Fiselier833d6442016-09-15 22:27:07 +0000583_LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS __basic_string_common<true>)
Howard Hinnante9df0a52013-08-01 18:17:34 +0000584#ifdef _LIBCPP_MSVC
Howard Hinnant78b68282011-10-22 20:59:45 +0000585#pragma warning( pop )
Howard Hinnante9df0a52013-08-01 18:17:34 +0000586#endif // _LIBCPP_MSVC
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000587
Marshall Clowdf9db312016-01-13 21:54:34 +0000588#ifdef _LIBCPP_NO_EXCEPTIONS
589template <class _Iter>
590struct __libcpp_string_gets_noexcept_iterator_impl : public true_type {};
591#elif defined(_LIBCPP_HAS_NO_NOEXCEPT)
592template <class _Iter>
593struct __libcpp_string_gets_noexcept_iterator_impl : public false_type {};
594#else
595template <class _Iter, bool = __is_forward_iterator<_Iter>::value>
596struct __libcpp_string_gets_noexcept_iterator_impl : public _LIBCPP_BOOL_CONSTANT((
597 noexcept(++(declval<_Iter&>())) &&
598 is_nothrow_assignable<_Iter&, _Iter>::value &&
599 noexcept(declval<_Iter>() == declval<_Iter>()) &&
600 noexcept(*declval<_Iter>())
601)) {};
602
603template <class _Iter>
604struct __libcpp_string_gets_noexcept_iterator_impl<_Iter, false> : public false_type {};
605#endif
606
607
608template <class _Iter>
609struct __libcpp_string_gets_noexcept_iterator
610 : public _LIBCPP_BOOL_CONSTANT(__libcpp_is_trivial_iterator<_Iter>::value || __libcpp_string_gets_noexcept_iterator_impl<_Iter>::value) {};
611
Marshall Clow6ac8de02016-09-24 22:45:42 +0000612template <class _CharT, class _Traits, class _Tp>
613struct __can_be_converted_to_string_view : public _LIBCPP_BOOL_CONSTANT(
614 ( is_convertible<const _Tp&, basic_string_view<_CharT, _Traits> >::value &&
615 !is_convertible<const _Tp&, const _CharT*>::value)) {};
616
Evgeniy Stepanov4f01aa82015-10-13 23:48:28 +0000617#ifdef _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Howard Hinnant15467182013-04-30 21:44:48 +0000618
619template <class _CharT, size_t = sizeof(_CharT)>
620struct __padding
621{
622 unsigned char __xx[sizeof(_CharT)-1];
623};
624
625template <class _CharT>
626struct __padding<_CharT, 1>
627{
628};
629
Evgeniy Stepanov4f01aa82015-10-13 23:48:28 +0000630#endif // _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Howard Hinnant15467182013-04-30 21:44:48 +0000631
Howard Hinnant324bb032010-08-22 00:02:43 +0000632template<class _CharT, class _Traits, class _Allocator>
Eric Fiselierc3589a82017-01-04 23:56:00 +0000633class _LIBCPP_TEMPLATE_VIS basic_string
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000634 : private __basic_string_common<true>
635{
636public:
637 typedef basic_string __self;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000638 typedef basic_string_view<_CharT, _Traits> __self_view;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000639 typedef _Traits traits_type;
640 typedef typename traits_type::char_type value_type;
641 typedef _Allocator allocator_type;
Howard Hinnante32b5e22010-11-17 17:55:08 +0000642 typedef allocator_traits<allocator_type> __alloc_traits;
643 typedef typename __alloc_traits::size_type size_type;
644 typedef typename __alloc_traits::difference_type difference_type;
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000645 typedef value_type& reference;
646 typedef const value_type& const_reference;
Howard Hinnante32b5e22010-11-17 17:55:08 +0000647 typedef typename __alloc_traits::pointer pointer;
648 typedef typename __alloc_traits::const_pointer const_pointer;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000649
Howard Hinnant499cea12013-08-23 17:37:05 +0000650 static_assert(is_pod<value_type>::value, "Character type of basic_string must be a POD");
651 static_assert((is_same<_CharT, value_type>::value),
652 "traits_type::char_type must be the same type as CharT");
653 static_assert((is_same<typename allocator_type::value_type, value_type>::value),
654 "Allocator::value_type must be same type as value_type");
655#if defined(_LIBCPP_RAW_ITERATORS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000656 typedef pointer iterator;
657 typedef const_pointer const_iterator;
Howard Hinnant324bb032010-08-22 00:02:43 +0000658#else // defined(_LIBCPP_RAW_ITERATORS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000659 typedef __wrap_iter<pointer> iterator;
660 typedef __wrap_iter<const_pointer> const_iterator;
Howard Hinnant324bb032010-08-22 00:02:43 +0000661#endif // defined(_LIBCPP_RAW_ITERATORS)
Howard Hinnant0949eed2011-06-30 21:18:19 +0000662 typedef _VSTD::reverse_iterator<iterator> reverse_iterator;
663 typedef _VSTD::reverse_iterator<const_iterator> const_reverse_iterator;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000664
665private:
Howard Hinnant15467182013-04-30 21:44:48 +0000666
Evgeniy Stepanov4f01aa82015-10-13 23:48:28 +0000667#ifdef _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Howard Hinnant15467182013-04-30 21:44:48 +0000668
669 struct __long
670 {
671 pointer __data_;
672 size_type __size_;
673 size_type __cap_;
674 };
675
676#if _LIBCPP_BIG_ENDIAN
677 enum {__short_mask = 0x01};
678 enum {__long_mask = 0x1ul};
679#else // _LIBCPP_BIG_ENDIAN
680 enum {__short_mask = 0x80};
681 enum {__long_mask = ~(size_type(~0) >> 1)};
682#endif // _LIBCPP_BIG_ENDIAN
683
684 enum {__min_cap = (sizeof(__long) - 1)/sizeof(value_type) > 2 ?
685 (sizeof(__long) - 1)/sizeof(value_type) : 2};
686
687 struct __short
688 {
689 value_type __data_[__min_cap];
690 struct
691 : __padding<value_type>
692 {
693 unsigned char __size_;
694 };
695 };
696
697#else
698
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000699 struct __long
700 {
701 size_type __cap_;
702 size_type __size_;
703 pointer __data_;
704 };
705
706#if _LIBCPP_BIG_ENDIAN
707 enum {__short_mask = 0x80};
708 enum {__long_mask = ~(size_type(~0) >> 1)};
Howard Hinnant324bb032010-08-22 00:02:43 +0000709#else // _LIBCPP_BIG_ENDIAN
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000710 enum {__short_mask = 0x01};
Howard Hinnantec3773c2011-12-01 20:21:04 +0000711 enum {__long_mask = 0x1ul};
Howard Hinnant324bb032010-08-22 00:02:43 +0000712#endif // _LIBCPP_BIG_ENDIAN
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000713
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000714 enum {__min_cap = (sizeof(__long) - 1)/sizeof(value_type) > 2 ?
715 (sizeof(__long) - 1)/sizeof(value_type) : 2};
716
717 struct __short
718 {
719 union
720 {
721 unsigned char __size_;
Howard Hinnant9c0df142012-10-30 19:06:59 +0000722 value_type __lx;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000723 };
724 value_type __data_[__min_cap];
725 };
726
Evgeniy Stepanov4f01aa82015-10-13 23:48:28 +0000727#endif // _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Howard Hinnant15467182013-04-30 21:44:48 +0000728
Howard Hinnant499cea12013-08-23 17:37:05 +0000729 union __ulx{__long __lx; __short __lxx;};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000730
Howard Hinnant499cea12013-08-23 17:37:05 +0000731 enum {__n_words = sizeof(__ulx) / sizeof(size_type)};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000732
733 struct __raw
734 {
735 size_type __words[__n_words];
736 };
737
738 struct __rep
739 {
740 union
741 {
742 __long __l;
743 __short __s;
744 __raw __r;
745 };
746 };
747
748 __compressed_pair<__rep, allocator_type> __r_;
749
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000750public:
751 static const size_type npos = -1;
752
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000753 _LIBCPP_INLINE_VISIBILITY basic_string()
754 _NOEXCEPT_(is_nothrow_default_constructible<allocator_type>::value);
Marshall Clow7b193f72015-06-03 19:56:43 +0000755
756 _LIBCPP_INLINE_VISIBILITY explicit basic_string(const allocator_type& __a)
757#if _LIBCPP_STD_VER <= 14
758 _NOEXCEPT_(is_nothrow_copy_constructible<allocator_type>::value);
759#else
760 _NOEXCEPT;
761#endif
762
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000763 basic_string(const basic_string& __str);
764 basic_string(const basic_string& __str, const allocator_type& __a);
Marshall Clow7b193f72015-06-03 19:56:43 +0000765
Howard Hinnant73d21a42010-09-04 23:28:19 +0000766#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant9f193f22011-01-26 00:06:59 +0000767 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000768 basic_string(basic_string&& __str)
Marshall Clow7b193f72015-06-03 19:56:43 +0000769#if _LIBCPP_STD_VER <= 14
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000770 _NOEXCEPT_(is_nothrow_move_constructible<allocator_type>::value);
Marshall Clow7b193f72015-06-03 19:56:43 +0000771#else
772 _NOEXCEPT;
773#endif
774
Howard Hinnant9f193f22011-01-26 00:06:59 +0000775 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000776 basic_string(basic_string&& __str, const allocator_type& __a);
Howard Hinnant73d21a42010-09-04 23:28:19 +0000777#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000778 _LIBCPP_INLINE_VISIBILITY basic_string(const value_type* __s);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000779 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000780 basic_string(const value_type* __s, const allocator_type& __a);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000781 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000782 basic_string(const value_type* __s, size_type __n);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000783 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000784 basic_string(const value_type* __s, size_type __n, const allocator_type& __a);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000785 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000786 basic_string(size_type __n, value_type __c);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000787 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000788 basic_string(size_type __n, value_type __c, const allocator_type& __a);
Marshall Clowf4f7d8f2016-04-07 18:13:41 +0000789 basic_string(const basic_string& __str, size_type __pos, size_type __n,
790 const allocator_type& __a = allocator_type());
791 _LIBCPP_INLINE_VISIBILITY
792 basic_string(const basic_string& __str, size_type __pos,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000793 const allocator_type& __a = allocator_type());
Marshall Clowdb7fa112016-11-14 18:22:19 +0000794 template<class _Tp>
795 basic_string(const _Tp& __t, size_type __pos, size_type __n,
796 const allocator_type& __a = allocator_type(),
797 typename enable_if<__can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value, void>::type* = 0);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000798 _LIBCPP_INLINE_VISIBILITY explicit
799 basic_string(__self_view __sv);
800 _LIBCPP_INLINE_VISIBILITY
801 basic_string(__self_view __sv, const allocator_type& __a);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000802 template<class _InputIterator>
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000803 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000804 basic_string(_InputIterator __first, _InputIterator __last);
805 template<class _InputIterator>
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000806 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000807 basic_string(_InputIterator __first, _InputIterator __last, const allocator_type& __a);
Howard Hinnante3e32912011-08-12 21:56:02 +0000808#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000809 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000810 basic_string(initializer_list<value_type> __il);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000811 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000812 basic_string(initializer_list<value_type> __il, const allocator_type& __a);
Howard Hinnante3e32912011-08-12 21:56:02 +0000813#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000814
Eric Fiselier51eb1d52016-10-31 03:42:50 +0000815 inline ~basic_string();
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000816
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000817 _LIBCPP_INLINE_VISIBILITY
818 operator __self_view() const _NOEXCEPT { return __self_view(data(), size()); }
819
Howard Hinnante32b5e22010-11-17 17:55:08 +0000820 basic_string& operator=(const basic_string& __str);
Eric Fiselierf472d6c2017-01-23 21:24:58 +0000821
822#ifndef _LIBCPP_CXX03_LANG
Eric Fiselier37b2be92017-01-17 22:10:32 +0000823 template <class = void>
Eric Fiselierf472d6c2017-01-23 21:24:58 +0000824#endif
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000825 _LIBCPP_INLINE_VISIBILITY
826 basic_string& operator=(__self_view __sv) {return assign(__sv);}
Howard Hinnant73d21a42010-09-04 23:28:19 +0000827#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000828 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000829 basic_string& operator=(basic_string&& __str)
Marshall Clowaf961ed2015-08-18 18:57:00 +0000830 _NOEXCEPT_((__noexcept_move_assign_container<_Allocator, __alloc_traits>::value));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000831#endif
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000832 _LIBCPP_INLINE_VISIBILITY basic_string& operator=(const value_type* __s) {return assign(__s);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000833 basic_string& operator=(value_type __c);
Howard Hinnante3e32912011-08-12 21:56:02 +0000834#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnant8d7a9552010-09-23 17:31:07 +0000835 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000836 basic_string& operator=(initializer_list<value_type> __il) {return assign(__il.begin(), __il.size());}
Howard Hinnante3e32912011-08-12 21:56:02 +0000837#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000838
Howard Hinnant499cea12013-08-23 17:37:05 +0000839#if _LIBCPP_DEBUG_LEVEL >= 2
840 _LIBCPP_INLINE_VISIBILITY
841 iterator begin() _NOEXCEPT
842 {return iterator(this, __get_pointer());}
843 _LIBCPP_INLINE_VISIBILITY
844 const_iterator begin() const _NOEXCEPT
845 {return const_iterator(this, __get_pointer());}
846 _LIBCPP_INLINE_VISIBILITY
847 iterator end() _NOEXCEPT
848 {return iterator(this, __get_pointer() + size());}
849 _LIBCPP_INLINE_VISIBILITY
850 const_iterator end() const _NOEXCEPT
851 {return const_iterator(this, __get_pointer() + size());}
852#else
Howard Hinnanta6119a82011-05-29 19:57:12 +0000853 _LIBCPP_INLINE_VISIBILITY
854 iterator begin() _NOEXCEPT
855 {return iterator(__get_pointer());}
856 _LIBCPP_INLINE_VISIBILITY
857 const_iterator begin() const _NOEXCEPT
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000858 {return const_iterator(__get_pointer());}
Howard Hinnanta6119a82011-05-29 19:57:12 +0000859 _LIBCPP_INLINE_VISIBILITY
860 iterator end() _NOEXCEPT
861 {return iterator(__get_pointer() + size());}
862 _LIBCPP_INLINE_VISIBILITY
863 const_iterator end() const _NOEXCEPT
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000864 {return const_iterator(__get_pointer() + size());}
Howard Hinnant499cea12013-08-23 17:37:05 +0000865#endif // _LIBCPP_DEBUG_LEVEL >= 2
Howard Hinnanta6119a82011-05-29 19:57:12 +0000866 _LIBCPP_INLINE_VISIBILITY
867 reverse_iterator rbegin() _NOEXCEPT
868 {return reverse_iterator(end());}
869 _LIBCPP_INLINE_VISIBILITY
870 const_reverse_iterator rbegin() const _NOEXCEPT
871 {return const_reverse_iterator(end());}
872 _LIBCPP_INLINE_VISIBILITY
873 reverse_iterator rend() _NOEXCEPT
874 {return reverse_iterator(begin());}
875 _LIBCPP_INLINE_VISIBILITY
876 const_reverse_iterator rend() const _NOEXCEPT
877 {return const_reverse_iterator(begin());}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000878
Howard Hinnanta6119a82011-05-29 19:57:12 +0000879 _LIBCPP_INLINE_VISIBILITY
880 const_iterator cbegin() const _NOEXCEPT
881 {return begin();}
882 _LIBCPP_INLINE_VISIBILITY
883 const_iterator cend() const _NOEXCEPT
884 {return end();}
885 _LIBCPP_INLINE_VISIBILITY
886 const_reverse_iterator crbegin() const _NOEXCEPT
887 {return rbegin();}
888 _LIBCPP_INLINE_VISIBILITY
889 const_reverse_iterator crend() const _NOEXCEPT
890 {return rend();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000891
Howard Hinnanta6119a82011-05-29 19:57:12 +0000892 _LIBCPP_INLINE_VISIBILITY size_type size() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000893 {return __is_long() ? __get_long_size() : __get_short_size();}
Howard Hinnanta6119a82011-05-29 19:57:12 +0000894 _LIBCPP_INLINE_VISIBILITY size_type length() const _NOEXCEPT {return size();}
895 _LIBCPP_INLINE_VISIBILITY size_type max_size() const _NOEXCEPT;
896 _LIBCPP_INLINE_VISIBILITY size_type capacity() const _NOEXCEPT
Eric Fiseliere2d48922015-08-28 07:02:42 +0000897 {return (__is_long() ? __get_long_cap()
898 : static_cast<size_type>(__min_cap)) - 1;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000899
900 void resize(size_type __n, value_type __c);
901 _LIBCPP_INLINE_VISIBILITY void resize(size_type __n) {resize(__n, value_type());}
902
903 void reserve(size_type res_arg = 0);
Howard Hinnant8d7a9552010-09-23 17:31:07 +0000904 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000905 void shrink_to_fit() _NOEXCEPT {reserve();}
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000906 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +0000907 void clear() _NOEXCEPT;
908 _LIBCPP_INLINE_VISIBILITY bool empty() const _NOEXCEPT {return size() == 0;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000909
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000910 _LIBCPP_INLINE_VISIBILITY const_reference operator[](size_type __pos) const _NOEXCEPT;
911 _LIBCPP_INLINE_VISIBILITY reference operator[](size_type __pos) _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000912
913 const_reference at(size_type __n) const;
914 reference at(size_type __n);
915
916 _LIBCPP_INLINE_VISIBILITY basic_string& operator+=(const basic_string& __str) {return append(__str);}
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000917 _LIBCPP_INLINE_VISIBILITY basic_string& operator+=(__self_view __sv) {return append(__sv);}
918 _LIBCPP_INLINE_VISIBILITY basic_string& operator+=(const value_type* __s) {return append(__s);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000919 _LIBCPP_INLINE_VISIBILITY basic_string& operator+=(value_type __c) {push_back(__c); return *this;}
Howard Hinnante3e32912011-08-12 21:56:02 +0000920#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000921 _LIBCPP_INLINE_VISIBILITY basic_string& operator+=(initializer_list<value_type> __il) {return append(__il);}
Howard Hinnante3e32912011-08-12 21:56:02 +0000922#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000923
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000924 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000925 basic_string& append(const basic_string& __str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000926 _LIBCPP_INLINE_VISIBILITY
927 basic_string& append(__self_view __sv) { return append(__sv.data(), __sv.size()); }
Marshall Clowa93b5e22014-03-04 19:17:19 +0000928 basic_string& append(const basic_string& __str, size_type __pos, size_type __n=npos);
Marshall Clow42a87db2016-10-03 23:40:48 +0000929 template <class _Tp>
Marshall Clow6ac8de02016-09-24 22:45:42 +0000930 typename enable_if
931 <
932 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
933 basic_string&
934 >::type
935 append(const _Tp& __t, size_type __pos, size_type __n=npos);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000936 basic_string& append(const value_type* __s, size_type __n);
937 basic_string& append(const value_type* __s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000938 basic_string& append(size_type __n, value_type __c);
Eric Fiselier026d38e2016-10-31 02:46:25 +0000939 template <class _ForwardIterator>
Eric Fiselierd5b0db52016-10-31 03:40:29 +0000940 inline basic_string& __append_forward_unsafe(_ForwardIterator, _ForwardIterator);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000941 template<class _InputIterator>
942 typename enable_if
943 <
Marshall Clowdf9db312016-01-13 21:54:34 +0000944 __is_exactly_input_iterator<_InputIterator>::value
945 || !__libcpp_string_gets_noexcept_iterator<_InputIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000946 basic_string&
947 >::type
Eric Fiselier026d38e2016-10-31 02:46:25 +0000948 _LIBCPP_INLINE_VISIBILITY
949 append(_InputIterator __first, _InputIterator __last) {
950 const basic_string __temp (__first, __last, __alloc());
951 append(__temp.data(), __temp.size());
952 return *this;
953 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000954 template<class _ForwardIterator>
955 typename enable_if
956 <
Marshall Clowdf9db312016-01-13 21:54:34 +0000957 __is_forward_iterator<_ForwardIterator>::value
958 && __libcpp_string_gets_noexcept_iterator<_ForwardIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000959 basic_string&
960 >::type
Eric Fiselier026d38e2016-10-31 02:46:25 +0000961 _LIBCPP_INLINE_VISIBILITY
962 append(_ForwardIterator __first, _ForwardIterator __last) {
963 return __append_forward_unsafe(__first, __last);
964 }
965
Howard Hinnante3e32912011-08-12 21:56:02 +0000966#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnant8d7a9552010-09-23 17:31:07 +0000967 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000968 basic_string& append(initializer_list<value_type> __il) {return append(__il.begin(), __il.size());}
Howard Hinnante3e32912011-08-12 21:56:02 +0000969#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000970
971 void push_back(value_type __c);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000972 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000973 void pop_back();
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000974 _LIBCPP_INLINE_VISIBILITY reference front();
975 _LIBCPP_INLINE_VISIBILITY const_reference front() const;
976 _LIBCPP_INLINE_VISIBILITY reference back();
977 _LIBCPP_INLINE_VISIBILITY const_reference back() const;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000978
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000979 _LIBCPP_INLINE_VISIBILITY
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000980 basic_string& assign(__self_view __sv) { return assign(__sv.data(), __sv.size()); }
981 _LIBCPP_INLINE_VISIBILITY
Marshall Clowf40ec902016-03-09 18:08:29 +0000982 basic_string& assign(const basic_string& __str) { return *this = __str; }
Howard Hinnanta6119a82011-05-29 19:57:12 +0000983#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
984 _LIBCPP_INLINE_VISIBILITY
985 basic_string& assign(basic_string&& str)
Marshall Clow7ed093b2015-10-05 16:17:34 +0000986 _NOEXCEPT_((__noexcept_move_assign_container<_Allocator, __alloc_traits>::value))
Howard Hinnant0949eed2011-06-30 21:18:19 +0000987 {*this = _VSTD::move(str); return *this;}
Howard Hinnanta6119a82011-05-29 19:57:12 +0000988#endif
Marshall Clowa93b5e22014-03-04 19:17:19 +0000989 basic_string& assign(const basic_string& __str, size_type __pos, size_type __n=npos);
Marshall Clow42a87db2016-10-03 23:40:48 +0000990 template <class _Tp>
Marshall Clow6ac8de02016-09-24 22:45:42 +0000991 typename enable_if
992 <
993 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
994 basic_string&
995 >::type
996 assign(const _Tp & __t, size_type pos, size_type n=npos);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000997 basic_string& assign(const value_type* __s, size_type __n);
998 basic_string& assign(const value_type* __s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000999 basic_string& assign(size_type __n, value_type __c);
1000 template<class _InputIterator>
1001 typename enable_if
1002 <
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>
1009 typename enable_if
1010 <
Marshall Clowdf9db312016-01-13 21:54:34 +00001011 __is_forward_iterator<_ForwardIterator>::value
1012 && __libcpp_string_gets_noexcept_iterator<_ForwardIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001013 basic_string&
1014 >::type
1015 assign(_ForwardIterator __first, _ForwardIterator __last);
Howard Hinnante3e32912011-08-12 21:56:02 +00001016#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnant8d7a9552010-09-23 17:31:07 +00001017 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001018 basic_string& assign(initializer_list<value_type> __il) {return assign(__il.begin(), __il.size());}
Howard Hinnante3e32912011-08-12 21:56:02 +00001019#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001020
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001021 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001022 basic_string& insert(size_type __pos1, const basic_string& __str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001023 _LIBCPP_INLINE_VISIBILITY
1024 basic_string& insert(size_type __pos1, __self_view __sv) { return insert(__pos1, __sv.data(), __sv.size()); }
Marshall Clow6ac8de02016-09-24 22:45:42 +00001025 template <class _Tp>
1026 typename enable_if
1027 <
1028 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
1029 basic_string&
1030 >::type
1031 insert(size_type __pos1, const _Tp& __t, size_type __pos2, size_type __n=npos);
Marshall Clowa93b5e22014-03-04 19:17:19 +00001032 basic_string& insert(size_type __pos1, const basic_string& __str, size_type __pos2, size_type __n=npos);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001033 basic_string& insert(size_type __pos, const value_type* __s, size_type __n);
1034 basic_string& insert(size_type __pos, const value_type* __s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001035 basic_string& insert(size_type __pos, size_type __n, value_type __c);
1036 iterator insert(const_iterator __pos, value_type __c);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001037 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001038 iterator insert(const_iterator __pos, size_type __n, value_type __c);
1039 template<class _InputIterator>
1040 typename enable_if
1041 <
Marshall Clowdf9db312016-01-13 21:54:34 +00001042 __is_exactly_input_iterator<_InputIterator>::value
1043 || !__libcpp_string_gets_noexcept_iterator<_InputIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001044 iterator
1045 >::type
1046 insert(const_iterator __pos, _InputIterator __first, _InputIterator __last);
1047 template<class _ForwardIterator>
1048 typename enable_if
1049 <
Marshall Clowdf9db312016-01-13 21:54:34 +00001050 __is_forward_iterator<_ForwardIterator>::value
1051 && __libcpp_string_gets_noexcept_iterator<_ForwardIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001052 iterator
1053 >::type
1054 insert(const_iterator __pos, _ForwardIterator __first, _ForwardIterator __last);
Howard Hinnante3e32912011-08-12 21:56:02 +00001055#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnant8d7a9552010-09-23 17:31:07 +00001056 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001057 iterator insert(const_iterator __pos, initializer_list<value_type> __il)
1058 {return insert(__pos, __il.begin(), __il.end());}
Howard Hinnante3e32912011-08-12 21:56:02 +00001059#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001060
1061 basic_string& erase(size_type __pos = 0, size_type __n = npos);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001062 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001063 iterator erase(const_iterator __pos);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001064 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001065 iterator erase(const_iterator __first, const_iterator __last);
1066
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001067 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001068 basic_string& replace(size_type __pos1, size_type __n1, const basic_string& __str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001069 _LIBCPP_INLINE_VISIBILITY
1070 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 +00001071 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 +00001072 template <class _Tp>
1073 typename enable_if
1074 <
1075 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
1076 basic_string&
1077 >::type
1078 replace(size_type __pos1, size_type __n1, const _Tp& __t, size_type __pos2, size_type __n2=npos);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001079 basic_string& replace(size_type __pos, size_type __n1, const value_type* __s, size_type __n2);
1080 basic_string& replace(size_type __pos, size_type __n1, const value_type* __s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001081 basic_string& replace(size_type __pos, size_type __n1, size_type __n2, value_type __c);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001082 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7b2cb482010-11-17 21:11:40 +00001083 basic_string& replace(const_iterator __i1, const_iterator __i2, const basic_string& __str);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001084 _LIBCPP_INLINE_VISIBILITY
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001085 basic_string& replace(const_iterator __i1, const_iterator __i2, __self_view __sv) { return replace(__i1 - begin(), __i2 - __i1, __sv); }
1086 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001087 basic_string& replace(const_iterator __i1, const_iterator __i2, const value_type* __s, size_type __n);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001088 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001089 basic_string& replace(const_iterator __i1, const_iterator __i2, const value_type* __s);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001090 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7b2cb482010-11-17 21:11:40 +00001091 basic_string& replace(const_iterator __i1, const_iterator __i2, size_type __n, value_type __c);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001092 template<class _InputIterator>
1093 typename enable_if
1094 <
1095 __is_input_iterator<_InputIterator>::value,
1096 basic_string&
1097 >::type
Howard Hinnant7b2cb482010-11-17 21:11:40 +00001098 replace(const_iterator __i1, const_iterator __i2, _InputIterator __j1, _InputIterator __j2);
Howard Hinnante3e32912011-08-12 21:56:02 +00001099#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnant8d7a9552010-09-23 17:31:07 +00001100 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7b2cb482010-11-17 21:11:40 +00001101 basic_string& replace(const_iterator __i1, const_iterator __i2, initializer_list<value_type> __il)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001102 {return replace(__i1, __i2, __il.begin(), __il.end());}
Howard Hinnante3e32912011-08-12 21:56:02 +00001103#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001104
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001105 size_type copy(value_type* __s, size_type __n, size_type __pos = 0) const;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001106 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001107 basic_string substr(size_type __pos = 0, size_type __n = npos) const;
1108
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001109 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00001110 void swap(basic_string& __str)
Marshall Clow7d914d12015-07-13 20:04:56 +00001111#if _LIBCPP_STD_VER >= 14
Eric Fiselier47257c42016-12-28 05:53:01 +00001112 _NOEXCEPT_DEBUG;
Marshall Clow7d914d12015-07-13 20:04:56 +00001113#else
Eric Fiselier47257c42016-12-28 05:53:01 +00001114 _NOEXCEPT_DEBUG_(!__alloc_traits::propagate_on_container_swap::value ||
Marshall Clow7d914d12015-07-13 20:04:56 +00001115 __is_nothrow_swappable<allocator_type>::value);
1116#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001117
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001118 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001119 const value_type* c_str() const _NOEXCEPT {return data();}
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001120 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001121 const value_type* data() const _NOEXCEPT {return _VSTD::__to_raw_pointer(__get_pointer());}
Marshall Clowf532a702016-03-08 15:44:30 +00001122#if _LIBCPP_STD_VER > 14
1123 _LIBCPP_INLINE_VISIBILITY
1124 value_type* data() _NOEXCEPT {return _VSTD::__to_raw_pointer(__get_pointer());}
1125#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001126
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001127 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001128 allocator_type get_allocator() const _NOEXCEPT {return __alloc();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001129
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001130 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001131 size_type find(const basic_string& __str, size_type __pos = 0) const _NOEXCEPT;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001132 _LIBCPP_INLINE_VISIBILITY
1133 size_type find(__self_view __sv, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001134 size_type find(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001135 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001136 size_type find(const value_type* __s, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnanta6119a82011-05-29 19:57:12 +00001137 size_type find(value_type __c, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001138
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001139 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001140 size_type rfind(const basic_string& __str, size_type __pos = npos) const _NOEXCEPT;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001141 _LIBCPP_INLINE_VISIBILITY
1142 size_type rfind(__self_view __sv, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001143 size_type rfind(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001144 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001145 size_type rfind(const value_type* __s, size_type __pos = npos) const _NOEXCEPT;
Howard Hinnanta6119a82011-05-29 19:57:12 +00001146 size_type rfind(value_type __c, size_type __pos = npos) const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001147
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001148 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001149 size_type find_first_of(const basic_string& __str, size_type __pos = 0) const _NOEXCEPT;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001150 _LIBCPP_INLINE_VISIBILITY
1151 size_type find_first_of(__self_view __sv, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001152 size_type find_first_of(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001153 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001154 size_type find_first_of(const value_type* __s, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001155 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001156 size_type find_first_of(value_type __c, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001157
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001158 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001159 size_type find_last_of(const basic_string& __str, size_type __pos = npos) const _NOEXCEPT;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001160 _LIBCPP_INLINE_VISIBILITY
1161 size_type find_last_of(__self_view __sv, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001162 size_type find_last_of(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001163 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001164 size_type find_last_of(const value_type* __s, size_type __pos = npos) const _NOEXCEPT;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001165 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001166 size_type find_last_of(value_type __c, size_type __pos = npos) const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001167
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001168 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001169 size_type find_first_not_of(const basic_string& __str, size_type __pos = 0) const _NOEXCEPT;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001170 _LIBCPP_INLINE_VISIBILITY
1171 size_type find_first_not_of(__self_view __sv, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001172 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 +00001173 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001174 size_type find_first_not_of(const value_type* __s, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnanta6119a82011-05-29 19:57:12 +00001175 _LIBCPP_INLINE_VISIBILITY
1176 size_type find_first_not_of(value_type __c, size_type __pos = 0) const _NOEXCEPT;
1177
1178 _LIBCPP_INLINE_VISIBILITY
1179 size_type find_last_not_of(const basic_string& __str, size_type __pos = npos) const _NOEXCEPT;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001180 _LIBCPP_INLINE_VISIBILITY
1181 size_type find_last_not_of(__self_view __sv, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001182 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 +00001183 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001184 size_type find_last_not_of(const value_type* __s, size_type __pos = npos) const _NOEXCEPT;
Howard Hinnanta6119a82011-05-29 19:57:12 +00001185 _LIBCPP_INLINE_VISIBILITY
1186 size_type find_last_not_of(value_type __c, size_type __pos = npos) const _NOEXCEPT;
1187
1188 _LIBCPP_INLINE_VISIBILITY
1189 int compare(const basic_string& __str) const _NOEXCEPT;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001190 _LIBCPP_INLINE_VISIBILITY
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001191 int compare(__self_view __sv) const _NOEXCEPT;
1192 _LIBCPP_INLINE_VISIBILITY
1193 int compare(size_type __pos1, size_type __n1, __self_view __sv) const;
1194 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001195 int compare(size_type __pos1, size_type __n1, const basic_string& __str) const;
Marshall Clowa93b5e22014-03-04 19:17:19 +00001196 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 +00001197 template <class _Tp>
Eric Fiselier9dbc0532016-10-14 05:29:46 +00001198 inline _LIBCPP_INLINE_VISIBILITY
Marshall Clow6ac8de02016-09-24 22:45:42 +00001199 typename enable_if
1200 <
1201 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
1202 int
1203 >::type
1204 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 +00001205 int compare(const value_type* __s) const _NOEXCEPT;
1206 int compare(size_type __pos1, size_type __n1, const value_type* __s) const;
1207 int compare(size_type __pos1, size_type __n1, const value_type* __s, size_type __n2) const;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001208
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001209 _LIBCPP_INLINE_VISIBILITY bool __invariants() const;
Howard Hinnant08dd2532013-04-22 23:55:13 +00001210
1211 _LIBCPP_INLINE_VISIBILITY
1212 bool __is_long() const _NOEXCEPT
1213 {return bool(__r_.first().__s.__size_ & __short_mask);}
1214
Howard Hinnant499cea12013-08-23 17:37:05 +00001215#if _LIBCPP_DEBUG_LEVEL >= 2
1216
1217 bool __dereferenceable(const const_iterator* __i) const;
1218 bool __decrementable(const const_iterator* __i) const;
1219 bool __addable(const const_iterator* __i, ptrdiff_t __n) const;
1220 bool __subscriptable(const const_iterator* __i, ptrdiff_t __n) const;
1221
1222#endif // _LIBCPP_DEBUG_LEVEL >= 2
1223
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001224private:
Howard Hinnanta6119a82011-05-29 19:57:12 +00001225 _LIBCPP_INLINE_VISIBILITY
1226 allocator_type& __alloc() _NOEXCEPT
1227 {return __r_.second();}
1228 _LIBCPP_INLINE_VISIBILITY
1229 const allocator_type& __alloc() const _NOEXCEPT
1230 {return __r_.second();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001231
Evgeniy Stepanov4f01aa82015-10-13 23:48:28 +00001232#ifdef _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Howard Hinnant15467182013-04-30 21:44:48 +00001233
Howard Hinnanta6119a82011-05-29 19:57:12 +00001234 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001235 void __set_short_size(size_type __s) _NOEXCEPT
Howard Hinnant15467182013-04-30 21:44:48 +00001236# if _LIBCPP_BIG_ENDIAN
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001237 {__r_.first().__s.__size_ = (unsigned char)(__s << 1);}
Howard Hinnant15467182013-04-30 21:44:48 +00001238# else
1239 {__r_.first().__s.__size_ = (unsigned char)(__s);}
1240# endif
1241
Howard Hinnanta6119a82011-05-29 19:57:12 +00001242 _LIBCPP_INLINE_VISIBILITY
1243 size_type __get_short_size() const _NOEXCEPT
Howard Hinnant15467182013-04-30 21:44:48 +00001244# if _LIBCPP_BIG_ENDIAN
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001245 {return __r_.first().__s.__size_ >> 1;}
Howard Hinnant15467182013-04-30 21:44:48 +00001246# else
1247 {return __r_.first().__s.__size_;}
1248# endif
1249
Evgeniy Stepanov4f01aa82015-10-13 23:48:28 +00001250#else // _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Howard Hinnant15467182013-04-30 21:44:48 +00001251
1252 _LIBCPP_INLINE_VISIBILITY
1253 void __set_short_size(size_type __s) _NOEXCEPT
1254# if _LIBCPP_BIG_ENDIAN
1255 {__r_.first().__s.__size_ = (unsigned char)(__s);}
1256# else
1257 {__r_.first().__s.__size_ = (unsigned char)(__s << 1);}
1258# endif
1259
1260 _LIBCPP_INLINE_VISIBILITY
1261 size_type __get_short_size() const _NOEXCEPT
1262# if _LIBCPP_BIG_ENDIAN
1263 {return __r_.first().__s.__size_;}
1264# else
1265 {return __r_.first().__s.__size_ >> 1;}
1266# endif
1267
Evgeniy Stepanov4f01aa82015-10-13 23:48:28 +00001268#endif // _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Howard Hinnant15467182013-04-30 21:44:48 +00001269
Howard Hinnanta6119a82011-05-29 19:57:12 +00001270 _LIBCPP_INLINE_VISIBILITY
1271 void __set_long_size(size_type __s) _NOEXCEPT
1272 {__r_.first().__l.__size_ = __s;}
1273 _LIBCPP_INLINE_VISIBILITY
1274 size_type __get_long_size() const _NOEXCEPT
1275 {return __r_.first().__l.__size_;}
1276 _LIBCPP_INLINE_VISIBILITY
1277 void __set_size(size_type __s) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001278 {if (__is_long()) __set_long_size(__s); else __set_short_size(__s);}
1279
Howard Hinnanta6119a82011-05-29 19:57:12 +00001280 _LIBCPP_INLINE_VISIBILITY
1281 void __set_long_cap(size_type __s) _NOEXCEPT
1282 {__r_.first().__l.__cap_ = __long_mask | __s;}
1283 _LIBCPP_INLINE_VISIBILITY
1284 size_type __get_long_cap() const _NOEXCEPT
Howard Hinnantec3773c2011-12-01 20:21:04 +00001285 {return __r_.first().__l.__cap_ & size_type(~__long_mask);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001286
Howard Hinnanta6119a82011-05-29 19:57:12 +00001287 _LIBCPP_INLINE_VISIBILITY
1288 void __set_long_pointer(pointer __p) _NOEXCEPT
1289 {__r_.first().__l.__data_ = __p;}
1290 _LIBCPP_INLINE_VISIBILITY
1291 pointer __get_long_pointer() _NOEXCEPT
1292 {return __r_.first().__l.__data_;}
1293 _LIBCPP_INLINE_VISIBILITY
1294 const_pointer __get_long_pointer() const _NOEXCEPT
1295 {return __r_.first().__l.__data_;}
1296 _LIBCPP_INLINE_VISIBILITY
1297 pointer __get_short_pointer() _NOEXCEPT
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001298 {return pointer_traits<pointer>::pointer_to(__r_.first().__s.__data_[0]);}
Howard Hinnanta6119a82011-05-29 19:57:12 +00001299 _LIBCPP_INLINE_VISIBILITY
1300 const_pointer __get_short_pointer() const _NOEXCEPT
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001301 {return pointer_traits<const_pointer>::pointer_to(__r_.first().__s.__data_[0]);}
Howard Hinnanta6119a82011-05-29 19:57:12 +00001302 _LIBCPP_INLINE_VISIBILITY
1303 pointer __get_pointer() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001304 {return __is_long() ? __get_long_pointer() : __get_short_pointer();}
Howard Hinnanta6119a82011-05-29 19:57:12 +00001305 _LIBCPP_INLINE_VISIBILITY
1306 const_pointer __get_pointer() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001307 {return __is_long() ? __get_long_pointer() : __get_short_pointer();}
1308
Howard Hinnanta6119a82011-05-29 19:57:12 +00001309 _LIBCPP_INLINE_VISIBILITY
1310 void __zero() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001311 {
1312 size_type (&__a)[__n_words] = __r_.first().__r.__words;
1313 for (unsigned __i = 0; __i < __n_words; ++__i)
1314 __a[__i] = 0;
1315 }
1316
1317 template <size_type __a> static
Howard Hinnanta6119a82011-05-29 19:57:12 +00001318 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7f764502013-08-14 18:00:20 +00001319 size_type __align_it(size_type __s) _NOEXCEPT
Eric Fiseliere2d48922015-08-28 07:02:42 +00001320 {return (__s + (__a-1)) & ~(__a-1);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001321 enum {__alignment = 16};
Howard Hinnanta6119a82011-05-29 19:57:12 +00001322 static _LIBCPP_INLINE_VISIBILITY
1323 size_type __recommend(size_type __s) _NOEXCEPT
Eric Fiseliere2d48922015-08-28 07:02:42 +00001324 {return (__s < __min_cap ? static_cast<size_type>(__min_cap) :
Howard Hinnant7f764502013-08-14 18:00:20 +00001325 __align_it<sizeof(value_type) < __alignment ?
Howard Hinnanta6119a82011-05-29 19:57:12 +00001326 __alignment/sizeof(value_type) : 1 > (__s+1)) - 1;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001327
Eric Fiselier6dbed462016-09-16 00:00:48 +00001328 inline _LIBCPP_EXTERN_TEMPLATE_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001329 void __init(const value_type* __s, size_type __sz, size_type __reserve);
Eric Fiselier6dbed462016-09-16 00:00:48 +00001330 inline _LIBCPP_EXTERN_TEMPLATE_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001331 void __init(const value_type* __s, size_type __sz);
Eric Fiselier6dbed462016-09-16 00:00:48 +00001332 inline _LIBCPP_EXTERN_TEMPLATE_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001333 void __init(size_type __n, value_type __c);
Howard Hinnant324bb032010-08-22 00:02:43 +00001334
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001335 template <class _InputIterator>
Eric Fiselier6dbed462016-09-16 00:00:48 +00001336 inline _LIBCPP_EXTERN_TEMPLATE_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001337 typename enable_if
1338 <
Marshall Clowdf9db312016-01-13 21:54:34 +00001339 __is_exactly_input_iterator<_InputIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001340 void
1341 >::type
1342 __init(_InputIterator __first, _InputIterator __last);
1343
1344 template <class _ForwardIterator>
Eric Fiselier6dbed462016-09-16 00:00:48 +00001345 inline _LIBCPP_EXTERN_TEMPLATE_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001346 typename enable_if
1347 <
1348 __is_forward_iterator<_ForwardIterator>::value,
1349 void
1350 >::type
1351 __init(_ForwardIterator __first, _ForwardIterator __last);
1352
1353 void __grow_by(size_type __old_cap, size_type __delta_cap, size_type __old_sz,
Howard Hinnant324bb032010-08-22 00:02:43 +00001354 size_type __n_copy, size_type __n_del, size_type __n_add = 0);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001355 void __grow_by_and_replace(size_type __old_cap, size_type __delta_cap, size_type __old_sz,
1356 size_type __n_copy, size_type __n_del,
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001357 size_type __n_add, const value_type* __p_new_stuff);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001358
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001359 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001360 void __erase_to_end(size_type __pos);
1361
Howard Hinnante32b5e22010-11-17 17:55:08 +00001362 _LIBCPP_INLINE_VISIBILITY
1363 void __copy_assign_alloc(const basic_string& __str)
1364 {__copy_assign_alloc(__str, integral_constant<bool,
1365 __alloc_traits::propagate_on_container_copy_assignment::value>());}
1366
1367 _LIBCPP_INLINE_VISIBILITY
1368 void __copy_assign_alloc(const basic_string& __str, true_type)
1369 {
Marshall Clow9247fd22017-01-31 03:40:52 +00001370 if (__alloc() == __str.__alloc())
1371 __alloc() = __str.__alloc();
1372 else
Howard Hinnante32b5e22010-11-17 17:55:08 +00001373 {
Marshall Clow9247fd22017-01-31 03:40:52 +00001374 if (!__str.__is_long())
1375 {
1376 clear();
1377 shrink_to_fit();
1378 __alloc() = __str.__alloc();
1379 }
1380 else
1381 {
1382 allocator_type __a = __str.__alloc();
1383 pointer __p = __alloc_traits::allocate(__a, __str.__get_long_cap());
1384 clear();
1385 shrink_to_fit();
1386 __alloc() = _VSTD::move(__a);
1387 __set_long_pointer(__p);
1388 __set_long_cap(__str.__get_long_cap());
1389 __set_long_size(__str.size());
1390 }
Howard Hinnante32b5e22010-11-17 17:55:08 +00001391 }
Howard Hinnante32b5e22010-11-17 17:55:08 +00001392 }
1393
1394 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantec3773c2011-12-01 20:21:04 +00001395 void __copy_assign_alloc(const basic_string&, false_type) _NOEXCEPT
Howard Hinnante32b5e22010-11-17 17:55:08 +00001396 {}
1397
1398#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001399 _LIBCPP_INLINE_VISIBILITY
Marshall Clowaf961ed2015-08-18 18:57:00 +00001400 void __move_assign(basic_string& __str, false_type)
1401 _NOEXCEPT_(__alloc_traits::is_always_equal::value);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001402 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00001403 void __move_assign(basic_string& __str, true_type)
Marshall Clowaf961ed2015-08-18 18:57:00 +00001404#if _LIBCPP_STD_VER > 14
1405 _NOEXCEPT;
1406#else
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00001407 _NOEXCEPT_(is_nothrow_move_assignable<allocator_type>::value);
Howard Hinnante32b5e22010-11-17 17:55:08 +00001408#endif
Marshall Clowaf961ed2015-08-18 18:57:00 +00001409#endif
Howard Hinnante32b5e22010-11-17 17:55:08 +00001410
1411 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3fdbbd22011-08-17 20:36:18 +00001412 void
Howard Hinnant9cbee432011-09-02 20:42:31 +00001413 __move_assign_alloc(basic_string& __str)
Howard Hinnant3fdbbd22011-08-17 20:36:18 +00001414 _NOEXCEPT_(
1415 !__alloc_traits::propagate_on_container_move_assignment::value ||
1416 is_nothrow_move_assignable<allocator_type>::value)
1417 {__move_assign_alloc(__str, integral_constant<bool,
1418 __alloc_traits::propagate_on_container_move_assignment::value>());}
1419
1420 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9cbee432011-09-02 20:42:31 +00001421 void __move_assign_alloc(basic_string& __c, true_type)
Howard Hinnant3fdbbd22011-08-17 20:36:18 +00001422 _NOEXCEPT_(is_nothrow_move_assignable<allocator_type>::value)
1423 {
1424 __alloc() = _VSTD::move(__c.__alloc());
1425 }
1426
1427 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantec3773c2011-12-01 20:21:04 +00001428 void __move_assign_alloc(basic_string&, false_type)
Howard Hinnant3fdbbd22011-08-17 20:36:18 +00001429 _NOEXCEPT
1430 {}
1431
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001432 _LIBCPP_INLINE_VISIBILITY void __invalidate_all_iterators();
1433 _LIBCPP_INLINE_VISIBILITY void __invalidate_iterators_past(size_type);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001434
1435 friend basic_string operator+<>(const basic_string&, const basic_string&);
1436 friend basic_string operator+<>(const value_type*, const basic_string&);
1437 friend basic_string operator+<>(value_type, const basic_string&);
1438 friend basic_string operator+<>(const basic_string&, const value_type*);
1439 friend basic_string operator+<>(const basic_string&, value_type);
1440};
1441
1442template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001443inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001444void
1445basic_string<_CharT, _Traits, _Allocator>::__invalidate_all_iterators()
1446{
Howard Hinnant499cea12013-08-23 17:37:05 +00001447#if _LIBCPP_DEBUG_LEVEL >= 2
1448 __get_db()->__invalidate_all(this);
1449#endif // _LIBCPP_DEBUG_LEVEL >= 2
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001450}
1451
1452template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001453inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001454void
Howard Hinnantec3773c2011-12-01 20:21:04 +00001455basic_string<_CharT, _Traits, _Allocator>::__invalidate_iterators_past(size_type
Howard Hinnant499cea12013-08-23 17:37:05 +00001456#if _LIBCPP_DEBUG_LEVEL >= 2
Howard Hinnantec3773c2011-12-01 20:21:04 +00001457 __pos
1458#endif
1459 )
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001460{
Howard Hinnant499cea12013-08-23 17:37:05 +00001461#if _LIBCPP_DEBUG_LEVEL >= 2
1462 __c_node* __c = __get_db()->__find_c_and_lock(this);
1463 if (__c)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001464 {
Howard Hinnant499cea12013-08-23 17:37:05 +00001465 const_pointer __new_last = __get_pointer() + __pos;
1466 for (__i_node** __p = __c->end_; __p != __c->beg_; )
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001467 {
Howard Hinnant499cea12013-08-23 17:37:05 +00001468 --__p;
1469 const_iterator* __i = static_cast<const_iterator*>((*__p)->__i_);
1470 if (__i->base() > __new_last)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001471 {
Howard Hinnant499cea12013-08-23 17:37:05 +00001472 (*__p)->__c_ = nullptr;
1473 if (--__c->end_ != __p)
1474 memmove(__p, __p+1, (__c->end_ - __p)*sizeof(__i_node*));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001475 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001476 }
Howard Hinnant499cea12013-08-23 17:37:05 +00001477 __get_db()->unlock();
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001478 }
Howard Hinnant499cea12013-08-23 17:37:05 +00001479#endif // _LIBCPP_DEBUG_LEVEL >= 2
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001480}
1481
1482template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001483inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00001484basic_string<_CharT, _Traits, _Allocator>::basic_string()
Marshall Clowc912c0c2015-06-04 02:05:41 +00001485 _NOEXCEPT_(is_nothrow_default_constructible<allocator_type>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001486{
Howard Hinnant499cea12013-08-23 17:37:05 +00001487#if _LIBCPP_DEBUG_LEVEL >= 2
1488 __get_db()->__insert_c(this);
1489#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001490 __zero();
1491}
1492
1493template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001494inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001495basic_string<_CharT, _Traits, _Allocator>::basic_string(const allocator_type& __a)
Eric Fiselier692177d2015-07-18 20:40:46 +00001496#if _LIBCPP_STD_VER <= 14
1497 _NOEXCEPT_(is_nothrow_copy_constructible<allocator_type>::value)
1498#else
1499 _NOEXCEPT
1500#endif
1501: __r_(__a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001502{
Howard Hinnant499cea12013-08-23 17:37:05 +00001503#if _LIBCPP_DEBUG_LEVEL >= 2
1504 __get_db()->__insert_c(this);
1505#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001506 __zero();
1507}
1508
1509template <class _CharT, class _Traits, class _Allocator>
Eric Fiselier6dbed462016-09-16 00:00:48 +00001510void basic_string<_CharT, _Traits, _Allocator>::__init(const value_type* __s,
1511 size_type __sz,
1512 size_type __reserve)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001513{
1514 if (__reserve > max_size())
1515 this->__throw_length_error();
1516 pointer __p;
1517 if (__reserve < __min_cap)
1518 {
1519 __set_short_size(__sz);
1520 __p = __get_short_pointer();
1521 }
1522 else
1523 {
1524 size_type __cap = __recommend(__reserve);
Howard Hinnante32b5e22010-11-17 17:55:08 +00001525 __p = __alloc_traits::allocate(__alloc(), __cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001526 __set_long_pointer(__p);
1527 __set_long_cap(__cap+1);
1528 __set_long_size(__sz);
1529 }
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001530 traits_type::copy(_VSTD::__to_raw_pointer(__p), __s, __sz);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001531 traits_type::assign(__p[__sz], value_type());
1532}
1533
1534template <class _CharT, class _Traits, class _Allocator>
1535void
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001536basic_string<_CharT, _Traits, _Allocator>::__init(const value_type* __s, size_type __sz)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001537{
1538 if (__sz > max_size())
1539 this->__throw_length_error();
1540 pointer __p;
1541 if (__sz < __min_cap)
1542 {
1543 __set_short_size(__sz);
1544 __p = __get_short_pointer();
1545 }
1546 else
1547 {
1548 size_type __cap = __recommend(__sz);
Howard Hinnante32b5e22010-11-17 17:55:08 +00001549 __p = __alloc_traits::allocate(__alloc(), __cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001550 __set_long_pointer(__p);
1551 __set_long_cap(__cap+1);
1552 __set_long_size(__sz);
1553 }
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001554 traits_type::copy(_VSTD::__to_raw_pointer(__p), __s, __sz);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001555 traits_type::assign(__p[__sz], value_type());
1556}
1557
1558template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001559inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001560basic_string<_CharT, _Traits, _Allocator>::basic_string(const value_type* __s)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001561{
Howard Hinnant499cea12013-08-23 17:37:05 +00001562 _LIBCPP_ASSERT(__s != nullptr, "basic_string(const char*) detected nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001563 __init(__s, traits_type::length(__s));
Howard Hinnant499cea12013-08-23 17:37:05 +00001564#if _LIBCPP_DEBUG_LEVEL >= 2
1565 __get_db()->__insert_c(this);
1566#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001567}
1568
1569template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001570inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001571basic_string<_CharT, _Traits, _Allocator>::basic_string(const value_type* __s, const allocator_type& __a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001572 : __r_(__a)
1573{
Howard Hinnant499cea12013-08-23 17:37:05 +00001574 _LIBCPP_ASSERT(__s != nullptr, "basic_string(const char*, allocator) detected nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001575 __init(__s, traits_type::length(__s));
Howard Hinnant499cea12013-08-23 17:37:05 +00001576#if _LIBCPP_DEBUG_LEVEL >= 2
1577 __get_db()->__insert_c(this);
1578#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001579}
1580
1581template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001582inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001583basic_string<_CharT, _Traits, _Allocator>::basic_string(const value_type* __s, size_type __n)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001584{
Howard Hinnant499cea12013-08-23 17:37:05 +00001585 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "basic_string(const char*, n) detected nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001586 __init(__s, __n);
Howard Hinnant499cea12013-08-23 17:37:05 +00001587#if _LIBCPP_DEBUG_LEVEL >= 2
1588 __get_db()->__insert_c(this);
1589#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001590}
1591
1592template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001593inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001594basic_string<_CharT, _Traits, _Allocator>::basic_string(const value_type* __s, size_type __n, const allocator_type& __a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001595 : __r_(__a)
1596{
Howard Hinnant499cea12013-08-23 17:37:05 +00001597 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "basic_string(const char*, n, allocator) detected nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001598 __init(__s, __n);
Howard Hinnant499cea12013-08-23 17:37:05 +00001599#if _LIBCPP_DEBUG_LEVEL >= 2
1600 __get_db()->__insert_c(this);
1601#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001602}
1603
1604template <class _CharT, class _Traits, class _Allocator>
1605basic_string<_CharT, _Traits, _Allocator>::basic_string(const basic_string& __str)
Howard Hinnante32b5e22010-11-17 17:55:08 +00001606 : __r_(__alloc_traits::select_on_container_copy_construction(__str.__alloc()))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001607{
1608 if (!__str.__is_long())
1609 __r_.first().__r = __str.__r_.first().__r;
1610 else
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001611 __init(_VSTD::__to_raw_pointer(__str.__get_long_pointer()), __str.__get_long_size());
Howard Hinnant499cea12013-08-23 17:37:05 +00001612#if _LIBCPP_DEBUG_LEVEL >= 2
1613 __get_db()->__insert_c(this);
1614#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001615}
1616
1617template <class _CharT, class _Traits, class _Allocator>
1618basic_string<_CharT, _Traits, _Allocator>::basic_string(const basic_string& __str, const allocator_type& __a)
1619 : __r_(__a)
1620{
1621 if (!__str.__is_long())
1622 __r_.first().__r = __str.__r_.first().__r;
1623 else
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001624 __init(_VSTD::__to_raw_pointer(__str.__get_long_pointer()), __str.__get_long_size());
Howard Hinnant499cea12013-08-23 17:37:05 +00001625#if _LIBCPP_DEBUG_LEVEL >= 2
1626 __get_db()->__insert_c(this);
1627#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001628}
1629
Howard Hinnant73d21a42010-09-04 23:28:19 +00001630#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001631
1632template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001633inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00001634basic_string<_CharT, _Traits, _Allocator>::basic_string(basic_string&& __str)
Marshall Clow7b193f72015-06-03 19:56:43 +00001635#if _LIBCPP_STD_VER <= 14
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00001636 _NOEXCEPT_(is_nothrow_move_constructible<allocator_type>::value)
Marshall Clow7b193f72015-06-03 19:56:43 +00001637#else
1638 _NOEXCEPT
1639#endif
Howard Hinnant0949eed2011-06-30 21:18:19 +00001640 : __r_(_VSTD::move(__str.__r_))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001641{
1642 __str.__zero();
Howard Hinnant499cea12013-08-23 17:37:05 +00001643#if _LIBCPP_DEBUG_LEVEL >= 2
1644 __get_db()->__insert_c(this);
1645 if (__is_long())
1646 __get_db()->swap(this, &__str);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001647#endif
1648}
1649
1650template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001651inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001652basic_string<_CharT, _Traits, _Allocator>::basic_string(basic_string&& __str, const allocator_type& __a)
Howard Hinnante32b5e22010-11-17 17:55:08 +00001653 : __r_(__a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001654{
Marshall Clowd5549cc2014-07-17 15:32:20 +00001655 if (__str.__is_long() && __a != __str.__alloc()) // copy, not move
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001656 __init(_VSTD::__to_raw_pointer(__str.__get_long_pointer()), __str.__get_long_size());
Marshall Clowd5549cc2014-07-17 15:32:20 +00001657 else
1658 {
1659 __r_.first().__r = __str.__r_.first().__r;
1660 __str.__zero();
1661 }
Howard Hinnant499cea12013-08-23 17:37:05 +00001662#if _LIBCPP_DEBUG_LEVEL >= 2
1663 __get_db()->__insert_c(this);
1664 if (__is_long())
1665 __get_db()->swap(this, &__str);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001666#endif
1667}
1668
Howard Hinnant73d21a42010-09-04 23:28:19 +00001669#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001670
1671template <class _CharT, class _Traits, class _Allocator>
1672void
1673basic_string<_CharT, _Traits, _Allocator>::__init(size_type __n, value_type __c)
1674{
1675 if (__n > max_size())
1676 this->__throw_length_error();
1677 pointer __p;
1678 if (__n < __min_cap)
1679 {
1680 __set_short_size(__n);
1681 __p = __get_short_pointer();
1682 }
1683 else
1684 {
1685 size_type __cap = __recommend(__n);
Howard Hinnante32b5e22010-11-17 17:55:08 +00001686 __p = __alloc_traits::allocate(__alloc(), __cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001687 __set_long_pointer(__p);
1688 __set_long_cap(__cap+1);
1689 __set_long_size(__n);
1690 }
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001691 traits_type::assign(_VSTD::__to_raw_pointer(__p), __n, __c);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001692 traits_type::assign(__p[__n], value_type());
1693}
1694
1695template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001696inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001697basic_string<_CharT, _Traits, _Allocator>::basic_string(size_type __n, value_type __c)
1698{
1699 __init(__n, __c);
Howard Hinnant499cea12013-08-23 17:37:05 +00001700#if _LIBCPP_DEBUG_LEVEL >= 2
1701 __get_db()->__insert_c(this);
1702#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001703}
1704
1705template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001706inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001707basic_string<_CharT, _Traits, _Allocator>::basic_string(size_type __n, value_type __c, const allocator_type& __a)
1708 : __r_(__a)
1709{
1710 __init(__n, __c);
Howard Hinnant499cea12013-08-23 17:37:05 +00001711#if _LIBCPP_DEBUG_LEVEL >= 2
1712 __get_db()->__insert_c(this);
1713#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001714}
1715
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001716template <class _CharT, class _Traits, class _Allocator>
1717basic_string<_CharT, _Traits, _Allocator>::basic_string(const basic_string& __str, size_type __pos, size_type __n,
1718 const allocator_type& __a)
1719 : __r_(__a)
1720{
1721 size_type __str_sz = __str.size();
1722 if (__pos > __str_sz)
1723 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00001724 __init(__str.data() + __pos, _VSTD::min(__n, __str_sz - __pos));
Howard Hinnant499cea12013-08-23 17:37:05 +00001725#if _LIBCPP_DEBUG_LEVEL >= 2
1726 __get_db()->__insert_c(this);
1727#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001728}
1729
1730template <class _CharT, class _Traits, class _Allocator>
Marshall Clowf4f7d8f2016-04-07 18:13:41 +00001731inline _LIBCPP_INLINE_VISIBILITY
1732basic_string<_CharT, _Traits, _Allocator>::basic_string(const basic_string& __str, size_type __pos,
1733 const allocator_type& __a)
1734 : __r_(__a)
1735{
1736 size_type __str_sz = __str.size();
1737 if (__pos > __str_sz)
1738 this->__throw_out_of_range();
1739 __init(__str.data() + __pos, __str_sz - __pos);
1740#if _LIBCPP_DEBUG_LEVEL >= 2
1741 __get_db()->__insert_c(this);
1742#endif
1743}
1744
1745template <class _CharT, class _Traits, class _Allocator>
Marshall Clowdb7fa112016-11-14 18:22:19 +00001746template <class _Tp>
1747basic_string<_CharT, _Traits, _Allocator>::basic_string(
1748 const _Tp& __t, size_type __pos, size_type __n, const allocator_type& __a,
1749 typename enable_if<__can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value, void>::type *)
1750 : __r_(__a)
1751{
1752 __self_view __sv = __self_view(__t).substr(__pos, __n);
1753 __init(__sv.data(), __sv.size());
1754#if _LIBCPP_DEBUG_LEVEL >= 2
1755 __get_db()->__insert_c(this);
1756#endif
1757}
1758
1759template <class _CharT, class _Traits, class _Allocator>
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001760inline _LIBCPP_INLINE_VISIBILITY
1761basic_string<_CharT, _Traits, _Allocator>::basic_string(__self_view __sv)
1762{
1763 __init(__sv.data(), __sv.size());
1764#if _LIBCPP_DEBUG_LEVEL >= 2
1765 __get_db()->__insert_c(this);
1766#endif
1767}
1768
1769template <class _CharT, class _Traits, class _Allocator>
1770inline _LIBCPP_INLINE_VISIBILITY
1771basic_string<_CharT, _Traits, _Allocator>::basic_string(__self_view __sv, const allocator_type& __a)
1772 : __r_(__a)
1773{
1774 __init(__sv.data(), __sv.size());
1775#if _LIBCPP_DEBUG_LEVEL >= 2
1776 __get_db()->__insert_c(this);
1777#endif
1778}
1779
1780template <class _CharT, class _Traits, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001781template <class _InputIterator>
1782typename enable_if
1783<
Marshall Clowdf9db312016-01-13 21:54:34 +00001784 __is_exactly_input_iterator<_InputIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001785 void
1786>::type
1787basic_string<_CharT, _Traits, _Allocator>::__init(_InputIterator __first, _InputIterator __last)
1788{
1789 __zero();
1790#ifndef _LIBCPP_NO_EXCEPTIONS
1791 try
1792 {
Howard Hinnant324bb032010-08-22 00:02:43 +00001793#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001794 for (; __first != __last; ++__first)
1795 push_back(*__first);
1796#ifndef _LIBCPP_NO_EXCEPTIONS
1797 }
1798 catch (...)
1799 {
1800 if (__is_long())
Howard Hinnante32b5e22010-11-17 17:55:08 +00001801 __alloc_traits::deallocate(__alloc(), __get_long_pointer(), __get_long_cap());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001802 throw;
1803 }
Howard Hinnant324bb032010-08-22 00:02:43 +00001804#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001805}
1806
1807template <class _CharT, class _Traits, class _Allocator>
1808template <class _ForwardIterator>
1809typename enable_if
1810<
1811 __is_forward_iterator<_ForwardIterator>::value,
1812 void
1813>::type
1814basic_string<_CharT, _Traits, _Allocator>::__init(_ForwardIterator __first, _ForwardIterator __last)
1815{
Howard Hinnant0949eed2011-06-30 21:18:19 +00001816 size_type __sz = static_cast<size_type>(_VSTD::distance(__first, __last));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001817 if (__sz > max_size())
1818 this->__throw_length_error();
1819 pointer __p;
1820 if (__sz < __min_cap)
1821 {
1822 __set_short_size(__sz);
1823 __p = __get_short_pointer();
1824 }
1825 else
1826 {
1827 size_type __cap = __recommend(__sz);
Howard Hinnante32b5e22010-11-17 17:55:08 +00001828 __p = __alloc_traits::allocate(__alloc(), __cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001829 __set_long_pointer(__p);
1830 __set_long_cap(__cap+1);
1831 __set_long_size(__sz);
1832 }
Eric Fiselierb9919752014-10-27 19:28:20 +00001833 for (; __first != __last; ++__first, (void) ++__p)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001834 traits_type::assign(*__p, *__first);
1835 traits_type::assign(*__p, value_type());
1836}
1837
1838template <class _CharT, class _Traits, class _Allocator>
1839template<class _InputIterator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001840inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001841basic_string<_CharT, _Traits, _Allocator>::basic_string(_InputIterator __first, _InputIterator __last)
1842{
1843 __init(__first, __last);
Howard Hinnant499cea12013-08-23 17:37:05 +00001844#if _LIBCPP_DEBUG_LEVEL >= 2
1845 __get_db()->__insert_c(this);
1846#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001847}
1848
1849template <class _CharT, class _Traits, class _Allocator>
1850template<class _InputIterator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001851inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001852basic_string<_CharT, _Traits, _Allocator>::basic_string(_InputIterator __first, _InputIterator __last,
1853 const allocator_type& __a)
1854 : __r_(__a)
1855{
1856 __init(__first, __last);
Howard Hinnant499cea12013-08-23 17:37:05 +00001857#if _LIBCPP_DEBUG_LEVEL >= 2
1858 __get_db()->__insert_c(this);
1859#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001860}
1861
Howard Hinnante3e32912011-08-12 21:56:02 +00001862#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
1863
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001864template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001865inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001866basic_string<_CharT, _Traits, _Allocator>::basic_string(initializer_list<value_type> __il)
1867{
1868 __init(__il.begin(), __il.end());
Howard Hinnant499cea12013-08-23 17:37:05 +00001869#if _LIBCPP_DEBUG_LEVEL >= 2
1870 __get_db()->__insert_c(this);
1871#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001872}
1873
1874template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001875inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001876basic_string<_CharT, _Traits, _Allocator>::basic_string(initializer_list<value_type> __il, const allocator_type& __a)
1877 : __r_(__a)
1878{
1879 __init(__il.begin(), __il.end());
Howard Hinnant499cea12013-08-23 17:37:05 +00001880#if _LIBCPP_DEBUG_LEVEL >= 2
1881 __get_db()->__insert_c(this);
1882#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001883}
1884
Howard Hinnante3e32912011-08-12 21:56:02 +00001885#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
1886
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001887template <class _CharT, class _Traits, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001888basic_string<_CharT, _Traits, _Allocator>::~basic_string()
1889{
Howard Hinnant499cea12013-08-23 17:37:05 +00001890#if _LIBCPP_DEBUG_LEVEL >= 2
1891 __get_db()->__erase_c(this);
1892#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001893 if (__is_long())
Howard Hinnante32b5e22010-11-17 17:55:08 +00001894 __alloc_traits::deallocate(__alloc(), __get_long_pointer(), __get_long_cap());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001895}
1896
1897template <class _CharT, class _Traits, class _Allocator>
1898void
1899basic_string<_CharT, _Traits, _Allocator>::__grow_by_and_replace
1900 (size_type __old_cap, size_type __delta_cap, size_type __old_sz,
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001901 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 +00001902{
1903 size_type __ms = max_size();
1904 if (__delta_cap > __ms - __old_cap - 1)
1905 this->__throw_length_error();
1906 pointer __old_p = __get_pointer();
1907 size_type __cap = __old_cap < __ms / 2 - __alignment ?
Howard Hinnant0949eed2011-06-30 21:18:19 +00001908 __recommend(_VSTD::max(__old_cap + __delta_cap, 2 * __old_cap)) :
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001909 __ms - 1;
Howard Hinnante32b5e22010-11-17 17:55:08 +00001910 pointer __p = __alloc_traits::allocate(__alloc(), __cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001911 __invalidate_all_iterators();
1912 if (__n_copy != 0)
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001913 traits_type::copy(_VSTD::__to_raw_pointer(__p),
1914 _VSTD::__to_raw_pointer(__old_p), __n_copy);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001915 if (__n_add != 0)
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001916 traits_type::copy(_VSTD::__to_raw_pointer(__p) + __n_copy, __p_new_stuff, __n_add);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001917 size_type __sec_cp_sz = __old_sz - __n_del - __n_copy;
1918 if (__sec_cp_sz != 0)
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001919 traits_type::copy(_VSTD::__to_raw_pointer(__p) + __n_copy + __n_add,
1920 _VSTD::__to_raw_pointer(__old_p) + __n_copy + __n_del, __sec_cp_sz);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001921 if (__old_cap+1 != __min_cap)
Howard Hinnante32b5e22010-11-17 17:55:08 +00001922 __alloc_traits::deallocate(__alloc(), __old_p, __old_cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001923 __set_long_pointer(__p);
1924 __set_long_cap(__cap+1);
1925 __old_sz = __n_copy + __n_add + __sec_cp_sz;
1926 __set_long_size(__old_sz);
1927 traits_type::assign(__p[__old_sz], value_type());
1928}
1929
1930template <class _CharT, class _Traits, class _Allocator>
1931void
1932basic_string<_CharT, _Traits, _Allocator>::__grow_by(size_type __old_cap, size_type __delta_cap, size_type __old_sz,
1933 size_type __n_copy, size_type __n_del, size_type __n_add)
1934{
1935 size_type __ms = max_size();
Marshall Clowecc8d7b2013-11-06 14:24:38 +00001936 if (__delta_cap > __ms - __old_cap)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001937 this->__throw_length_error();
1938 pointer __old_p = __get_pointer();
1939 size_type __cap = __old_cap < __ms / 2 - __alignment ?
Howard Hinnant0949eed2011-06-30 21:18:19 +00001940 __recommend(_VSTD::max(__old_cap + __delta_cap, 2 * __old_cap)) :
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001941 __ms - 1;
Howard Hinnante32b5e22010-11-17 17:55:08 +00001942 pointer __p = __alloc_traits::allocate(__alloc(), __cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001943 __invalidate_all_iterators();
1944 if (__n_copy != 0)
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001945 traits_type::copy(_VSTD::__to_raw_pointer(__p),
1946 _VSTD::__to_raw_pointer(__old_p), __n_copy);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001947 size_type __sec_cp_sz = __old_sz - __n_del - __n_copy;
1948 if (__sec_cp_sz != 0)
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001949 traits_type::copy(_VSTD::__to_raw_pointer(__p) + __n_copy + __n_add,
1950 _VSTD::__to_raw_pointer(__old_p) + __n_copy + __n_del,
1951 __sec_cp_sz);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001952 if (__old_cap+1 != __min_cap)
Howard Hinnante32b5e22010-11-17 17:55:08 +00001953 __alloc_traits::deallocate(__alloc(), __old_p, __old_cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001954 __set_long_pointer(__p);
1955 __set_long_cap(__cap+1);
1956}
1957
1958// assign
1959
1960template <class _CharT, class _Traits, class _Allocator>
1961basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001962basic_string<_CharT, _Traits, _Allocator>::assign(const value_type* __s, size_type __n)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001963{
Alp Tokerec34c482014-05-15 11:27:39 +00001964 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::assign received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001965 size_type __cap = capacity();
1966 if (__cap >= __n)
1967 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001968 value_type* __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001969 traits_type::move(__p, __s, __n);
1970 traits_type::assign(__p[__n], value_type());
1971 __set_size(__n);
1972 __invalidate_iterators_past(__n);
1973 }
1974 else
1975 {
1976 size_type __sz = size();
1977 __grow_by_and_replace(__cap, __n - __cap, __sz, 0, __sz, __n, __s);
1978 }
1979 return *this;
1980}
1981
1982template <class _CharT, class _Traits, class _Allocator>
1983basic_string<_CharT, _Traits, _Allocator>&
1984basic_string<_CharT, _Traits, _Allocator>::assign(size_type __n, value_type __c)
1985{
1986 size_type __cap = capacity();
1987 if (__cap < __n)
1988 {
1989 size_type __sz = size();
1990 __grow_by(__cap, __n - __cap, __sz, 0, __sz);
1991 }
1992 else
1993 __invalidate_iterators_past(__n);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001994 value_type* __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001995 traits_type::assign(__p, __n, __c);
1996 traits_type::assign(__p[__n], value_type());
1997 __set_size(__n);
1998 return *this;
1999}
2000
2001template <class _CharT, class _Traits, class _Allocator>
2002basic_string<_CharT, _Traits, _Allocator>&
2003basic_string<_CharT, _Traits, _Allocator>::operator=(value_type __c)
2004{
2005 pointer __p;
2006 if (__is_long())
2007 {
2008 __p = __get_long_pointer();
2009 __set_long_size(1);
2010 }
2011 else
2012 {
2013 __p = __get_short_pointer();
2014 __set_short_size(1);
2015 }
2016 traits_type::assign(*__p, __c);
2017 traits_type::assign(*++__p, value_type());
2018 __invalidate_iterators_past(1);
2019 return *this;
2020}
2021
2022template <class _CharT, class _Traits, class _Allocator>
Howard Hinnante32b5e22010-11-17 17:55:08 +00002023basic_string<_CharT, _Traits, _Allocator>&
2024basic_string<_CharT, _Traits, _Allocator>::operator=(const basic_string& __str)
2025{
2026 if (this != &__str)
2027 {
2028 __copy_assign_alloc(__str);
Marshall Clowf40ec902016-03-09 18:08:29 +00002029 assign(__str.data(), __str.size());
Howard Hinnante32b5e22010-11-17 17:55:08 +00002030 }
2031 return *this;
2032}
2033
2034#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
2035
2036template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002037inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnante32b5e22010-11-17 17:55:08 +00002038void
2039basic_string<_CharT, _Traits, _Allocator>::__move_assign(basic_string& __str, false_type)
Marshall Clowaf961ed2015-08-18 18:57:00 +00002040 _NOEXCEPT_(__alloc_traits::is_always_equal::value)
Howard Hinnante32b5e22010-11-17 17:55:08 +00002041{
2042 if (__alloc() != __str.__alloc())
2043 assign(__str);
2044 else
2045 __move_assign(__str, true_type());
2046}
2047
2048template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002049inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnante32b5e22010-11-17 17:55:08 +00002050void
2051basic_string<_CharT, _Traits, _Allocator>::__move_assign(basic_string& __str, true_type)
Marshall Clowaf961ed2015-08-18 18:57:00 +00002052#if _LIBCPP_STD_VER > 14
2053 _NOEXCEPT
2054#else
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00002055 _NOEXCEPT_(is_nothrow_move_assignable<allocator_type>::value)
Marshall Clowaf961ed2015-08-18 18:57:00 +00002056#endif
Howard Hinnante32b5e22010-11-17 17:55:08 +00002057{
2058 clear();
2059 shrink_to_fit();
Howard Hinnant3fdbbd22011-08-17 20:36:18 +00002060 __r_.first() = __str.__r_.first();
2061 __move_assign_alloc(__str);
Howard Hinnante32b5e22010-11-17 17:55:08 +00002062 __str.__zero();
2063}
2064
2065template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002066inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnante32b5e22010-11-17 17:55:08 +00002067basic_string<_CharT, _Traits, _Allocator>&
2068basic_string<_CharT, _Traits, _Allocator>::operator=(basic_string&& __str)
Marshall Clowaf961ed2015-08-18 18:57:00 +00002069 _NOEXCEPT_((__noexcept_move_assign_container<_Allocator, __alloc_traits>::value))
Howard Hinnante32b5e22010-11-17 17:55:08 +00002070{
2071 __move_assign(__str, integral_constant<bool,
2072 __alloc_traits::propagate_on_container_move_assignment::value>());
2073 return *this;
2074}
2075
2076#endif
2077
2078template <class _CharT, class _Traits, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002079template<class _InputIterator>
2080typename enable_if
2081<
Marshall Clowdf9db312016-01-13 21:54:34 +00002082 __is_exactly_input_iterator <_InputIterator>::value
2083 || !__libcpp_string_gets_noexcept_iterator<_InputIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002084 basic_string<_CharT, _Traits, _Allocator>&
2085>::type
2086basic_string<_CharT, _Traits, _Allocator>::assign(_InputIterator __first, _InputIterator __last)
2087{
Marshall Clowd979eed2016-09-05 01:54:30 +00002088 const basic_string __temp(__first, __last, __alloc());
Marshall Clowdf9db312016-01-13 21:54:34 +00002089 assign(__temp.data(), __temp.size());
Argyrios Kyrtzidis1dc6f7a2012-10-13 02:03:45 +00002090 return *this;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002091}
2092
2093template <class _CharT, class _Traits, class _Allocator>
2094template<class _ForwardIterator>
2095typename enable_if
2096<
Marshall Clowdf9db312016-01-13 21:54:34 +00002097 __is_forward_iterator<_ForwardIterator>::value
2098 && __libcpp_string_gets_noexcept_iterator<_ForwardIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002099 basic_string<_CharT, _Traits, _Allocator>&
2100>::type
2101basic_string<_CharT, _Traits, _Allocator>::assign(_ForwardIterator __first, _ForwardIterator __last)
2102{
Howard Hinnant0949eed2011-06-30 21:18:19 +00002103 size_type __n = static_cast<size_type>(_VSTD::distance(__first, __last));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002104 size_type __cap = capacity();
2105 if (__cap < __n)
2106 {
2107 size_type __sz = size();
2108 __grow_by(__cap, __n - __cap, __sz, 0, __sz);
2109 }
2110 else
2111 __invalidate_iterators_past(__n);
2112 pointer __p = __get_pointer();
2113 for (; __first != __last; ++__first, ++__p)
2114 traits_type::assign(*__p, *__first);
2115 traits_type::assign(*__p, value_type());
2116 __set_size(__n);
2117 return *this;
2118}
2119
2120template <class _CharT, class _Traits, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002121basic_string<_CharT, _Traits, _Allocator>&
2122basic_string<_CharT, _Traits, _Allocator>::assign(const basic_string& __str, size_type __pos, size_type __n)
2123{
2124 size_type __sz = __str.size();
2125 if (__pos > __sz)
2126 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002127 return assign(__str.data() + __pos, _VSTD::min(__n, __sz - __pos));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002128}
2129
2130template <class _CharT, class _Traits, class _Allocator>
Marshall Clow6ac8de02016-09-24 22:45:42 +00002131template <class _Tp>
2132typename enable_if
2133<
2134 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
2135 basic_string<_CharT, _Traits, _Allocator>&
2136>::type
2137basic_string<_CharT, _Traits, _Allocator>::assign(const _Tp & __t, size_type __pos, size_type __n)
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002138{
Marshall Clow6ac8de02016-09-24 22:45:42 +00002139 __self_view __sv = __t;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002140 size_type __sz = __sv.size();
2141 if (__pos > __sz)
2142 this->__throw_out_of_range();
2143 return assign(__sv.data() + __pos, _VSTD::min(__n, __sz - __pos));
2144}
2145
2146
2147template <class _CharT, class _Traits, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002148basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002149basic_string<_CharT, _Traits, _Allocator>::assign(const value_type* __s)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002150{
Alp Tokerec34c482014-05-15 11:27:39 +00002151 _LIBCPP_ASSERT(__s != nullptr, "string::assign received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002152 return assign(__s, traits_type::length(__s));
2153}
2154
2155// append
2156
2157template <class _CharT, class _Traits, class _Allocator>
2158basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002159basic_string<_CharT, _Traits, _Allocator>::append(const value_type* __s, size_type __n)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002160{
Alp Tokerec34c482014-05-15 11:27:39 +00002161 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::append received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002162 size_type __cap = capacity();
2163 size_type __sz = size();
2164 if (__cap - __sz >= __n)
2165 {
2166 if (__n)
2167 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002168 value_type* __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002169 traits_type::copy(__p + __sz, __s, __n);
2170 __sz += __n;
2171 __set_size(__sz);
2172 traits_type::assign(__p[__sz], value_type());
2173 }
2174 }
2175 else
2176 __grow_by_and_replace(__cap, __sz + __n - __cap, __sz, __sz, 0, __n, __s);
2177 return *this;
2178}
2179
2180template <class _CharT, class _Traits, class _Allocator>
2181basic_string<_CharT, _Traits, _Allocator>&
2182basic_string<_CharT, _Traits, _Allocator>::append(size_type __n, value_type __c)
2183{
2184 if (__n)
2185 {
2186 size_type __cap = capacity();
2187 size_type __sz = size();
2188 if (__cap - __sz < __n)
2189 __grow_by(__cap, __sz + __n - __cap, __sz, __sz, 0);
2190 pointer __p = __get_pointer();
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002191 traits_type::assign(_VSTD::__to_raw_pointer(__p) + __sz, __n, __c);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002192 __sz += __n;
2193 __set_size(__sz);
2194 traits_type::assign(__p[__sz], value_type());
2195 }
2196 return *this;
2197}
2198
2199template <class _CharT, class _Traits, class _Allocator>
2200void
2201basic_string<_CharT, _Traits, _Allocator>::push_back(value_type __c)
2202{
Howard Hinnant15467182013-04-30 21:44:48 +00002203 bool __is_short = !__is_long();
2204 size_type __cap;
2205 size_type __sz;
2206 if (__is_short)
2207 {
2208 __cap = __min_cap - 1;
2209 __sz = __get_short_size();
2210 }
2211 else
2212 {
2213 __cap = __get_long_cap() - 1;
2214 __sz = __get_long_size();
2215 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002216 if (__sz == __cap)
Howard Hinnant15467182013-04-30 21:44:48 +00002217 {
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002218 __grow_by(__cap, 1, __sz, __sz, 0);
Howard Hinnant15467182013-04-30 21:44:48 +00002219 __is_short = !__is_long();
2220 }
2221 pointer __p;
2222 if (__is_short)
2223 {
2224 __p = __get_short_pointer() + __sz;
2225 __set_short_size(__sz+1);
2226 }
2227 else
2228 {
2229 __p = __get_long_pointer() + __sz;
2230 __set_long_size(__sz+1);
2231 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002232 traits_type::assign(*__p, __c);
2233 traits_type::assign(*++__p, value_type());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002234}
2235
Marshall Clowac655ef2016-09-07 03:32:06 +00002236template <class _Tp>
Marshall Clowd979eed2016-09-05 01:54:30 +00002237bool __ptr_in_range (const _Tp* __p, const _Tp* __first, const _Tp* __last)
2238{
2239 return __first <= __p && __p < __last;
2240}
2241
Marshall Clowac655ef2016-09-07 03:32:06 +00002242template <class _Tp1, class _Tp2>
Eric Fiselier0e5ebbc2016-12-23 23:37:52 +00002243bool __ptr_in_range (const _Tp1*, const _Tp2*, const _Tp2*)
Marshall Clowac655ef2016-09-07 03:32:06 +00002244{
2245 return false;
2246}
2247
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002248template <class _CharT, class _Traits, class _Allocator>
2249template<class _ForwardIterator>
Eric Fiselier026d38e2016-10-31 02:46:25 +00002250basic_string<_CharT, _Traits, _Allocator>&
2251basic_string<_CharT, _Traits, _Allocator>::__append_forward_unsafe(
2252 _ForwardIterator __first, _ForwardIterator __last)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002253{
Eric Fiselier026d38e2016-10-31 02:46:25 +00002254 static_assert(__is_forward_iterator<_ForwardIterator>::value,
2255 "function requires a ForwardIterator");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002256 size_type __sz = size();
2257 size_type __cap = capacity();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002258 size_type __n = static_cast<size_type>(_VSTD::distance(__first, __last));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002259 if (__n)
2260 {
Marshall Clowd979eed2016-09-05 01:54:30 +00002261 if ( __ptr_in_range(&*__first, data(), data() + size()))
2262 {
2263 const basic_string __temp (__first, __last, __alloc());
2264 append(__temp.data(), __temp.size());
2265 }
2266 else
2267 {
2268 if (__cap - __sz < __n)
2269 __grow_by(__cap, __sz + __n - __cap, __sz, __sz, 0);
2270 pointer __p = __get_pointer() + __sz;
2271 for (; __first != __last; ++__p, ++__first)
2272 traits_type::assign(*__p, *__first);
2273 traits_type::assign(*__p, value_type());
2274 __set_size(__sz + __n);
2275 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002276 }
2277 return *this;
2278}
2279
2280template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002281inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002282basic_string<_CharT, _Traits, _Allocator>&
2283basic_string<_CharT, _Traits, _Allocator>::append(const basic_string& __str)
2284{
2285 return append(__str.data(), __str.size());
2286}
2287
2288template <class _CharT, class _Traits, class _Allocator>
2289basic_string<_CharT, _Traits, _Allocator>&
2290basic_string<_CharT, _Traits, _Allocator>::append(const basic_string& __str, size_type __pos, size_type __n)
2291{
2292 size_type __sz = __str.size();
2293 if (__pos > __sz)
2294 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002295 return append(__str.data() + __pos, _VSTD::min(__n, __sz - __pos));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002296}
2297
2298template <class _CharT, class _Traits, class _Allocator>
Marshall Clow42a87db2016-10-03 23:40:48 +00002299template <class _Tp>
Marshall Clow6ac8de02016-09-24 22:45:42 +00002300 typename enable_if
2301 <
2302 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
2303 basic_string<_CharT, _Traits, _Allocator>&
2304 >::type
2305basic_string<_CharT, _Traits, _Allocator>::append(const _Tp & __t, size_type __pos, size_type __n)
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002306{
Marshall Clow6ac8de02016-09-24 22:45:42 +00002307 __self_view __sv = __t;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002308 size_type __sz = __sv.size();
2309 if (__pos > __sz)
2310 this->__throw_out_of_range();
2311 return append(__sv.data() + __pos, _VSTD::min(__n, __sz - __pos));
2312}
2313
2314template <class _CharT, class _Traits, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002315basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002316basic_string<_CharT, _Traits, _Allocator>::append(const value_type* __s)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002317{
Alp Tokerec34c482014-05-15 11:27:39 +00002318 _LIBCPP_ASSERT(__s != nullptr, "string::append received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002319 return append(__s, traits_type::length(__s));
2320}
2321
2322// insert
2323
2324template <class _CharT, class _Traits, class _Allocator>
2325basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002326basic_string<_CharT, _Traits, _Allocator>::insert(size_type __pos, const value_type* __s, size_type __n)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002327{
Alp Tokerec34c482014-05-15 11:27:39 +00002328 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::insert received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002329 size_type __sz = size();
2330 if (__pos > __sz)
2331 this->__throw_out_of_range();
2332 size_type __cap = capacity();
2333 if (__cap - __sz >= __n)
2334 {
2335 if (__n)
2336 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002337 value_type* __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002338 size_type __n_move = __sz - __pos;
2339 if (__n_move != 0)
2340 {
2341 if (__p + __pos <= __s && __s < __p + __sz)
2342 __s += __n;
2343 traits_type::move(__p + __pos + __n, __p + __pos, __n_move);
2344 }
2345 traits_type::move(__p + __pos, __s, __n);
2346 __sz += __n;
2347 __set_size(__sz);
2348 traits_type::assign(__p[__sz], value_type());
2349 }
2350 }
2351 else
2352 __grow_by_and_replace(__cap, __sz + __n - __cap, __sz, __pos, 0, __n, __s);
2353 return *this;
2354}
2355
2356template <class _CharT, class _Traits, class _Allocator>
2357basic_string<_CharT, _Traits, _Allocator>&
2358basic_string<_CharT, _Traits, _Allocator>::insert(size_type __pos, size_type __n, value_type __c)
2359{
2360 size_type __sz = size();
2361 if (__pos > __sz)
2362 this->__throw_out_of_range();
2363 if (__n)
2364 {
2365 size_type __cap = capacity();
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002366 value_type* __p;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002367 if (__cap - __sz >= __n)
2368 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002369 __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002370 size_type __n_move = __sz - __pos;
2371 if (__n_move != 0)
2372 traits_type::move(__p + __pos + __n, __p + __pos, __n_move);
2373 }
2374 else
2375 {
2376 __grow_by(__cap, __sz + __n - __cap, __sz, __pos, 0, __n);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002377 __p = _VSTD::__to_raw_pointer(__get_long_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002378 }
2379 traits_type::assign(__p + __pos, __n, __c);
2380 __sz += __n;
2381 __set_size(__sz);
2382 traits_type::assign(__p[__sz], value_type());
2383 }
2384 return *this;
2385}
2386
2387template <class _CharT, class _Traits, class _Allocator>
2388template<class _InputIterator>
2389typename enable_if
2390<
Marshall Clowdf9db312016-01-13 21:54:34 +00002391 __is_exactly_input_iterator<_InputIterator>::value
2392 || !__libcpp_string_gets_noexcept_iterator<_InputIterator>::value,
2393 typename basic_string<_CharT, _Traits, _Allocator>::iterator
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002394>::type
2395basic_string<_CharT, _Traits, _Allocator>::insert(const_iterator __pos, _InputIterator __first, _InputIterator __last)
2396{
Howard Hinnant499cea12013-08-23 17:37:05 +00002397#if _LIBCPP_DEBUG_LEVEL >= 2
2398 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__pos) == this,
2399 "string::insert(iterator, range) called with an iterator not"
2400 " referring to this string");
2401#endif
Marshall Clowd979eed2016-09-05 01:54:30 +00002402 const basic_string __temp(__first, __last, __alloc());
Marshall Clowdf9db312016-01-13 21:54:34 +00002403 return insert(__pos, __temp.data(), __temp.data() + __temp.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002404}
2405
2406template <class _CharT, class _Traits, class _Allocator>
2407template<class _ForwardIterator>
2408typename enable_if
2409<
Marshall Clowdf9db312016-01-13 21:54:34 +00002410 __is_forward_iterator<_ForwardIterator>::value
2411 && __libcpp_string_gets_noexcept_iterator<_ForwardIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002412 typename basic_string<_CharT, _Traits, _Allocator>::iterator
2413>::type
2414basic_string<_CharT, _Traits, _Allocator>::insert(const_iterator __pos, _ForwardIterator __first, _ForwardIterator __last)
2415{
Howard Hinnant499cea12013-08-23 17:37:05 +00002416#if _LIBCPP_DEBUG_LEVEL >= 2
2417 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__pos) == this,
2418 "string::insert(iterator, range) called with an iterator not"
2419 " referring to this string");
2420#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002421 size_type __ip = static_cast<size_type>(__pos - begin());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002422 size_type __n = static_cast<size_type>(_VSTD::distance(__first, __last));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002423 if (__n)
2424 {
Marshall Clowd979eed2016-09-05 01:54:30 +00002425 if ( __ptr_in_range(&*__first, data(), data() + size()))
2426 {
2427 const basic_string __temp(__first, __last, __alloc());
2428 return insert(__pos, __temp.data(), __temp.data() + __temp.size());
2429 }
2430
2431 size_type __sz = size();
2432 size_type __cap = capacity();
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002433 value_type* __p;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002434 if (__cap - __sz >= __n)
2435 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002436 __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002437 size_type __n_move = __sz - __ip;
2438 if (__n_move != 0)
2439 traits_type::move(__p + __ip + __n, __p + __ip, __n_move);
2440 }
2441 else
2442 {
2443 __grow_by(__cap, __sz + __n - __cap, __sz, __ip, 0, __n);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002444 __p = _VSTD::__to_raw_pointer(__get_long_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002445 }
2446 __sz += __n;
2447 __set_size(__sz);
2448 traits_type::assign(__p[__sz], value_type());
2449 for (__p += __ip; __first != __last; ++__p, ++__first)
2450 traits_type::assign(*__p, *__first);
2451 }
2452 return begin() + __ip;
2453}
2454
2455template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002456inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002457basic_string<_CharT, _Traits, _Allocator>&
2458basic_string<_CharT, _Traits, _Allocator>::insert(size_type __pos1, const basic_string& __str)
2459{
2460 return insert(__pos1, __str.data(), __str.size());
2461}
2462
2463template <class _CharT, class _Traits, class _Allocator>
2464basic_string<_CharT, _Traits, _Allocator>&
2465basic_string<_CharT, _Traits, _Allocator>::insert(size_type __pos1, const basic_string& __str,
2466 size_type __pos2, size_type __n)
2467{
2468 size_type __str_sz = __str.size();
2469 if (__pos2 > __str_sz)
2470 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002471 return insert(__pos1, __str.data() + __pos2, _VSTD::min(__n, __str_sz - __pos2));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002472}
2473
2474template <class _CharT, class _Traits, class _Allocator>
Marshall Clow6ac8de02016-09-24 22:45:42 +00002475template <class _Tp>
2476typename enable_if
2477<
2478 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
2479 basic_string<_CharT, _Traits, _Allocator>&
2480>::type
2481basic_string<_CharT, _Traits, _Allocator>::insert(size_type __pos1, const _Tp& __t,
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002482 size_type __pos2, size_type __n)
2483{
Marshall Clow6ac8de02016-09-24 22:45:42 +00002484 __self_view __sv = __t;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002485 size_type __str_sz = __sv.size();
2486 if (__pos2 > __str_sz)
2487 this->__throw_out_of_range();
2488 return insert(__pos1, __sv.data() + __pos2, _VSTD::min(__n, __str_sz - __pos2));
2489}
2490
2491template <class _CharT, class _Traits, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002492basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002493basic_string<_CharT, _Traits, _Allocator>::insert(size_type __pos, const value_type* __s)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002494{
Alp Tokerec34c482014-05-15 11:27:39 +00002495 _LIBCPP_ASSERT(__s != nullptr, "string::insert received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002496 return insert(__pos, __s, traits_type::length(__s));
2497}
2498
2499template <class _CharT, class _Traits, class _Allocator>
2500typename basic_string<_CharT, _Traits, _Allocator>::iterator
2501basic_string<_CharT, _Traits, _Allocator>::insert(const_iterator __pos, value_type __c)
2502{
2503 size_type __ip = static_cast<size_type>(__pos - begin());
2504 size_type __sz = size();
2505 size_type __cap = capacity();
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002506 value_type* __p;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002507 if (__cap == __sz)
2508 {
2509 __grow_by(__cap, 1, __sz, __ip, 0, 1);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002510 __p = _VSTD::__to_raw_pointer(__get_long_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002511 }
2512 else
2513 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002514 __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002515 size_type __n_move = __sz - __ip;
2516 if (__n_move != 0)
2517 traits_type::move(__p + __ip + 1, __p + __ip, __n_move);
2518 }
2519 traits_type::assign(__p[__ip], __c);
2520 traits_type::assign(__p[++__sz], value_type());
2521 __set_size(__sz);
2522 return begin() + static_cast<difference_type>(__ip);
2523}
2524
2525template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002526inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002527typename basic_string<_CharT, _Traits, _Allocator>::iterator
2528basic_string<_CharT, _Traits, _Allocator>::insert(const_iterator __pos, size_type __n, value_type __c)
2529{
Howard Hinnant499cea12013-08-23 17:37:05 +00002530#if _LIBCPP_DEBUG_LEVEL >= 2
2531 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__pos) == this,
2532 "string::insert(iterator, n, value) called with an iterator not"
2533 " referring to this string");
2534#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002535 difference_type __p = __pos - begin();
2536 insert(static_cast<size_type>(__p), __n, __c);
2537 return begin() + __p;
2538}
2539
2540// replace
2541
2542template <class _CharT, class _Traits, class _Allocator>
2543basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002544basic_string<_CharT, _Traits, _Allocator>::replace(size_type __pos, size_type __n1, const value_type* __s, size_type __n2)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002545{
Alp Tokerec34c482014-05-15 11:27:39 +00002546 _LIBCPP_ASSERT(__n2 == 0 || __s != nullptr, "string::replace received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002547 size_type __sz = size();
2548 if (__pos > __sz)
2549 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002550 __n1 = _VSTD::min(__n1, __sz - __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002551 size_type __cap = capacity();
2552 if (__cap - __sz + __n1 >= __n2)
2553 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002554 value_type* __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002555 if (__n1 != __n2)
2556 {
2557 size_type __n_move = __sz - __pos - __n1;
2558 if (__n_move != 0)
2559 {
2560 if (__n1 > __n2)
2561 {
2562 traits_type::move(__p + __pos, __s, __n2);
2563 traits_type::move(__p + __pos + __n2, __p + __pos + __n1, __n_move);
2564 goto __finish;
2565 }
2566 if (__p + __pos < __s && __s < __p + __sz)
2567 {
2568 if (__p + __pos + __n1 <= __s)
2569 __s += __n2 - __n1;
2570 else // __p + __pos < __s < __p + __pos + __n1
2571 {
2572 traits_type::move(__p + __pos, __s, __n1);
2573 __pos += __n1;
2574 __s += __n2;
2575 __n2 -= __n1;
2576 __n1 = 0;
2577 }
2578 }
2579 traits_type::move(__p + __pos + __n2, __p + __pos + __n1, __n_move);
2580 }
2581 }
2582 traits_type::move(__p + __pos, __s, __n2);
2583__finish:
2584 __sz += __n2 - __n1;
2585 __set_size(__sz);
2586 __invalidate_iterators_past(__sz);
2587 traits_type::assign(__p[__sz], value_type());
2588 }
2589 else
2590 __grow_by_and_replace(__cap, __sz - __n1 + __n2 - __cap, __sz, __pos, __n1, __n2, __s);
2591 return *this;
2592}
2593
2594template <class _CharT, class _Traits, class _Allocator>
2595basic_string<_CharT, _Traits, _Allocator>&
2596basic_string<_CharT, _Traits, _Allocator>::replace(size_type __pos, size_type __n1, size_type __n2, value_type __c)
2597{
2598 size_type __sz = size();
2599 if (__pos > __sz)
2600 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002601 __n1 = _VSTD::min(__n1, __sz - __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002602 size_type __cap = capacity();
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002603 value_type* __p;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002604 if (__cap - __sz + __n1 >= __n2)
2605 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002606 __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002607 if (__n1 != __n2)
2608 {
2609 size_type __n_move = __sz - __pos - __n1;
2610 if (__n_move != 0)
2611 traits_type::move(__p + __pos + __n2, __p + __pos + __n1, __n_move);
2612 }
2613 }
2614 else
2615 {
2616 __grow_by(__cap, __sz - __n1 + __n2 - __cap, __sz, __pos, __n1, __n2);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002617 __p = _VSTD::__to_raw_pointer(__get_long_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002618 }
2619 traits_type::assign(__p + __pos, __n2, __c);
2620 __sz += __n2 - __n1;
2621 __set_size(__sz);
2622 __invalidate_iterators_past(__sz);
2623 traits_type::assign(__p[__sz], value_type());
2624 return *this;
2625}
2626
2627template <class _CharT, class _Traits, class _Allocator>
2628template<class _InputIterator>
2629typename enable_if
2630<
2631 __is_input_iterator<_InputIterator>::value,
2632 basic_string<_CharT, _Traits, _Allocator>&
2633>::type
Howard Hinnant7b2cb482010-11-17 21:11:40 +00002634basic_string<_CharT, _Traits, _Allocator>::replace(const_iterator __i1, const_iterator __i2,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002635 _InputIterator __j1, _InputIterator __j2)
2636{
Marshall Clowd979eed2016-09-05 01:54:30 +00002637 const basic_string __temp(__j1, __j2, __alloc());
Marshall Clowdf9db312016-01-13 21:54:34 +00002638 return this->replace(__i1, __i2, __temp);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002639}
2640
2641template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002642inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002643basic_string<_CharT, _Traits, _Allocator>&
2644basic_string<_CharT, _Traits, _Allocator>::replace(size_type __pos1, size_type __n1, const basic_string& __str)
2645{
2646 return replace(__pos1, __n1, __str.data(), __str.size());
2647}
2648
2649template <class _CharT, class _Traits, class _Allocator>
2650basic_string<_CharT, _Traits, _Allocator>&
2651basic_string<_CharT, _Traits, _Allocator>::replace(size_type __pos1, size_type __n1, const basic_string& __str,
2652 size_type __pos2, size_type __n2)
2653{
2654 size_type __str_sz = __str.size();
2655 if (__pos2 > __str_sz)
2656 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002657 return replace(__pos1, __n1, __str.data() + __pos2, _VSTD::min(__n2, __str_sz - __pos2));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002658}
2659
2660template <class _CharT, class _Traits, class _Allocator>
Marshall Clow6ac8de02016-09-24 22:45:42 +00002661template <class _Tp>
2662typename enable_if
2663<
2664 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
2665 basic_string<_CharT, _Traits, _Allocator>&
2666>::type
2667basic_string<_CharT, _Traits, _Allocator>::replace(size_type __pos1, size_type __n1, const _Tp& __t,
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002668 size_type __pos2, size_type __n2)
2669{
Marshall Clow6ac8de02016-09-24 22:45:42 +00002670 __self_view __sv = __t;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002671 size_type __str_sz = __sv.size();
2672 if (__pos2 > __str_sz)
2673 this->__throw_out_of_range();
2674 return replace(__pos1, __n1, __sv.data() + __pos2, _VSTD::min(__n2, __str_sz - __pos2));
2675}
2676
2677template <class _CharT, class _Traits, class _Allocator>
2678basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002679basic_string<_CharT, _Traits, _Allocator>::replace(size_type __pos, size_type __n1, const value_type* __s)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002680{
Alp Tokerec34c482014-05-15 11:27:39 +00002681 _LIBCPP_ASSERT(__s != nullptr, "string::replace received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002682 return replace(__pos, __n1, __s, traits_type::length(__s));
2683}
2684
2685template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002686inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002687basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant7b2cb482010-11-17 21:11:40 +00002688basic_string<_CharT, _Traits, _Allocator>::replace(const_iterator __i1, const_iterator __i2, const basic_string& __str)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002689{
2690 return replace(static_cast<size_type>(__i1 - begin()), static_cast<size_type>(__i2 - __i1),
2691 __str.data(), __str.size());
2692}
2693
2694template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002695inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002696basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002697basic_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 +00002698{
2699 return replace(static_cast<size_type>(__i1 - begin()), static_cast<size_type>(__i2 - __i1), __s, __n);
2700}
2701
2702template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002703inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002704basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002705basic_string<_CharT, _Traits, _Allocator>::replace(const_iterator __i1, const_iterator __i2, const value_type* __s)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002706{
2707 return replace(static_cast<size_type>(__i1 - begin()), static_cast<size_type>(__i2 - __i1), __s);
2708}
2709
2710template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002711inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002712basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant7b2cb482010-11-17 21:11:40 +00002713basic_string<_CharT, _Traits, _Allocator>::replace(const_iterator __i1, const_iterator __i2, size_type __n, value_type __c)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002714{
2715 return replace(static_cast<size_type>(__i1 - begin()), static_cast<size_type>(__i2 - __i1), __n, __c);
2716}
2717
2718// erase
2719
2720template <class _CharT, class _Traits, class _Allocator>
2721basic_string<_CharT, _Traits, _Allocator>&
2722basic_string<_CharT, _Traits, _Allocator>::erase(size_type __pos, size_type __n)
2723{
2724 size_type __sz = size();
2725 if (__pos > __sz)
2726 this->__throw_out_of_range();
2727 if (__n)
2728 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002729 value_type* __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002730 __n = _VSTD::min(__n, __sz - __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002731 size_type __n_move = __sz - __pos - __n;
2732 if (__n_move != 0)
2733 traits_type::move(__p + __pos, __p + __pos + __n, __n_move);
2734 __sz -= __n;
2735 __set_size(__sz);
2736 __invalidate_iterators_past(__sz);
2737 traits_type::assign(__p[__sz], value_type());
2738 }
2739 return *this;
2740}
2741
2742template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002743inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002744typename basic_string<_CharT, _Traits, _Allocator>::iterator
2745basic_string<_CharT, _Traits, _Allocator>::erase(const_iterator __pos)
2746{
Howard Hinnant499cea12013-08-23 17:37:05 +00002747#if _LIBCPP_DEBUG_LEVEL >= 2
2748 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__pos) == this,
2749 "string::erase(iterator) called with an iterator not"
2750 " referring to this string");
2751#endif
2752 _LIBCPP_ASSERT(__pos != end(),
2753 "string::erase(iterator) called with a non-dereferenceable iterator");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002754 iterator __b = begin();
2755 size_type __r = static_cast<size_type>(__pos - __b);
2756 erase(__r, 1);
Howard Hinnantec3773c2011-12-01 20:21:04 +00002757 return __b + static_cast<difference_type>(__r);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002758}
2759
2760template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002761inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002762typename basic_string<_CharT, _Traits, _Allocator>::iterator
2763basic_string<_CharT, _Traits, _Allocator>::erase(const_iterator __first, const_iterator __last)
2764{
Howard Hinnant499cea12013-08-23 17:37:05 +00002765#if _LIBCPP_DEBUG_LEVEL >= 2
2766 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__first) == this,
2767 "string::erase(iterator, iterator) called with an iterator not"
2768 " referring to this string");
2769#endif
2770 _LIBCPP_ASSERT(__first <= __last, "string::erase(first, last) called with invalid range");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002771 iterator __b = begin();
2772 size_type __r = static_cast<size_type>(__first - __b);
2773 erase(__r, static_cast<size_type>(__last - __first));
Howard Hinnantec3773c2011-12-01 20:21:04 +00002774 return __b + static_cast<difference_type>(__r);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002775}
2776
2777template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002778inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002779void
2780basic_string<_CharT, _Traits, _Allocator>::pop_back()
2781{
Howard Hinnant499cea12013-08-23 17:37:05 +00002782 _LIBCPP_ASSERT(!empty(), "string::pop_back(): string is already empty");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002783 size_type __sz;
2784 if (__is_long())
2785 {
2786 __sz = __get_long_size() - 1;
2787 __set_long_size(__sz);
2788 traits_type::assign(*(__get_long_pointer() + __sz), value_type());
2789 }
2790 else
2791 {
2792 __sz = __get_short_size() - 1;
2793 __set_short_size(__sz);
2794 traits_type::assign(*(__get_short_pointer() + __sz), value_type());
2795 }
2796 __invalidate_iterators_past(__sz);
2797}
2798
2799template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002800inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002801void
Howard Hinnanta6119a82011-05-29 19:57:12 +00002802basic_string<_CharT, _Traits, _Allocator>::clear() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002803{
2804 __invalidate_all_iterators();
2805 if (__is_long())
2806 {
2807 traits_type::assign(*__get_long_pointer(), value_type());
2808 __set_long_size(0);
2809 }
2810 else
2811 {
2812 traits_type::assign(*__get_short_pointer(), value_type());
2813 __set_short_size(0);
2814 }
2815}
2816
2817template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002818inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002819void
2820basic_string<_CharT, _Traits, _Allocator>::__erase_to_end(size_type __pos)
2821{
2822 if (__is_long())
2823 {
2824 traits_type::assign(*(__get_long_pointer() + __pos), value_type());
2825 __set_long_size(__pos);
2826 }
2827 else
2828 {
2829 traits_type::assign(*(__get_short_pointer() + __pos), value_type());
2830 __set_short_size(__pos);
2831 }
2832 __invalidate_iterators_past(__pos);
2833}
2834
2835template <class _CharT, class _Traits, class _Allocator>
2836void
2837basic_string<_CharT, _Traits, _Allocator>::resize(size_type __n, value_type __c)
2838{
2839 size_type __sz = size();
2840 if (__n > __sz)
2841 append(__n - __sz, __c);
2842 else
2843 __erase_to_end(__n);
2844}
2845
2846template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002847inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002848typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00002849basic_string<_CharT, _Traits, _Allocator>::max_size() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002850{
Howard Hinnante32b5e22010-11-17 17:55:08 +00002851 size_type __m = __alloc_traits::max_size(__alloc());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002852#if _LIBCPP_BIG_ENDIAN
Marshall Clow09f85502013-10-31 17:23:08 +00002853 return (__m <= ~__long_mask ? __m : __m/2) - __alignment;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002854#else
Marshall Clow09f85502013-10-31 17:23:08 +00002855 return __m - __alignment;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002856#endif
2857}
2858
2859template <class _CharT, class _Traits, class _Allocator>
2860void
2861basic_string<_CharT, _Traits, _Allocator>::reserve(size_type __res_arg)
2862{
2863 if (__res_arg > max_size())
2864 this->__throw_length_error();
2865 size_type __cap = capacity();
2866 size_type __sz = size();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002867 __res_arg = _VSTD::max(__res_arg, __sz);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002868 __res_arg = __recommend(__res_arg);
2869 if (__res_arg != __cap)
2870 {
2871 pointer __new_data, __p;
2872 bool __was_long, __now_long;
2873 if (__res_arg == __min_cap - 1)
2874 {
2875 __was_long = true;
2876 __now_long = false;
2877 __new_data = __get_short_pointer();
2878 __p = __get_long_pointer();
2879 }
2880 else
2881 {
2882 if (__res_arg > __cap)
Howard Hinnante32b5e22010-11-17 17:55:08 +00002883 __new_data = __alloc_traits::allocate(__alloc(), __res_arg+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002884 else
2885 {
2886 #ifndef _LIBCPP_NO_EXCEPTIONS
2887 try
2888 {
Howard Hinnant324bb032010-08-22 00:02:43 +00002889 #endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnante32b5e22010-11-17 17:55:08 +00002890 __new_data = __alloc_traits::allocate(__alloc(), __res_arg+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002891 #ifndef _LIBCPP_NO_EXCEPTIONS
2892 }
2893 catch (...)
2894 {
2895 return;
2896 }
Howard Hinnant324bb032010-08-22 00:02:43 +00002897 #else // _LIBCPP_NO_EXCEPTIONS
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002898 if (__new_data == nullptr)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002899 return;
Howard Hinnant324bb032010-08-22 00:02:43 +00002900 #endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002901 }
2902 __now_long = true;
2903 __was_long = __is_long();
2904 __p = __get_pointer();
2905 }
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002906 traits_type::copy(_VSTD::__to_raw_pointer(__new_data),
2907 _VSTD::__to_raw_pointer(__p), size()+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002908 if (__was_long)
Howard Hinnante32b5e22010-11-17 17:55:08 +00002909 __alloc_traits::deallocate(__alloc(), __p, __cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002910 if (__now_long)
2911 {
2912 __set_long_cap(__res_arg+1);
2913 __set_long_size(__sz);
2914 __set_long_pointer(__new_data);
2915 }
2916 else
2917 __set_short_size(__sz);
2918 __invalidate_all_iterators();
2919 }
2920}
2921
2922template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002923inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002924typename basic_string<_CharT, _Traits, _Allocator>::const_reference
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002925basic_string<_CharT, _Traits, _Allocator>::operator[](size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002926{
Howard Hinnant499cea12013-08-23 17:37:05 +00002927 _LIBCPP_ASSERT(__pos <= size(), "string index out of bounds");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002928 return *(data() + __pos);
2929}
2930
2931template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002932inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002933typename basic_string<_CharT, _Traits, _Allocator>::reference
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002934basic_string<_CharT, _Traits, _Allocator>::operator[](size_type __pos) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002935{
Howard Hinnant499cea12013-08-23 17:37:05 +00002936 _LIBCPP_ASSERT(__pos <= size(), "string index out of bounds");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002937 return *(__get_pointer() + __pos);
2938}
2939
2940template <class _CharT, class _Traits, class _Allocator>
2941typename basic_string<_CharT, _Traits, _Allocator>::const_reference
2942basic_string<_CharT, _Traits, _Allocator>::at(size_type __n) const
2943{
2944 if (__n >= size())
2945 this->__throw_out_of_range();
2946 return (*this)[__n];
2947}
2948
2949template <class _CharT, class _Traits, class _Allocator>
2950typename basic_string<_CharT, _Traits, _Allocator>::reference
2951basic_string<_CharT, _Traits, _Allocator>::at(size_type __n)
2952{
2953 if (__n >= size())
2954 this->__throw_out_of_range();
2955 return (*this)[__n];
2956}
2957
2958template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002959inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002960typename basic_string<_CharT, _Traits, _Allocator>::reference
2961basic_string<_CharT, _Traits, _Allocator>::front()
2962{
Howard Hinnant499cea12013-08-23 17:37:05 +00002963 _LIBCPP_ASSERT(!empty(), "string::front(): string is empty");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002964 return *__get_pointer();
2965}
2966
2967template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002968inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002969typename basic_string<_CharT, _Traits, _Allocator>::const_reference
2970basic_string<_CharT, _Traits, _Allocator>::front() const
2971{
Howard Hinnant499cea12013-08-23 17:37:05 +00002972 _LIBCPP_ASSERT(!empty(), "string::front(): string is empty");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002973 return *data();
2974}
2975
2976template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002977inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002978typename basic_string<_CharT, _Traits, _Allocator>::reference
2979basic_string<_CharT, _Traits, _Allocator>::back()
2980{
Howard Hinnant499cea12013-08-23 17:37:05 +00002981 _LIBCPP_ASSERT(!empty(), "string::back(): string is empty");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002982 return *(__get_pointer() + size() - 1);
2983}
2984
2985template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002986inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002987typename basic_string<_CharT, _Traits, _Allocator>::const_reference
2988basic_string<_CharT, _Traits, _Allocator>::back() const
2989{
Howard Hinnant499cea12013-08-23 17:37:05 +00002990 _LIBCPP_ASSERT(!empty(), "string::back(): string is empty");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002991 return *(data() + size() - 1);
2992}
2993
2994template <class _CharT, class _Traits, class _Allocator>
2995typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002996basic_string<_CharT, _Traits, _Allocator>::copy(value_type* __s, size_type __n, size_type __pos) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002997{
2998 size_type __sz = size();
2999 if (__pos > __sz)
3000 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00003001 size_type __rlen = _VSTD::min(__n, __sz - __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003002 traits_type::copy(__s, data() + __pos, __rlen);
3003 return __rlen;
3004}
3005
3006template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003007inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003008basic_string<_CharT, _Traits, _Allocator>
3009basic_string<_CharT, _Traits, _Allocator>::substr(size_type __pos, size_type __n) const
3010{
3011 return basic_string(*this, __pos, __n, __alloc());
3012}
3013
3014template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003015inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003016void
3017basic_string<_CharT, _Traits, _Allocator>::swap(basic_string& __str)
Marshall Clow7d914d12015-07-13 20:04:56 +00003018#if _LIBCPP_STD_VER >= 14
Eric Fiselier47257c42016-12-28 05:53:01 +00003019 _NOEXCEPT_DEBUG
Marshall Clow7d914d12015-07-13 20:04:56 +00003020#else
Eric Fiselier47257c42016-12-28 05:53:01 +00003021 _NOEXCEPT_DEBUG_(!__alloc_traits::propagate_on_container_swap::value ||
Marshall Clow7d914d12015-07-13 20:04:56 +00003022 __is_nothrow_swappable<allocator_type>::value)
3023#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003024{
Howard Hinnant499cea12013-08-23 17:37:05 +00003025#if _LIBCPP_DEBUG_LEVEL >= 2
3026 if (!__is_long())
3027 __get_db()->__invalidate_all(this);
3028 if (!__str.__is_long())
3029 __get_db()->__invalidate_all(&__str);
3030 __get_db()->swap(this, &__str);
3031#endif
Eric Fiselier47257c42016-12-28 05:53:01 +00003032 _LIBCPP_ASSERT(
3033 __alloc_traits::propagate_on_container_swap::value ||
3034 __alloc_traits::is_always_equal::value ||
3035 __alloc() == __str.__alloc(), "swapping non-equal allocators");
Howard Hinnant0949eed2011-06-30 21:18:19 +00003036 _VSTD::swap(__r_.first(), __str.__r_.first());
Marshall Clow7d914d12015-07-13 20:04:56 +00003037 __swap_allocator(__alloc(), __str.__alloc());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003038}
3039
3040// find
3041
3042template <class _Traits>
3043struct _LIBCPP_HIDDEN __traits_eq
3044{
3045 typedef typename _Traits::char_type char_type;
Howard Hinnanta6119a82011-05-29 19:57:12 +00003046 _LIBCPP_INLINE_VISIBILITY
3047 bool operator()(const char_type& __x, const char_type& __y) _NOEXCEPT
3048 {return _Traits::eq(__x, __y);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003049};
3050
3051template<class _CharT, class _Traits, class _Allocator>
3052typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003053basic_string<_CharT, _Traits, _Allocator>::find(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003054 size_type __pos,
3055 size_type __n) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003056{
Alp Tokerec34c482014-05-15 11:27:39 +00003057 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::find(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003058 return __str_find<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00003059 (data(), size(), __s, __pos, __n);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003060}
3061
3062template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003063inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003064typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003065basic_string<_CharT, _Traits, _Allocator>::find(const basic_string& __str,
3066 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003067{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003068 return __str_find<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00003069 (data(), size(), __str.data(), __pos, __str.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003070}
3071
3072template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003073inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003074typename basic_string<_CharT, _Traits, _Allocator>::size_type
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003075basic_string<_CharT, _Traits, _Allocator>::find(__self_view __sv,
3076 size_type __pos) const _NOEXCEPT
3077{
3078 return __str_find<value_type, size_type, traits_type, npos>
3079 (data(), size(), __sv.data(), __pos, __sv.size());
3080}
3081
3082template<class _CharT, class _Traits, class _Allocator>
3083inline _LIBCPP_INLINE_VISIBILITY
3084typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003085basic_string<_CharT, _Traits, _Allocator>::find(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003086 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003087{
Alp Tokerec34c482014-05-15 11:27:39 +00003088 _LIBCPP_ASSERT(__s != nullptr, "string::find(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003089 return __str_find<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00003090 (data(), size(), __s, __pos, traits_type::length(__s));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003091}
3092
3093template<class _CharT, class _Traits, class _Allocator>
3094typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003095basic_string<_CharT, _Traits, _Allocator>::find(value_type __c,
3096 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003097{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003098 return __str_find<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00003099 (data(), size(), __c, __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003100}
3101
3102// rfind
3103
3104template<class _CharT, class _Traits, class _Allocator>
3105typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003106basic_string<_CharT, _Traits, _Allocator>::rfind(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003107 size_type __pos,
3108 size_type __n) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003109{
Alp Tokerec34c482014-05-15 11:27:39 +00003110 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::rfind(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003111 return __str_rfind<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00003112 (data(), size(), __s, __pos, __n);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003113}
3114
3115template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003116inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003117typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003118basic_string<_CharT, _Traits, _Allocator>::rfind(const basic_string& __str,
3119 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003120{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003121 return __str_rfind<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00003122 (data(), size(), __str.data(), __pos, __str.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003123}
3124
3125template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003126inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003127typename basic_string<_CharT, _Traits, _Allocator>::size_type
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003128basic_string<_CharT, _Traits, _Allocator>::rfind(__self_view __sv,
3129 size_type __pos) const _NOEXCEPT
3130{
3131 return __str_rfind<value_type, size_type, traits_type, npos>
3132 (data(), size(), __sv.data(), __pos, __sv.size());
3133}
3134
3135template<class _CharT, class _Traits, class _Allocator>
3136inline _LIBCPP_INLINE_VISIBILITY
3137typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003138basic_string<_CharT, _Traits, _Allocator>::rfind(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003139 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003140{
Alp Tokerec34c482014-05-15 11:27:39 +00003141 _LIBCPP_ASSERT(__s != nullptr, "string::rfind(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003142 return __str_rfind<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00003143 (data(), size(), __s, __pos, traits_type::length(__s));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003144}
3145
3146template<class _CharT, class _Traits, class _Allocator>
3147typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003148basic_string<_CharT, _Traits, _Allocator>::rfind(value_type __c,
3149 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003150{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003151 return __str_rfind<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00003152 (data(), size(), __c, __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003153}
3154
3155// find_first_of
3156
3157template<class _CharT, class _Traits, class _Allocator>
3158typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003159basic_string<_CharT, _Traits, _Allocator>::find_first_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003160 size_type __pos,
3161 size_type __n) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003162{
Alp Tokerec34c482014-05-15 11:27:39 +00003163 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::find_first_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003164 return __str_find_first_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003165 (data(), size(), __s, __pos, __n);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003166}
3167
3168template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003169inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003170typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003171basic_string<_CharT, _Traits, _Allocator>::find_first_of(const basic_string& __str,
3172 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003173{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003174 return __str_find_first_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003175 (data(), size(), __str.data(), __pos, __str.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003176}
3177
3178template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003179inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003180typename basic_string<_CharT, _Traits, _Allocator>::size_type
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003181basic_string<_CharT, _Traits, _Allocator>::find_first_of(__self_view __sv,
3182 size_type __pos) const _NOEXCEPT
3183{
3184 return __str_find_first_of<value_type, size_type, traits_type, npos>
3185 (data(), size(), __sv.data(), __pos, __sv.size());
3186}
3187
3188template<class _CharT, class _Traits, class _Allocator>
3189inline _LIBCPP_INLINE_VISIBILITY
3190typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003191basic_string<_CharT, _Traits, _Allocator>::find_first_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003192 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003193{
Alp Tokerec34c482014-05-15 11:27:39 +00003194 _LIBCPP_ASSERT(__s != nullptr, "string::find_first_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003195 return __str_find_first_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003196 (data(), size(), __s, __pos, traits_type::length(__s));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003197}
3198
3199template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003200inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003201typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003202basic_string<_CharT, _Traits, _Allocator>::find_first_of(value_type __c,
3203 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003204{
3205 return find(__c, __pos);
3206}
3207
3208// find_last_of
3209
3210template<class _CharT, class _Traits, class _Allocator>
3211typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003212basic_string<_CharT, _Traits, _Allocator>::find_last_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003213 size_type __pos,
3214 size_type __n) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003215{
Alp Tokerec34c482014-05-15 11:27:39 +00003216 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::find_last_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003217 return __str_find_last_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003218 (data(), size(), __s, __pos, __n);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003219}
3220
3221template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003222inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003223typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003224basic_string<_CharT, _Traits, _Allocator>::find_last_of(const basic_string& __str,
3225 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003226{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003227 return __str_find_last_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003228 (data(), size(), __str.data(), __pos, __str.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003229}
3230
3231template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003232inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003233typename basic_string<_CharT, _Traits, _Allocator>::size_type
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003234basic_string<_CharT, _Traits, _Allocator>::find_last_of(__self_view __sv,
3235 size_type __pos) const _NOEXCEPT
3236{
3237 return __str_find_last_of<value_type, size_type, traits_type, npos>
3238 (data(), size(), __sv.data(), __pos, __sv.size());
3239}
3240
3241template<class _CharT, class _Traits, class _Allocator>
3242inline _LIBCPP_INLINE_VISIBILITY
3243typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003244basic_string<_CharT, _Traits, _Allocator>::find_last_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003245 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003246{
Alp Tokerec34c482014-05-15 11:27:39 +00003247 _LIBCPP_ASSERT(__s != nullptr, "string::find_last_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003248 return __str_find_last_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003249 (data(), size(), __s, __pos, traits_type::length(__s));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003250}
3251
3252template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003253inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003254typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003255basic_string<_CharT, _Traits, _Allocator>::find_last_of(value_type __c,
3256 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003257{
3258 return rfind(__c, __pos);
3259}
3260
3261// find_first_not_of
3262
3263template<class _CharT, class _Traits, class _Allocator>
3264typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003265basic_string<_CharT, _Traits, _Allocator>::find_first_not_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003266 size_type __pos,
3267 size_type __n) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003268{
Alp Tokerec34c482014-05-15 11:27:39 +00003269 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::find_first_not_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003270 return __str_find_first_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003271 (data(), size(), __s, __pos, __n);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003272}
3273
3274template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003275inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003276typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003277basic_string<_CharT, _Traits, _Allocator>::find_first_not_of(const basic_string& __str,
3278 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003279{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003280 return __str_find_first_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003281 (data(), size(), __str.data(), __pos, __str.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003282}
3283
3284template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003285inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003286typename basic_string<_CharT, _Traits, _Allocator>::size_type
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003287basic_string<_CharT, _Traits, _Allocator>::find_first_not_of(__self_view __sv,
3288 size_type __pos) const _NOEXCEPT
3289{
3290 return __str_find_first_not_of<value_type, size_type, traits_type, npos>
3291 (data(), size(), __sv.data(), __pos, __sv.size());
3292}
3293
3294template<class _CharT, class _Traits, class _Allocator>
3295inline _LIBCPP_INLINE_VISIBILITY
3296typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003297basic_string<_CharT, _Traits, _Allocator>::find_first_not_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003298 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003299{
Alp Tokerec34c482014-05-15 11:27:39 +00003300 _LIBCPP_ASSERT(__s != nullptr, "string::find_first_not_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003301 return __str_find_first_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003302 (data(), size(), __s, __pos, traits_type::length(__s));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003303}
3304
3305template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003306inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003307typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003308basic_string<_CharT, _Traits, _Allocator>::find_first_not_of(value_type __c,
3309 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003310{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003311 return __str_find_first_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003312 (data(), size(), __c, __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003313}
3314
3315// find_last_not_of
3316
3317template<class _CharT, class _Traits, class _Allocator>
3318typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003319basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003320 size_type __pos,
3321 size_type __n) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003322{
Alp Tokerec34c482014-05-15 11:27:39 +00003323 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::find_last_not_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003324 return __str_find_last_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003325 (data(), size(), __s, __pos, __n);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003326}
3327
3328template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003329inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003330typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003331basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(const basic_string& __str,
3332 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003333{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003334 return __str_find_last_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003335 (data(), size(), __str.data(), __pos, __str.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003336}
3337
3338template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003339inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003340typename basic_string<_CharT, _Traits, _Allocator>::size_type
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003341basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(__self_view __sv,
3342 size_type __pos) const _NOEXCEPT
3343{
3344 return __str_find_last_not_of<value_type, size_type, traits_type, npos>
3345 (data(), size(), __sv.data(), __pos, __sv.size());
3346}
3347
3348template<class _CharT, class _Traits, class _Allocator>
3349inline _LIBCPP_INLINE_VISIBILITY
3350typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003351basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003352 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003353{
Alp Tokerec34c482014-05-15 11:27:39 +00003354 _LIBCPP_ASSERT(__s != nullptr, "string::find_last_not_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003355 return __str_find_last_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003356 (data(), size(), __s, __pos, traits_type::length(__s));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003357}
3358
3359template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003360inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003361typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003362basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(value_type __c,
3363 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003364{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003365 return __str_find_last_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003366 (data(), size(), __c, __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003367}
3368
3369// compare
3370
3371template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003372inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003373int
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003374basic_string<_CharT, _Traits, _Allocator>::compare(__self_view __sv) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003375{
Howard Hinnantfa06d752011-07-24 21:45:06 +00003376 size_t __lhs_sz = size();
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003377 size_t __rhs_sz = __sv.size();
3378 int __result = traits_type::compare(data(), __sv.data(),
Howard Hinnantfa06d752011-07-24 21:45:06 +00003379 _VSTD::min(__lhs_sz, __rhs_sz));
3380 if (__result != 0)
3381 return __result;
3382 if (__lhs_sz < __rhs_sz)
3383 return -1;
3384 if (__lhs_sz > __rhs_sz)
3385 return 1;
3386 return 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003387}
3388
3389template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003390inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003391int
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003392basic_string<_CharT, _Traits, _Allocator>::compare(const basic_string& __str) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003393{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003394 return compare(__self_view(__str));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003395}
3396
3397template <class _CharT, class _Traits, class _Allocator>
3398int
Howard Hinnanta6119a82011-05-29 19:57:12 +00003399basic_string<_CharT, _Traits, _Allocator>::compare(size_type __pos1,
3400 size_type __n1,
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003401 const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003402 size_type __n2) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003403{
Alp Tokerec34c482014-05-15 11:27:39 +00003404 _LIBCPP_ASSERT(__n2 == 0 || __s != nullptr, "string::compare(): received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003405 size_type __sz = size();
3406 if (__pos1 > __sz || __n2 == npos)
3407 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00003408 size_type __rlen = _VSTD::min(__n1, __sz - __pos1);
3409 int __r = traits_type::compare(data() + __pos1, __s, _VSTD::min(__rlen, __n2));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003410 if (__r == 0)
3411 {
3412 if (__rlen < __n2)
3413 __r = -1;
3414 else if (__rlen > __n2)
3415 __r = 1;
3416 }
3417 return __r;
3418}
3419
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003420template <class _CharT, class _Traits, class _Allocator>
3421inline _LIBCPP_INLINE_VISIBILITY
3422int
3423basic_string<_CharT, _Traits, _Allocator>::compare(size_type __pos1,
3424 size_type __n1,
3425 __self_view __sv) const
3426{
3427 return compare(__pos1, __n1, __sv.data(), __sv.size());
3428}
3429
3430template <class _CharT, class _Traits, class _Allocator>
3431inline _LIBCPP_INLINE_VISIBILITY
3432int
3433basic_string<_CharT, _Traits, _Allocator>::compare(size_type __pos1,
3434 size_type __n1,
3435 const basic_string& __str) const
3436{
3437 return compare(__pos1, __n1, __str.data(), __str.size());
3438}
3439
3440template <class _CharT, class _Traits, class _Allocator>
Marshall Clow6ac8de02016-09-24 22:45:42 +00003441template <class _Tp>
3442typename enable_if
3443<
3444 __can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value,
3445 int
3446>::type
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003447basic_string<_CharT, _Traits, _Allocator>::compare(size_type __pos1,
3448 size_type __n1,
Marshall Clow6ac8de02016-09-24 22:45:42 +00003449 const _Tp& __t,
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003450 size_type __pos2,
3451 size_type __n2) const
3452{
Marshall Clow6ac8de02016-09-24 22:45:42 +00003453 __self_view __sv = __t;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003454 return __self_view(*this).substr(__pos1, __n1).compare(__sv.substr(__pos2, __n2));
3455}
3456
3457template <class _CharT, class _Traits, class _Allocator>
3458int
3459basic_string<_CharT, _Traits, _Allocator>::compare(size_type __pos1,
3460 size_type __n1,
3461 const basic_string& __str,
3462 size_type __pos2,
3463 size_type __n2) const
3464{
3465 return compare(__pos1, __n1, __self_view(__str), __pos2, __n2);
3466}
3467
3468template <class _CharT, class _Traits, class _Allocator>
3469int
3470basic_string<_CharT, _Traits, _Allocator>::compare(const value_type* __s) const _NOEXCEPT
3471{
3472 _LIBCPP_ASSERT(__s != nullptr, "string::compare(): received nullptr");
3473 return compare(0, npos, __s, traits_type::length(__s));
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 value_type* __s) const
3481{
3482 _LIBCPP_ASSERT(__s != nullptr, "string::compare(): received nullptr");
3483 return compare(__pos1, __n1, __s, traits_type::length(__s));
3484}
3485
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003486// __invariants
3487
3488template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003489inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003490bool
3491basic_string<_CharT, _Traits, _Allocator>::__invariants() const
3492{
3493 if (size() > capacity())
3494 return false;
3495 if (capacity() < __min_cap - 1)
3496 return false;
3497 if (data() == 0)
3498 return false;
3499 if (data()[size()] != value_type(0))
3500 return false;
3501 return true;
3502}
3503
3504// operator==
3505
3506template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003507inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003508bool
3509operator==(const basic_string<_CharT, _Traits, _Allocator>& __lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003510 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003511{
Howard Hinnant08dd2532013-04-22 23:55:13 +00003512 size_t __lhs_sz = __lhs.size();
3513 return __lhs_sz == __rhs.size() && _Traits::compare(__lhs.data(),
3514 __rhs.data(),
3515 __lhs_sz) == 0;
3516}
3517
3518template<class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003519inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant08dd2532013-04-22 23:55:13 +00003520bool
3521operator==(const basic_string<char, char_traits<char>, _Allocator>& __lhs,
3522 const basic_string<char, char_traits<char>, _Allocator>& __rhs) _NOEXCEPT
3523{
3524 size_t __lhs_sz = __lhs.size();
3525 if (__lhs_sz != __rhs.size())
3526 return false;
3527 const char* __lp = __lhs.data();
3528 const char* __rp = __rhs.data();
3529 if (__lhs.__is_long())
3530 return char_traits<char>::compare(__lp, __rp, __lhs_sz) == 0;
3531 for (; __lhs_sz != 0; --__lhs_sz, ++__lp, ++__rp)
3532 if (*__lp != *__rp)
3533 return false;
3534 return true;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003535}
3536
3537template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003538inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003539bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003540operator==(const _CharT* __lhs,
3541 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003542{
Eric Fiselier4f241822015-08-28 03:02:37 +00003543 typedef basic_string<_CharT, _Traits, _Allocator> _String;
3544 _LIBCPP_ASSERT(__lhs != nullptr, "operator==(char*, basic_string): received nullptr");
3545 size_t __lhs_len = _Traits::length(__lhs);
3546 if (__lhs_len != __rhs.size()) return false;
3547 return __rhs.compare(0, _String::npos, __lhs, __lhs_len) == 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003548}
3549
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003550template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003551inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003552bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003553operator==(const basic_string<_CharT,_Traits,_Allocator>& __lhs,
3554 const _CharT* __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003555{
Eric Fiselier4f241822015-08-28 03:02:37 +00003556 typedef basic_string<_CharT, _Traits, _Allocator> _String;
3557 _LIBCPP_ASSERT(__rhs != nullptr, "operator==(basic_string, char*): received nullptr");
3558 size_t __rhs_len = _Traits::length(__rhs);
3559 if (__rhs_len != __lhs.size()) return false;
3560 return __lhs.compare(0, _String::npos, __rhs, __rhs_len) == 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003561}
3562
Howard Hinnant324bb032010-08-22 00:02:43 +00003563template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003564inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003565bool
3566operator!=(const basic_string<_CharT,_Traits,_Allocator>& __lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003567 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003568{
3569 return !(__lhs == __rhs);
3570}
3571
3572template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003573inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003574bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003575operator!=(const _CharT* __lhs,
3576 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003577{
3578 return !(__lhs == __rhs);
3579}
3580
3581template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003582inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003583bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003584operator!=(const basic_string<_CharT, _Traits, _Allocator>& __lhs,
3585 const _CharT* __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003586{
3587 return !(__lhs == __rhs);
3588}
3589
3590// operator<
3591
3592template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003593inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003594bool
3595operator< (const basic_string<_CharT, _Traits, _Allocator>& __lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003596 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003597{
Howard Hinnant2644a7b2011-07-24 15:07:21 +00003598 return __lhs.compare(__rhs) < 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003599}
3600
3601template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003602inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003603bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003604operator< (const basic_string<_CharT, _Traits, _Allocator>& __lhs,
3605 const _CharT* __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003606{
Howard Hinnant2644a7b2011-07-24 15:07:21 +00003607 return __lhs.compare(__rhs) < 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003608}
3609
3610template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003611inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003612bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003613operator< (const _CharT* __lhs,
3614 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003615{
3616 return __rhs.compare(__lhs) > 0;
3617}
3618
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003619// operator>
3620
3621template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003622inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003623bool
3624operator> (const basic_string<_CharT, _Traits, _Allocator>& __lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003625 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003626{
3627 return __rhs < __lhs;
3628}
3629
3630template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003631inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003632bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003633operator> (const basic_string<_CharT, _Traits, _Allocator>& __lhs,
3634 const _CharT* __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003635{
3636 return __rhs < __lhs;
3637}
3638
3639template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003640inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003641bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003642operator> (const _CharT* __lhs,
3643 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003644{
3645 return __rhs < __lhs;
3646}
3647
3648// operator<=
3649
3650template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003651inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003652bool
3653operator<=(const basic_string<_CharT, _Traits, _Allocator>& __lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003654 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003655{
3656 return !(__rhs < __lhs);
3657}
3658
3659template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003660inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003661bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003662operator<=(const basic_string<_CharT, _Traits, _Allocator>& __lhs,
3663 const _CharT* __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003664{
3665 return !(__rhs < __lhs);
3666}
3667
3668template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003669inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003670bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003671operator<=(const _CharT* __lhs,
3672 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003673{
3674 return !(__rhs < __lhs);
3675}
3676
3677// operator>=
3678
3679template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003680inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003681bool
3682operator>=(const basic_string<_CharT, _Traits, _Allocator>& __lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003683 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003684{
3685 return !(__lhs < __rhs);
3686}
3687
3688template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003689inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003690bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003691operator>=(const basic_string<_CharT, _Traits, _Allocator>& __lhs,
3692 const _CharT* __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003693{
3694 return !(__lhs < __rhs);
3695}
3696
3697template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003698inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003699bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003700operator>=(const _CharT* __lhs,
3701 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003702{
3703 return !(__lhs < __rhs);
3704}
3705
3706// operator +
3707
3708template<class _CharT, class _Traits, class _Allocator>
3709basic_string<_CharT, _Traits, _Allocator>
3710operator+(const basic_string<_CharT, _Traits, _Allocator>& __lhs,
3711 const basic_string<_CharT, _Traits, _Allocator>& __rhs)
3712{
3713 basic_string<_CharT, _Traits, _Allocator> __r(__lhs.get_allocator());
3714 typename basic_string<_CharT, _Traits, _Allocator>::size_type __lhs_sz = __lhs.size();
3715 typename basic_string<_CharT, _Traits, _Allocator>::size_type __rhs_sz = __rhs.size();
3716 __r.__init(__lhs.data(), __lhs_sz, __lhs_sz + __rhs_sz);
3717 __r.append(__rhs.data(), __rhs_sz);
3718 return __r;
3719}
3720
3721template<class _CharT, class _Traits, class _Allocator>
3722basic_string<_CharT, _Traits, _Allocator>
3723operator+(const _CharT* __lhs , const basic_string<_CharT,_Traits,_Allocator>& __rhs)
3724{
3725 basic_string<_CharT, _Traits, _Allocator> __r(__rhs.get_allocator());
3726 typename basic_string<_CharT, _Traits, _Allocator>::size_type __lhs_sz = _Traits::length(__lhs);
3727 typename basic_string<_CharT, _Traits, _Allocator>::size_type __rhs_sz = __rhs.size();
3728 __r.__init(__lhs, __lhs_sz, __lhs_sz + __rhs_sz);
3729 __r.append(__rhs.data(), __rhs_sz);
3730 return __r;
3731}
3732
3733template<class _CharT, class _Traits, class _Allocator>
3734basic_string<_CharT, _Traits, _Allocator>
3735operator+(_CharT __lhs, const basic_string<_CharT,_Traits,_Allocator>& __rhs)
3736{
3737 basic_string<_CharT, _Traits, _Allocator> __r(__rhs.get_allocator());
3738 typename basic_string<_CharT, _Traits, _Allocator>::size_type __rhs_sz = __rhs.size();
3739 __r.__init(&__lhs, 1, 1 + __rhs_sz);
3740 __r.append(__rhs.data(), __rhs_sz);
3741 return __r;
3742}
3743
3744template<class _CharT, class _Traits, class _Allocator>
3745basic_string<_CharT, _Traits, _Allocator>
3746operator+(const basic_string<_CharT, _Traits, _Allocator>& __lhs, const _CharT* __rhs)
3747{
3748 basic_string<_CharT, _Traits, _Allocator> __r(__lhs.get_allocator());
3749 typename basic_string<_CharT, _Traits, _Allocator>::size_type __lhs_sz = __lhs.size();
3750 typename basic_string<_CharT, _Traits, _Allocator>::size_type __rhs_sz = _Traits::length(__rhs);
3751 __r.__init(__lhs.data(), __lhs_sz, __lhs_sz + __rhs_sz);
3752 __r.append(__rhs, __rhs_sz);
3753 return __r;
3754}
3755
3756template<class _CharT, class _Traits, class _Allocator>
3757basic_string<_CharT, _Traits, _Allocator>
3758operator+(const basic_string<_CharT, _Traits, _Allocator>& __lhs, _CharT __rhs)
3759{
3760 basic_string<_CharT, _Traits, _Allocator> __r(__lhs.get_allocator());
3761 typename basic_string<_CharT, _Traits, _Allocator>::size_type __lhs_sz = __lhs.size();
3762 __r.__init(__lhs.data(), __lhs_sz, __lhs_sz + 1);
3763 __r.push_back(__rhs);
3764 return __r;
3765}
3766
Howard Hinnant73d21a42010-09-04 23:28:19 +00003767#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003768
3769template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003770inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003771basic_string<_CharT, _Traits, _Allocator>
3772operator+(basic_string<_CharT, _Traits, _Allocator>&& __lhs, const basic_string<_CharT, _Traits, _Allocator>& __rhs)
3773{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003774 return _VSTD::move(__lhs.append(__rhs));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003775}
3776
3777template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003778inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003779basic_string<_CharT, _Traits, _Allocator>
3780operator+(const basic_string<_CharT, _Traits, _Allocator>& __lhs, basic_string<_CharT, _Traits, _Allocator>&& __rhs)
3781{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003782 return _VSTD::move(__rhs.insert(0, __lhs));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003783}
3784
3785template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003786inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003787basic_string<_CharT, _Traits, _Allocator>
3788operator+(basic_string<_CharT, _Traits, _Allocator>&& __lhs, basic_string<_CharT, _Traits, _Allocator>&& __rhs)
3789{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003790 return _VSTD::move(__lhs.append(__rhs));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003791}
3792
3793template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003794inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003795basic_string<_CharT, _Traits, _Allocator>
3796operator+(const _CharT* __lhs , basic_string<_CharT,_Traits,_Allocator>&& __rhs)
3797{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003798 return _VSTD::move(__rhs.insert(0, __lhs));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003799}
3800
3801template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003802inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003803basic_string<_CharT, _Traits, _Allocator>
3804operator+(_CharT __lhs, basic_string<_CharT,_Traits,_Allocator>&& __rhs)
3805{
3806 __rhs.insert(__rhs.begin(), __lhs);
Howard Hinnant0949eed2011-06-30 21:18:19 +00003807 return _VSTD::move(__rhs);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003808}
3809
3810template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003811inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003812basic_string<_CharT, _Traits, _Allocator>
3813operator+(basic_string<_CharT, _Traits, _Allocator>&& __lhs, const _CharT* __rhs)
3814{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003815 return _VSTD::move(__lhs.append(__rhs));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003816}
3817
3818template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003819inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003820basic_string<_CharT, _Traits, _Allocator>
3821operator+(basic_string<_CharT, _Traits, _Allocator>&& __lhs, _CharT __rhs)
3822{
3823 __lhs.push_back(__rhs);
Howard Hinnant0949eed2011-06-30 21:18:19 +00003824 return _VSTD::move(__lhs);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003825}
3826
Howard Hinnant73d21a42010-09-04 23:28:19 +00003827#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003828
3829// swap
3830
3831template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003832inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003833void
Howard Hinnanta6119a82011-05-29 19:57:12 +00003834swap(basic_string<_CharT, _Traits, _Allocator>& __lhs,
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00003835 basic_string<_CharT, _Traits, _Allocator>& __rhs)
3836 _NOEXCEPT_(_NOEXCEPT_(__lhs.swap(__rhs)))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003837{
3838 __lhs.swap(__rhs);
3839}
3840
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003841#ifndef _LIBCPP_HAS_NO_UNICODE_CHARS
3842
3843typedef basic_string<char16_t> u16string;
3844typedef basic_string<char32_t> u32string;
3845
Howard Hinnant324bb032010-08-22 00:02:43 +00003846#endif // _LIBCPP_HAS_NO_UNICODE_CHARS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003847
Howard Hinnant0f678bd2013-08-12 18:38:34 +00003848_LIBCPP_FUNC_VIS int stoi (const string& __str, size_t* __idx = 0, int __base = 10);
3849_LIBCPP_FUNC_VIS long stol (const string& __str, size_t* __idx = 0, int __base = 10);
3850_LIBCPP_FUNC_VIS unsigned long stoul (const string& __str, size_t* __idx = 0, int __base = 10);
3851_LIBCPP_FUNC_VIS long long stoll (const string& __str, size_t* __idx = 0, int __base = 10);
3852_LIBCPP_FUNC_VIS unsigned long long stoull(const string& __str, size_t* __idx = 0, int __base = 10);
Howard Hinnanta6a062d2010-06-02 18:20:39 +00003853
Howard Hinnant0f678bd2013-08-12 18:38:34 +00003854_LIBCPP_FUNC_VIS float stof (const string& __str, size_t* __idx = 0);
3855_LIBCPP_FUNC_VIS double stod (const string& __str, size_t* __idx = 0);
3856_LIBCPP_FUNC_VIS long double stold(const string& __str, size_t* __idx = 0);
Howard Hinnanta6a062d2010-06-02 18:20:39 +00003857
Howard Hinnant0f678bd2013-08-12 18:38:34 +00003858_LIBCPP_FUNC_VIS string to_string(int __val);
3859_LIBCPP_FUNC_VIS string to_string(unsigned __val);
3860_LIBCPP_FUNC_VIS string to_string(long __val);
3861_LIBCPP_FUNC_VIS string to_string(unsigned long __val);
3862_LIBCPP_FUNC_VIS string to_string(long long __val);
3863_LIBCPP_FUNC_VIS string to_string(unsigned long long __val);
3864_LIBCPP_FUNC_VIS string to_string(float __val);
3865_LIBCPP_FUNC_VIS string to_string(double __val);
3866_LIBCPP_FUNC_VIS string to_string(long double __val);
Howard Hinnanta6a062d2010-06-02 18:20:39 +00003867
Howard Hinnant0f678bd2013-08-12 18:38:34 +00003868_LIBCPP_FUNC_VIS int stoi (const wstring& __str, size_t* __idx = 0, int __base = 10);
3869_LIBCPP_FUNC_VIS long stol (const wstring& __str, size_t* __idx = 0, int __base = 10);
3870_LIBCPP_FUNC_VIS unsigned long stoul (const wstring& __str, size_t* __idx = 0, int __base = 10);
3871_LIBCPP_FUNC_VIS long long stoll (const wstring& __str, size_t* __idx = 0, int __base = 10);
3872_LIBCPP_FUNC_VIS unsigned long long stoull(const wstring& __str, size_t* __idx = 0, int __base = 10);
Howard Hinnanta6a062d2010-06-02 18:20:39 +00003873
Howard Hinnant0f678bd2013-08-12 18:38:34 +00003874_LIBCPP_FUNC_VIS float stof (const wstring& __str, size_t* __idx = 0);
3875_LIBCPP_FUNC_VIS double stod (const wstring& __str, size_t* __idx = 0);
3876_LIBCPP_FUNC_VIS long double stold(const wstring& __str, size_t* __idx = 0);
Howard Hinnanta6a062d2010-06-02 18:20:39 +00003877
Howard Hinnant0f678bd2013-08-12 18:38:34 +00003878_LIBCPP_FUNC_VIS wstring to_wstring(int __val);
3879_LIBCPP_FUNC_VIS wstring to_wstring(unsigned __val);
3880_LIBCPP_FUNC_VIS wstring to_wstring(long __val);
3881_LIBCPP_FUNC_VIS wstring to_wstring(unsigned long __val);
3882_LIBCPP_FUNC_VIS wstring to_wstring(long long __val);
3883_LIBCPP_FUNC_VIS wstring to_wstring(unsigned long long __val);
3884_LIBCPP_FUNC_VIS wstring to_wstring(float __val);
3885_LIBCPP_FUNC_VIS wstring to_wstring(double __val);
3886_LIBCPP_FUNC_VIS wstring to_wstring(long double __val);
Howard Hinnanta6a062d2010-06-02 18:20:39 +00003887
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003888template<class _CharT, class _Traits, class _Allocator>
3889 const typename basic_string<_CharT, _Traits, _Allocator>::size_type
3890 basic_string<_CharT, _Traits, _Allocator>::npos;
3891
3892template<class _CharT, class _Traits, class _Allocator>
Eric Fiselierc3589a82017-01-04 23:56:00 +00003893struct _LIBCPP_TEMPLATE_VIS hash<basic_string<_CharT, _Traits, _Allocator> >
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003894 : public unary_function<basic_string<_CharT, _Traits, _Allocator>, size_t>
3895{
3896 size_t
Howard Hinnanta6119a82011-05-29 19:57:12 +00003897 operator()(const basic_string<_CharT, _Traits, _Allocator>& __val) const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003898};
3899
3900template<class _CharT, class _Traits, class _Allocator>
3901size_t
3902hash<basic_string<_CharT, _Traits, _Allocator> >::operator()(
Howard Hinnanta6119a82011-05-29 19:57:12 +00003903 const basic_string<_CharT, _Traits, _Allocator>& __val) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003904{
Sean Huntaffd9e52011-07-29 23:31:56 +00003905 return __do_string_hash(__val.data(), __val.data() + __val.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003906}
3907
Howard Hinnant464aa5c2011-07-18 15:51:59 +00003908template<class _CharT, class _Traits, class _Allocator>
3909basic_ostream<_CharT, _Traits>&
3910operator<<(basic_ostream<_CharT, _Traits>& __os,
3911 const basic_string<_CharT, _Traits, _Allocator>& __str);
3912
3913template<class _CharT, class _Traits, class _Allocator>
3914basic_istream<_CharT, _Traits>&
3915operator>>(basic_istream<_CharT, _Traits>& __is,
3916 basic_string<_CharT, _Traits, _Allocator>& __str);
3917
3918template<class _CharT, class _Traits, class _Allocator>
3919basic_istream<_CharT, _Traits>&
3920getline(basic_istream<_CharT, _Traits>& __is,
3921 basic_string<_CharT, _Traits, _Allocator>& __str, _CharT __dlm);
3922
3923template<class _CharT, class _Traits, class _Allocator>
3924inline _LIBCPP_INLINE_VISIBILITY
3925basic_istream<_CharT, _Traits>&
3926getline(basic_istream<_CharT, _Traits>& __is,
3927 basic_string<_CharT, _Traits, _Allocator>& __str);
3928
3929#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
3930
3931template<class _CharT, class _Traits, class _Allocator>
3932inline _LIBCPP_INLINE_VISIBILITY
3933basic_istream<_CharT, _Traits>&
3934getline(basic_istream<_CharT, _Traits>&& __is,
3935 basic_string<_CharT, _Traits, _Allocator>& __str, _CharT __dlm);
3936
3937template<class _CharT, class _Traits, class _Allocator>
3938inline _LIBCPP_INLINE_VISIBILITY
3939basic_istream<_CharT, _Traits>&
3940getline(basic_istream<_CharT, _Traits>&& __is,
3941 basic_string<_CharT, _Traits, _Allocator>& __str);
3942
3943#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
3944
Howard Hinnant499cea12013-08-23 17:37:05 +00003945#if _LIBCPP_DEBUG_LEVEL >= 2
3946
3947template<class _CharT, class _Traits, class _Allocator>
3948bool
3949basic_string<_CharT, _Traits, _Allocator>::__dereferenceable(const const_iterator* __i) const
3950{
3951 return this->data() <= _VSTD::__to_raw_pointer(__i->base()) &&
3952 _VSTD::__to_raw_pointer(__i->base()) < this->data() + this->size();
3953}
3954
3955template<class _CharT, class _Traits, class _Allocator>
3956bool
3957basic_string<_CharT, _Traits, _Allocator>::__decrementable(const const_iterator* __i) const
3958{
3959 return this->data() < _VSTD::__to_raw_pointer(__i->base()) &&
3960 _VSTD::__to_raw_pointer(__i->base()) <= this->data() + this->size();
3961}
3962
3963template<class _CharT, class _Traits, class _Allocator>
3964bool
3965basic_string<_CharT, _Traits, _Allocator>::__addable(const const_iterator* __i, ptrdiff_t __n) const
3966{
3967 const value_type* __p = _VSTD::__to_raw_pointer(__i->base()) + __n;
3968 return this->data() <= __p && __p <= this->data() + this->size();
3969}
3970
3971template<class _CharT, class _Traits, class _Allocator>
3972bool
3973basic_string<_CharT, _Traits, _Allocator>::__subscriptable(const const_iterator* __i, ptrdiff_t __n) const
3974{
3975 const value_type* __p = _VSTD::__to_raw_pointer(__i->base()) + __n;
3976 return this->data() <= __p && __p < this->data() + this->size();
3977}
3978
3979#endif // _LIBCPP_DEBUG_LEVEL >= 2
3980
Marshall Clow15234322013-07-23 17:05:24 +00003981#if _LIBCPP_STD_VER > 11
3982// Literal suffixes for basic_string [basic.string.literals]
Marshall Clow8d9dd7a2013-10-05 21:18:32 +00003983inline namespace literals
Marshall Clow15234322013-07-23 17:05:24 +00003984{
3985 inline namespace string_literals
3986 {
Howard Hinnantab61b2c2013-08-07 19:39:48 +00003987 inline _LIBCPP_INLINE_VISIBILITY
3988 basic_string<char> operator "" s( const char *__str, size_t __len )
3989 {
3990 return basic_string<char> (__str, __len);
3991 }
Marshall Clow15234322013-07-23 17:05:24 +00003992
Howard Hinnantab61b2c2013-08-07 19:39:48 +00003993 inline _LIBCPP_INLINE_VISIBILITY
3994 basic_string<wchar_t> operator "" s( const wchar_t *__str, size_t __len )
3995 {
3996 return basic_string<wchar_t> (__str, __len);
3997 }
Marshall Clow15234322013-07-23 17:05:24 +00003998
Howard Hinnantab61b2c2013-08-07 19:39:48 +00003999 inline _LIBCPP_INLINE_VISIBILITY
4000 basic_string<char16_t> operator "" s( const char16_t *__str, size_t __len )
4001 {
4002 return basic_string<char16_t> (__str, __len);
4003 }
Marshall Clow15234322013-07-23 17:05:24 +00004004
Howard Hinnantab61b2c2013-08-07 19:39:48 +00004005 inline _LIBCPP_INLINE_VISIBILITY
4006 basic_string<char32_t> operator "" s( const char32_t *__str, size_t __len )
4007 {
4008 return basic_string<char32_t> (__str, __len);
4009 }
Marshall Clow15234322013-07-23 17:05:24 +00004010 }
4011}
4012#endif
4013
Eric Fiselier833d6442016-09-15 22:27:07 +00004014_LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS basic_string<char>)
4015_LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS basic_string<wchar_t>)
Howard Hinnant499cea12013-08-23 17:37:05 +00004016_LIBCPP_EXTERN_TEMPLATE(string operator+<char, char_traits<char>, allocator<char> >(char const*, string const&))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004017
4018_LIBCPP_END_NAMESPACE_STD
4019
4020#endif // _LIBCPP_STRING