blob: 94e70e0b159735e729ffac07cabd83769aa47841 [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());
105 explicit basic_string(const basic_string_view<charT, traits> sv, const Allocator& a = Allocator());
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000106 basic_string(const value_type* s, const allocator_type& a = allocator_type());
107 basic_string(const value_type* s, size_type n, const allocator_type& a = allocator_type());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000108 basic_string(size_type n, value_type c, const allocator_type& a = allocator_type());
109 template<class InputIterator>
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000110 basic_string(InputIterator begin, InputIterator end,
111 const allocator_type& a = allocator_type());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000112 basic_string(initializer_list<value_type>, const Allocator& = Allocator());
113 basic_string(const basic_string&, const Allocator&);
114 basic_string(basic_string&&, const Allocator&);
115
116 ~basic_string();
117
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000118 operator basic_string_view<charT, traits>() const noexcept;
119
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000120 basic_string& operator=(const basic_string& str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000121 basic_string& operator=(basic_string_view<charT, traits> sv);
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000122 basic_string& operator=(basic_string&& str)
123 noexcept(
Marshall Clowaf961ed2015-08-18 18:57:00 +0000124 allocator_type::propagate_on_container_move_assignment::value ||
125 allocator_type::is_always_equal::value ); // C++17
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000126 basic_string& operator=(const value_type* s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000127 basic_string& operator=(value_type c);
128 basic_string& operator=(initializer_list<value_type>);
129
Howard Hinnanta6119a82011-05-29 19:57:12 +0000130 iterator begin() noexcept;
131 const_iterator begin() const noexcept;
132 iterator end() noexcept;
133 const_iterator end() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000134
Howard Hinnanta6119a82011-05-29 19:57:12 +0000135 reverse_iterator rbegin() noexcept;
136 const_reverse_iterator rbegin() const noexcept;
137 reverse_iterator rend() noexcept;
138 const_reverse_iterator rend() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000139
Howard Hinnanta6119a82011-05-29 19:57:12 +0000140 const_iterator cbegin() const noexcept;
141 const_iterator cend() const noexcept;
142 const_reverse_iterator crbegin() const noexcept;
143 const_reverse_iterator crend() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000144
Howard Hinnanta6119a82011-05-29 19:57:12 +0000145 size_type size() const noexcept;
146 size_type length() const noexcept;
147 size_type max_size() const noexcept;
148 size_type capacity() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000149
150 void resize(size_type n, value_type c);
151 void resize(size_type n);
152
153 void reserve(size_type res_arg = 0);
154 void shrink_to_fit();
Howard Hinnanta6119a82011-05-29 19:57:12 +0000155 void clear() noexcept;
156 bool empty() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000157
158 const_reference operator[](size_type pos) const;
159 reference operator[](size_type pos);
160
161 const_reference at(size_type n) const;
162 reference at(size_type n);
163
164 basic_string& operator+=(const basic_string& str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000165 basic_string& operator+=(basic_string_view<charT, traits> sv);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000166 basic_string& operator+=(const value_type* s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000167 basic_string& operator+=(value_type c);
168 basic_string& operator+=(initializer_list<value_type>);
169
170 basic_string& append(const basic_string& str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000171 basic_string& append(basic_string_view<charT, traits> sv);
Marshall Clowa93b5e22014-03-04 19:17:19 +0000172 basic_string& append(const basic_string& str, size_type pos, size_type n=npos); //C++14
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000173 basic_string& append(basic_string_view<charT, traits> sv, size_type pos, size_type n=npos); //C++14
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000174 basic_string& append(const value_type* s, size_type n);
175 basic_string& append(const value_type* s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000176 basic_string& append(size_type n, value_type c);
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000177 template<class InputIterator>
178 basic_string& append(InputIterator first, InputIterator last);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000179 basic_string& append(initializer_list<value_type>);
180
181 void push_back(value_type c);
182 void pop_back();
183 reference front();
184 const_reference front() const;
185 reference back();
186 const_reference back() const;
187
188 basic_string& assign(const basic_string& str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000189 basic_string& assign(basic_string_view<charT, traits> sv);
Howard Hinnanta6119a82011-05-29 19:57:12 +0000190 basic_string& assign(basic_string&& str);
Marshall Clowa93b5e22014-03-04 19:17:19 +0000191 basic_string& assign(const basic_string& str, size_type pos, size_type n=npos); // C++14
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000192 basic_string& assign(basic_string_view<charT, traits> sv, size_type pos, size_type n=npos); // C++14
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000193 basic_string& assign(const value_type* s, size_type n);
194 basic_string& assign(const value_type* s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000195 basic_string& assign(size_type n, value_type c);
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000196 template<class InputIterator>
197 basic_string& assign(InputIterator first, InputIterator last);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000198 basic_string& assign(initializer_list<value_type>);
199
200 basic_string& insert(size_type pos1, const basic_string& str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000201 basic_string& insert(size_type pos1, basic_string_view<charT, traits> sv);
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000202 basic_string& insert(size_type pos1, const basic_string& str,
203 size_type pos2, size_type n);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000204 basic_string& insert(size_type pos1, basic_string_view<charT, traits> sv,
205 size_type pos2, size_type n);
Marshall Clowa93b5e22014-03-04 19:17:19 +0000206 basic_string& insert(size_type pos, const value_type* s, size_type n=npos); //C++14
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000207 basic_string& insert(size_type pos, const value_type* s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000208 basic_string& insert(size_type pos, size_type n, value_type c);
209 iterator insert(const_iterator p, value_type c);
210 iterator insert(const_iterator p, size_type n, value_type c);
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000211 template<class InputIterator>
212 iterator insert(const_iterator p, InputIterator first, InputIterator last);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000213 iterator insert(const_iterator p, initializer_list<value_type>);
214
215 basic_string& erase(size_type pos = 0, size_type n = npos);
216 iterator erase(const_iterator position);
217 iterator erase(const_iterator first, const_iterator last);
218
219 basic_string& replace(size_type pos1, size_type n1, const basic_string& str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000220 basic_string& replace(size_type pos1, size_type n1, basic_string_view<charT, traits> sv);
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000221 basic_string& replace(size_type pos1, size_type n1, const basic_string& str,
Marshall Clowa93b5e22014-03-04 19:17:19 +0000222 size_type pos2, size_type n2=npos); // C++14
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000223 basic_string& replace(size_type pos1, size_type n1, basic_string_view<charT, traits> sv,
224 size_type pos2, size_type n2=npos); // C++14
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000225 basic_string& replace(size_type pos, size_type n1, const value_type* s, size_type n2);
226 basic_string& replace(size_type pos, size_type n1, const value_type* s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000227 basic_string& replace(size_type pos, size_type n1, size_type n2, value_type c);
Howard Hinnant7b2cb482010-11-17 21:11:40 +0000228 basic_string& replace(const_iterator i1, const_iterator i2, const basic_string& str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000229 basic_string& replace(const_iterator i1, const_iterator i2, basic_string_view<charT, traits> sv);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000230 basic_string& replace(const_iterator i1, const_iterator i2, const value_type* s, size_type n);
231 basic_string& replace(const_iterator i1, const_iterator i2, const value_type* s);
Howard Hinnant7b2cb482010-11-17 21:11:40 +0000232 basic_string& replace(const_iterator i1, const_iterator i2, size_type n, value_type c);
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000233 template<class InputIterator>
Howard Hinnant7b2cb482010-11-17 21:11:40 +0000234 basic_string& replace(const_iterator i1, const_iterator i2, InputIterator j1, InputIterator j2);
235 basic_string& replace(const_iterator i1, const_iterator i2, initializer_list<value_type>);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000236
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000237 size_type copy(value_type* s, size_type n, size_type pos = 0) const;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000238 basic_string substr(size_type pos = 0, size_type n = npos) const;
239
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000240 void swap(basic_string& str)
Marshall Clow7d914d12015-07-13 20:04:56 +0000241 noexcept(allocator_traits<allocator_type>::propagate_on_container_swap::value ||
242 allocator_traits<allocator_type>::is_always_equal::value); // C++17
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000243
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000244 const value_type* c_str() const noexcept;
245 const value_type* data() const noexcept;
Marshall Clowf532a702016-03-08 15:44:30 +0000246 value_type* data() noexcept; // C++17
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000247
Howard Hinnanta6119a82011-05-29 19:57:12 +0000248 allocator_type get_allocator() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000249
Howard Hinnanta6119a82011-05-29 19:57:12 +0000250 size_type find(const basic_string& str, size_type pos = 0) const noexcept;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000251 size_type find(basic_string_view<charT, traits> sv, size_type pos = 0) const noexcept;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000252 size_type find(const value_type* s, size_type pos, size_type n) const noexcept;
253 size_type find(const value_type* s, size_type pos = 0) const noexcept;
Howard Hinnanta6119a82011-05-29 19:57:12 +0000254 size_type find(value_type c, size_type pos = 0) const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000255
Howard Hinnanta6119a82011-05-29 19:57:12 +0000256 size_type rfind(const basic_string& str, size_type pos = npos) const noexcept;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000257 size_type ffind(basic_string_view<charT, traits> sv, size_type pos = 0) const noexcept;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000258 size_type rfind(const value_type* s, size_type pos, size_type n) const noexcept;
259 size_type rfind(const value_type* s, size_type pos = npos) const noexcept;
Howard Hinnanta6119a82011-05-29 19:57:12 +0000260 size_type rfind(value_type c, size_type pos = npos) const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000261
Howard Hinnanta6119a82011-05-29 19:57:12 +0000262 size_type find_first_of(const basic_string& str, size_type pos = 0) const noexcept;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000263 size_type find_first_of(basic_string_view<charT, traits> sv, size_type pos = 0) const noexcept;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000264 size_type find_first_of(const value_type* s, size_type pos, size_type n) const noexcept;
265 size_type find_first_of(const value_type* s, size_type pos = 0) const noexcept;
Howard Hinnanta6119a82011-05-29 19:57:12 +0000266 size_type find_first_of(value_type c, size_type pos = 0) const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000267
Howard Hinnanta6119a82011-05-29 19:57:12 +0000268 size_type find_last_of(const basic_string& str, size_type pos = npos) const noexcept;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000269 size_type find_last_of(basic_string_view<charT, traits> sv, size_type pos = 0) const noexcept;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000270 size_type find_last_of(const value_type* s, size_type pos, size_type n) const noexcept;
271 size_type find_last_of(const value_type* s, size_type pos = npos) const noexcept;
Howard Hinnanta6119a82011-05-29 19:57:12 +0000272 size_type find_last_of(value_type c, size_type pos = npos) const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000273
Howard Hinnanta6119a82011-05-29 19:57:12 +0000274 size_type find_first_not_of(const basic_string& str, size_type pos = 0) const noexcept;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000275 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 +0000276 size_type find_first_not_of(const value_type* s, size_type pos, size_type n) const noexcept;
277 size_type find_first_not_of(const value_type* s, size_type pos = 0) const noexcept;
Howard Hinnanta6119a82011-05-29 19:57:12 +0000278 size_type find_first_not_of(value_type c, size_type pos = 0) const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000279
Howard Hinnanta6119a82011-05-29 19:57:12 +0000280 size_type find_last_not_of(const basic_string& str, size_type pos = npos) const noexcept;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000281 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 +0000282 size_type find_last_not_of(const value_type* s, size_type pos, size_type n) const noexcept;
283 size_type find_last_not_of(const value_type* s, size_type pos = npos) const noexcept;
Howard Hinnanta6119a82011-05-29 19:57:12 +0000284 size_type find_last_not_of(value_type c, size_type pos = npos) const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000285
Howard Hinnanta6119a82011-05-29 19:57:12 +0000286 int compare(const basic_string& str) const noexcept;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000287 int compare(basic_string_view<charT, traits> sv) const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000288 int compare(size_type pos1, size_type n1, const basic_string& str) const;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000289 int compare(size_type pos1, size_type n1, basic_string_view<charT, traits> sv) const;
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000290 int compare(size_type pos1, size_type n1, const basic_string& str,
Marshall Clowa93b5e22014-03-04 19:17:19 +0000291 size_type pos2, size_type n2=npos) const; // C++14
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000292 int compare(size_type pos1, size_type n1, basic_string_view<charT, traits> sv,
293 size_type pos2, size_type n2=npos) const; // C++14
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000294 int compare(const value_type* s) const noexcept;
295 int compare(size_type pos1, size_type n1, const value_type* s) const;
296 int compare(size_type pos1, size_type n1, const value_type* s, size_type n2) const;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000297
298 bool __invariants() const;
299};
300
301template<class charT, class traits, class Allocator>
302basic_string<charT, traits, Allocator>
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000303operator+(const basic_string<charT, traits, Allocator>& lhs,
304 const basic_string<charT, traits, Allocator>& rhs);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000305
306template<class charT, class traits, class Allocator>
307basic_string<charT, traits, Allocator>
308operator+(const charT* lhs , const basic_string<charT,traits,Allocator>&rhs);
309
310template<class charT, class traits, class Allocator>
311basic_string<charT, traits, Allocator>
312operator+(charT lhs, const basic_string<charT,traits,Allocator>& rhs);
313
314template<class charT, class traits, class Allocator>
315basic_string<charT, traits, Allocator>
316operator+(const basic_string<charT, traits, Allocator>& lhs, const charT* rhs);
317
318template<class charT, class traits, class Allocator>
319basic_string<charT, traits, Allocator>
320operator+(const basic_string<charT, traits, Allocator>& lhs, charT rhs);
321
322template<class charT, class traits, class Allocator>
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000323bool operator==(const basic_string<charT, traits, Allocator>& lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +0000324 const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000325
326template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000327bool operator==(const charT* lhs, const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000328
329template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000330bool operator==(const basic_string<charT,traits,Allocator>& lhs, const charT* rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000331
Howard Hinnant324bb032010-08-22 00:02:43 +0000332template<class charT, class traits, class Allocator>
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000333bool operator!=(const basic_string<charT,traits,Allocator>& lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +0000334 const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000335
336template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000337bool operator!=(const charT* lhs, const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000338
339template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000340bool operator!=(const basic_string<charT, traits, Allocator>& lhs, const charT* rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000341
342template<class charT, class traits, class Allocator>
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000343bool operator< (const basic_string<charT, traits, Allocator>& lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +0000344 const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000345
346template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000347bool operator< (const basic_string<charT, traits, Allocator>& lhs, const charT* rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000348
349template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000350bool operator< (const charT* lhs, const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000351
352template<class charT, class traits, class Allocator>
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000353bool operator> (const basic_string<charT, traits, Allocator>& lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +0000354 const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000355
356template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000357bool operator> (const basic_string<charT, traits, Allocator>& lhs, const charT* rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000358
359template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000360bool operator> (const charT* lhs, const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000361
362template<class charT, class traits, class Allocator>
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000363bool operator<=(const basic_string<charT, traits, Allocator>& lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +0000364 const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000365
366template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000367bool operator<=(const basic_string<charT, traits, Allocator>& lhs, const charT* rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000368
369template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000370bool operator<=(const charT* lhs, const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000371
372template<class charT, class traits, class Allocator>
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000373bool operator>=(const basic_string<charT, traits, Allocator>& lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +0000374 const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000375
376template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000377bool operator>=(const basic_string<charT, traits, Allocator>& lhs, const charT* rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000378
379template<class charT, class traits, class Allocator>
Howard Hinnanta6119a82011-05-29 19:57:12 +0000380bool operator>=(const charT* lhs, const basic_string<charT, traits, Allocator>& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000381
382template<class charT, class traits, class Allocator>
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000383void swap(basic_string<charT, traits, Allocator>& lhs,
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000384 basic_string<charT, traits, Allocator>& rhs)
385 noexcept(noexcept(lhs.swap(rhs)));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000386
387template<class charT, class traits, class Allocator>
388basic_istream<charT, traits>&
389operator>>(basic_istream<charT, traits>& is, basic_string<charT, traits, Allocator>& str);
390
391template<class charT, class traits, class Allocator>
392basic_ostream<charT, traits>&
393operator<<(basic_ostream<charT, traits>& os, const basic_string<charT, traits, Allocator>& str);
394
395template<class charT, class traits, class Allocator>
Howard Hinnant324bb032010-08-22 00:02:43 +0000396basic_istream<charT, traits>&
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000397getline(basic_istream<charT, traits>& is, basic_string<charT, traits, Allocator>& str,
398 charT delim);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000399
400template<class charT, class traits, class Allocator>
401basic_istream<charT, traits>&
402getline(basic_istream<charT, traits>& is, basic_string<charT, traits, Allocator>& str);
403
404typedef basic_string<char> string;
405typedef basic_string<wchar_t> wstring;
Howard Hinnanta6a062d2010-06-02 18:20:39 +0000406typedef basic_string<char16_t> u16string;
407typedef basic_string<char32_t> u32string;
408
409int stoi (const string& str, size_t* idx = 0, int base = 10);
410long stol (const string& str, size_t* idx = 0, int base = 10);
411unsigned long stoul (const string& str, size_t* idx = 0, int base = 10);
412long long stoll (const string& str, size_t* idx = 0, int base = 10);
413unsigned long long stoull(const string& str, size_t* idx = 0, int base = 10);
414
415float stof (const string& str, size_t* idx = 0);
416double stod (const string& str, size_t* idx = 0);
417long double stold(const string& str, size_t* idx = 0);
418
419string to_string(int val);
420string to_string(unsigned val);
421string to_string(long val);
422string to_string(unsigned long val);
423string to_string(long long val);
424string to_string(unsigned long long val);
425string to_string(float val);
426string to_string(double val);
427string to_string(long double val);
428
429int stoi (const wstring& str, size_t* idx = 0, int base = 10);
430long stol (const wstring& str, size_t* idx = 0, int base = 10);
431unsigned long stoul (const wstring& str, size_t* idx = 0, int base = 10);
432long long stoll (const wstring& str, size_t* idx = 0, int base = 10);
433unsigned long long stoull(const wstring& str, size_t* idx = 0, int base = 10);
434
435float stof (const wstring& str, size_t* idx = 0);
436double stod (const wstring& str, size_t* idx = 0);
437long double stold(const wstring& str, size_t* idx = 0);
438
439wstring to_wstring(int val);
440wstring to_wstring(unsigned val);
441wstring to_wstring(long val);
442wstring to_wstring(unsigned long val);
443wstring to_wstring(long long val);
444wstring to_wstring(unsigned long long val);
445wstring to_wstring(float val);
446wstring to_wstring(double val);
447wstring to_wstring(long double val);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000448
449template <> struct hash<string>;
450template <> struct hash<u16string>;
451template <> struct hash<u32string>;
452template <> struct hash<wstring>;
453
Marshall Clow15234322013-07-23 17:05:24 +0000454basic_string<char> operator "" s( const char *str, size_t len ); // C++14
455basic_string<wchar_t> operator "" s( const wchar_t *str, size_t len ); // C++14
456basic_string<char16_t> operator "" s( const char16_t *str, size_t len ); // C++14
457basic_string<char32_t> operator "" s( const char32_t *str, size_t len ); // C++14
458
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000459} // std
460
461*/
462
463#include <__config>
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000464#include <string_view>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000465#include <iosfwd>
466#include <cstring>
Howard Hinnantadff4892010-05-24 17:49:41 +0000467#include <cstdio> // For EOF.
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000468#include <cwchar>
469#include <algorithm>
470#include <iterator>
471#include <utility>
472#include <memory>
473#include <stdexcept>
474#include <type_traits>
475#include <initializer_list>
476#include <__functional_base>
477#ifndef _LIBCPP_HAS_NO_UNICODE_CHARS
478#include <cstdint>
479#endif
Howard Hinnant499cea12013-08-23 17:37:05 +0000480#if defined(_LIBCPP_NO_EXCEPTIONS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000481#include <cassert>
482#endif
483
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000484
Howard Hinnant66c6f972011-11-29 16:45:27 +0000485#include <__undef_min_max>
486
Eric Fiselierb9536102014-08-10 23:53:08 +0000487#include <__debug>
488
Howard Hinnant08e17472011-10-17 20:05:10 +0000489#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000490#pragma GCC system_header
Howard Hinnant08e17472011-10-17 20:05:10 +0000491#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000492
493_LIBCPP_BEGIN_NAMESPACE_STD
494
495// fpos
496
497template <class _StateT>
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000498class _LIBCPP_TYPE_VIS_ONLY fpos
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000499{
500private:
501 _StateT __st_;
502 streamoff __off_;
503public:
504 _LIBCPP_INLINE_VISIBILITY fpos(streamoff __off = streamoff()) : __st_(), __off_(__off) {}
505
506 _LIBCPP_INLINE_VISIBILITY operator streamoff() const {return __off_;}
507
508 _LIBCPP_INLINE_VISIBILITY _StateT state() const {return __st_;}
509 _LIBCPP_INLINE_VISIBILITY void state(_StateT __st) {__st_ = __st;}
510
511 _LIBCPP_INLINE_VISIBILITY fpos& operator+=(streamoff __off) {__off_ += __off; return *this;}
512 _LIBCPP_INLINE_VISIBILITY fpos operator+ (streamoff __off) const {fpos __t(*this); __t += __off; return __t;}
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};
516
517template <class _StateT>
518inline _LIBCPP_INLINE_VISIBILITY
519streamoff operator-(const fpos<_StateT>& __x, const fpos<_StateT>& __y)
520 {return streamoff(__x) - streamoff(__y);}
521
522template <class _StateT>
523inline _LIBCPP_INLINE_VISIBILITY
524bool operator==(const fpos<_StateT>& __x, const fpos<_StateT>& __y)
525 {return streamoff(__x) == streamoff(__y);}
526
527template <class _StateT>
528inline _LIBCPP_INLINE_VISIBILITY
529bool operator!=(const fpos<_StateT>& __x, const fpos<_StateT>& __y)
530 {return streamoff(__x) != streamoff(__y);}
531
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000532// basic_string
533
534template<class _CharT, class _Traits, class _Allocator>
535basic_string<_CharT, _Traits, _Allocator>
Howard Hinnant2b1b2d42011-06-14 19:58:17 +0000536operator+(const basic_string<_CharT, _Traits, _Allocator>& __x,
537 const basic_string<_CharT, _Traits, _Allocator>& __y);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000538
539template<class _CharT, class _Traits, class _Allocator>
540basic_string<_CharT, _Traits, _Allocator>
Howard Hinnant2b1b2d42011-06-14 19:58:17 +0000541operator+(const _CharT* __x, const basic_string<_CharT,_Traits,_Allocator>& __y);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000542
543template<class _CharT, class _Traits, class _Allocator>
544basic_string<_CharT, _Traits, _Allocator>
Howard Hinnant2b1b2d42011-06-14 19:58:17 +0000545operator+(_CharT __x, const basic_string<_CharT,_Traits,_Allocator>& __y);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000546
547template<class _CharT, class _Traits, class _Allocator>
548basic_string<_CharT, _Traits, _Allocator>
Howard Hinnant2b1b2d42011-06-14 19:58:17 +0000549operator+(const basic_string<_CharT, _Traits, _Allocator>& __x, const _CharT* __y);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000550
551template<class _CharT, class _Traits, class _Allocator>
552basic_string<_CharT, _Traits, _Allocator>
Howard Hinnant2b1b2d42011-06-14 19:58:17 +0000553operator+(const basic_string<_CharT, _Traits, _Allocator>& __x, _CharT __y);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000554
555template <bool>
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000556class _LIBCPP_TYPE_VIS_ONLY __basic_string_common
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000557{
558protected:
559 void __throw_length_error() const;
560 void __throw_out_of_range() const;
561};
562
563template <bool __b>
564void
565__basic_string_common<__b>::__throw_length_error() const
566{
567#ifndef _LIBCPP_NO_EXCEPTIONS
568 throw length_error("basic_string");
569#else
570 assert(!"basic_string length_error");
571#endif
572}
573
574template <bool __b>
575void
576__basic_string_common<__b>::__throw_out_of_range() const
577{
578#ifndef _LIBCPP_NO_EXCEPTIONS
579 throw out_of_range("basic_string");
580#else
581 assert(!"basic_string out_of_range");
582#endif
583}
584
Howard Hinnante9df0a52013-08-01 18:17:34 +0000585#ifdef _LIBCPP_MSVC
Howard Hinnant78b68282011-10-22 20:59:45 +0000586#pragma warning( push )
587#pragma warning( disable: 4231 )
Howard Hinnante9df0a52013-08-01 18:17:34 +0000588#endif // _LIBCPP_MSVC
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000589_LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS __basic_string_common<true>)
Howard Hinnante9df0a52013-08-01 18:17:34 +0000590#ifdef _LIBCPP_MSVC
Howard Hinnant78b68282011-10-22 20:59:45 +0000591#pragma warning( pop )
Howard Hinnante9df0a52013-08-01 18:17:34 +0000592#endif // _LIBCPP_MSVC
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000593
Marshall Clowdf9db312016-01-13 21:54:34 +0000594#ifdef _LIBCPP_NO_EXCEPTIONS
595template <class _Iter>
596struct __libcpp_string_gets_noexcept_iterator_impl : public true_type {};
597#elif defined(_LIBCPP_HAS_NO_NOEXCEPT)
598template <class _Iter>
599struct __libcpp_string_gets_noexcept_iterator_impl : public false_type {};
600#else
601template <class _Iter, bool = __is_forward_iterator<_Iter>::value>
602struct __libcpp_string_gets_noexcept_iterator_impl : public _LIBCPP_BOOL_CONSTANT((
603 noexcept(++(declval<_Iter&>())) &&
604 is_nothrow_assignable<_Iter&, _Iter>::value &&
605 noexcept(declval<_Iter>() == declval<_Iter>()) &&
606 noexcept(*declval<_Iter>())
607)) {};
608
609template <class _Iter>
610struct __libcpp_string_gets_noexcept_iterator_impl<_Iter, false> : public false_type {};
611#endif
612
613
614template <class _Iter>
615struct __libcpp_string_gets_noexcept_iterator
616 : public _LIBCPP_BOOL_CONSTANT(__libcpp_is_trivial_iterator<_Iter>::value || __libcpp_string_gets_noexcept_iterator_impl<_Iter>::value) {};
617
Evgeniy Stepanov4f01aa82015-10-13 23:48:28 +0000618#ifdef _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Howard Hinnant15467182013-04-30 21:44:48 +0000619
620template <class _CharT, size_t = sizeof(_CharT)>
621struct __padding
622{
623 unsigned char __xx[sizeof(_CharT)-1];
624};
625
626template <class _CharT>
627struct __padding<_CharT, 1>
628{
629};
630
Evgeniy Stepanov4f01aa82015-10-13 23:48:28 +0000631#endif // _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Howard Hinnant15467182013-04-30 21:44:48 +0000632
Howard Hinnant324bb032010-08-22 00:02:43 +0000633template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000634class _LIBCPP_TYPE_VIS_ONLY basic_string
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000635 : private __basic_string_common<true>
636{
637public:
638 typedef basic_string __self;
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000639 typedef basic_string_view<_CharT, _Traits> __self_view;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000640 typedef _Traits traits_type;
641 typedef typename traits_type::char_type value_type;
642 typedef _Allocator allocator_type;
Howard Hinnante32b5e22010-11-17 17:55:08 +0000643 typedef allocator_traits<allocator_type> __alloc_traits;
644 typedef typename __alloc_traits::size_type size_type;
645 typedef typename __alloc_traits::difference_type difference_type;
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000646 typedef value_type& reference;
647 typedef const value_type& const_reference;
Howard Hinnante32b5e22010-11-17 17:55:08 +0000648 typedef typename __alloc_traits::pointer pointer;
649 typedef typename __alloc_traits::const_pointer const_pointer;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000650
Howard Hinnant499cea12013-08-23 17:37:05 +0000651 static_assert(is_pod<value_type>::value, "Character type of basic_string must be a POD");
652 static_assert((is_same<_CharT, value_type>::value),
653 "traits_type::char_type must be the same type as CharT");
654 static_assert((is_same<typename allocator_type::value_type, value_type>::value),
655 "Allocator::value_type must be same type as value_type");
656#if defined(_LIBCPP_RAW_ITERATORS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000657 typedef pointer iterator;
658 typedef const_pointer const_iterator;
Howard Hinnant324bb032010-08-22 00:02:43 +0000659#else // defined(_LIBCPP_RAW_ITERATORS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000660 typedef __wrap_iter<pointer> iterator;
661 typedef __wrap_iter<const_pointer> const_iterator;
Howard Hinnant324bb032010-08-22 00:02:43 +0000662#endif // defined(_LIBCPP_RAW_ITERATORS)
Howard Hinnant0949eed2011-06-30 21:18:19 +0000663 typedef _VSTD::reverse_iterator<iterator> reverse_iterator;
664 typedef _VSTD::reverse_iterator<const_iterator> const_reverse_iterator;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000665
666private:
Howard Hinnant15467182013-04-30 21:44:48 +0000667
Evgeniy Stepanov4f01aa82015-10-13 23:48:28 +0000668#ifdef _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Howard Hinnant15467182013-04-30 21:44:48 +0000669
670 struct __long
671 {
672 pointer __data_;
673 size_type __size_;
674 size_type __cap_;
675 };
676
677#if _LIBCPP_BIG_ENDIAN
678 enum {__short_mask = 0x01};
679 enum {__long_mask = 0x1ul};
680#else // _LIBCPP_BIG_ENDIAN
681 enum {__short_mask = 0x80};
682 enum {__long_mask = ~(size_type(~0) >> 1)};
683#endif // _LIBCPP_BIG_ENDIAN
684
685 enum {__min_cap = (sizeof(__long) - 1)/sizeof(value_type) > 2 ?
686 (sizeof(__long) - 1)/sizeof(value_type) : 2};
687
688 struct __short
689 {
690 value_type __data_[__min_cap];
691 struct
692 : __padding<value_type>
693 {
694 unsigned char __size_;
695 };
696 };
697
698#else
699
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000700 struct __long
701 {
702 size_type __cap_;
703 size_type __size_;
704 pointer __data_;
705 };
706
707#if _LIBCPP_BIG_ENDIAN
708 enum {__short_mask = 0x80};
709 enum {__long_mask = ~(size_type(~0) >> 1)};
Howard Hinnant324bb032010-08-22 00:02:43 +0000710#else // _LIBCPP_BIG_ENDIAN
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000711 enum {__short_mask = 0x01};
Howard Hinnantec3773c2011-12-01 20:21:04 +0000712 enum {__long_mask = 0x1ul};
Howard Hinnant324bb032010-08-22 00:02:43 +0000713#endif // _LIBCPP_BIG_ENDIAN
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000714
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000715 enum {__min_cap = (sizeof(__long) - 1)/sizeof(value_type) > 2 ?
716 (sizeof(__long) - 1)/sizeof(value_type) : 2};
717
718 struct __short
719 {
720 union
721 {
722 unsigned char __size_;
Howard Hinnant9c0df142012-10-30 19:06:59 +0000723 value_type __lx;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000724 };
725 value_type __data_[__min_cap];
726 };
727
Evgeniy Stepanov4f01aa82015-10-13 23:48:28 +0000728#endif // _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Howard Hinnant15467182013-04-30 21:44:48 +0000729
Howard Hinnant499cea12013-08-23 17:37:05 +0000730 union __ulx{__long __lx; __short __lxx;};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000731
Howard Hinnant499cea12013-08-23 17:37:05 +0000732 enum {__n_words = sizeof(__ulx) / sizeof(size_type)};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000733
734 struct __raw
735 {
736 size_type __words[__n_words];
737 };
738
739 struct __rep
740 {
741 union
742 {
743 __long __l;
744 __short __s;
745 __raw __r;
746 };
747 };
748
749 __compressed_pair<__rep, allocator_type> __r_;
750
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000751public:
752 static const size_type npos = -1;
753
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000754 _LIBCPP_INLINE_VISIBILITY basic_string()
755 _NOEXCEPT_(is_nothrow_default_constructible<allocator_type>::value);
Marshall Clow7b193f72015-06-03 19:56:43 +0000756
757 _LIBCPP_INLINE_VISIBILITY explicit basic_string(const allocator_type& __a)
758#if _LIBCPP_STD_VER <= 14
759 _NOEXCEPT_(is_nothrow_copy_constructible<allocator_type>::value);
760#else
761 _NOEXCEPT;
762#endif
763
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000764 basic_string(const basic_string& __str);
765 basic_string(const basic_string& __str, const allocator_type& __a);
Marshall Clow7b193f72015-06-03 19:56:43 +0000766
Howard Hinnant73d21a42010-09-04 23:28:19 +0000767#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant9f193f22011-01-26 00:06:59 +0000768 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000769 basic_string(basic_string&& __str)
Marshall Clow7b193f72015-06-03 19:56:43 +0000770#if _LIBCPP_STD_VER <= 14
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000771 _NOEXCEPT_(is_nothrow_move_constructible<allocator_type>::value);
Marshall Clow7b193f72015-06-03 19:56:43 +0000772#else
773 _NOEXCEPT;
774#endif
775
Howard Hinnant9f193f22011-01-26 00:06:59 +0000776 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000777 basic_string(basic_string&& __str, const allocator_type& __a);
Howard Hinnant73d21a42010-09-04 23:28:19 +0000778#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000779 _LIBCPP_INLINE_VISIBILITY basic_string(const value_type* __s);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000780 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000781 basic_string(const value_type* __s, const allocator_type& __a);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000782 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000783 basic_string(const value_type* __s, size_type __n);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000784 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000785 basic_string(const value_type* __s, size_type __n, const allocator_type& __a);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000786 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000787 basic_string(size_type __n, value_type __c);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000788 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000789 basic_string(size_type __n, value_type __c, const allocator_type& __a);
Marshall Clowf4f7d8f2016-04-07 18:13:41 +0000790 basic_string(const basic_string& __str, size_type __pos, size_type __n,
791 const allocator_type& __a = allocator_type());
792 _LIBCPP_INLINE_VISIBILITY
793 basic_string(const basic_string& __str, size_type __pos,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000794 const allocator_type& __a = allocator_type());
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000795 _LIBCPP_INLINE_VISIBILITY explicit
796 basic_string(__self_view __sv);
797 _LIBCPP_INLINE_VISIBILITY
798 basic_string(__self_view __sv, const allocator_type& __a);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000799 template<class _InputIterator>
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000800 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000801 basic_string(_InputIterator __first, _InputIterator __last);
802 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, const allocator_type& __a);
Howard Hinnante3e32912011-08-12 21:56:02 +0000805#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000806 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000807 basic_string(initializer_list<value_type> __il);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000808 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000809 basic_string(initializer_list<value_type> __il, const allocator_type& __a);
Howard Hinnante3e32912011-08-12 21:56:02 +0000810#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000811
812 ~basic_string();
813
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000814 _LIBCPP_INLINE_VISIBILITY
815 operator __self_view() const _NOEXCEPT { return __self_view(data(), size()); }
816
Howard Hinnante32b5e22010-11-17 17:55:08 +0000817 basic_string& operator=(const basic_string& __str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000818 _LIBCPP_INLINE_VISIBILITY
819 basic_string& operator=(__self_view __sv) {return assign(__sv);}
Howard Hinnant73d21a42010-09-04 23:28:19 +0000820#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000821 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000822 basic_string& operator=(basic_string&& __str)
Marshall Clowaf961ed2015-08-18 18:57:00 +0000823 _NOEXCEPT_((__noexcept_move_assign_container<_Allocator, __alloc_traits>::value));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000824#endif
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000825 _LIBCPP_INLINE_VISIBILITY basic_string& operator=(const value_type* __s) {return assign(__s);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000826 basic_string& operator=(value_type __c);
Howard Hinnante3e32912011-08-12 21:56:02 +0000827#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnant8d7a9552010-09-23 17:31:07 +0000828 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000829 basic_string& operator=(initializer_list<value_type> __il) {return assign(__il.begin(), __il.size());}
Howard Hinnante3e32912011-08-12 21:56:02 +0000830#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000831
Howard Hinnant499cea12013-08-23 17:37:05 +0000832#if _LIBCPP_DEBUG_LEVEL >= 2
833 _LIBCPP_INLINE_VISIBILITY
834 iterator begin() _NOEXCEPT
835 {return iterator(this, __get_pointer());}
836 _LIBCPP_INLINE_VISIBILITY
837 const_iterator begin() const _NOEXCEPT
838 {return const_iterator(this, __get_pointer());}
839 _LIBCPP_INLINE_VISIBILITY
840 iterator end() _NOEXCEPT
841 {return iterator(this, __get_pointer() + size());}
842 _LIBCPP_INLINE_VISIBILITY
843 const_iterator end() const _NOEXCEPT
844 {return const_iterator(this, __get_pointer() + size());}
845#else
Howard Hinnanta6119a82011-05-29 19:57:12 +0000846 _LIBCPP_INLINE_VISIBILITY
847 iterator begin() _NOEXCEPT
848 {return iterator(__get_pointer());}
849 _LIBCPP_INLINE_VISIBILITY
850 const_iterator begin() const _NOEXCEPT
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000851 {return const_iterator(__get_pointer());}
Howard Hinnanta6119a82011-05-29 19:57:12 +0000852 _LIBCPP_INLINE_VISIBILITY
853 iterator end() _NOEXCEPT
854 {return iterator(__get_pointer() + size());}
855 _LIBCPP_INLINE_VISIBILITY
856 const_iterator end() const _NOEXCEPT
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000857 {return const_iterator(__get_pointer() + size());}
Howard Hinnant499cea12013-08-23 17:37:05 +0000858#endif // _LIBCPP_DEBUG_LEVEL >= 2
Howard Hinnanta6119a82011-05-29 19:57:12 +0000859 _LIBCPP_INLINE_VISIBILITY
860 reverse_iterator rbegin() _NOEXCEPT
861 {return reverse_iterator(end());}
862 _LIBCPP_INLINE_VISIBILITY
863 const_reverse_iterator rbegin() const _NOEXCEPT
864 {return const_reverse_iterator(end());}
865 _LIBCPP_INLINE_VISIBILITY
866 reverse_iterator rend() _NOEXCEPT
867 {return reverse_iterator(begin());}
868 _LIBCPP_INLINE_VISIBILITY
869 const_reverse_iterator rend() const _NOEXCEPT
870 {return const_reverse_iterator(begin());}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000871
Howard Hinnanta6119a82011-05-29 19:57:12 +0000872 _LIBCPP_INLINE_VISIBILITY
873 const_iterator cbegin() const _NOEXCEPT
874 {return begin();}
875 _LIBCPP_INLINE_VISIBILITY
876 const_iterator cend() const _NOEXCEPT
877 {return end();}
878 _LIBCPP_INLINE_VISIBILITY
879 const_reverse_iterator crbegin() const _NOEXCEPT
880 {return rbegin();}
881 _LIBCPP_INLINE_VISIBILITY
882 const_reverse_iterator crend() const _NOEXCEPT
883 {return rend();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000884
Howard Hinnanta6119a82011-05-29 19:57:12 +0000885 _LIBCPP_INLINE_VISIBILITY size_type size() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000886 {return __is_long() ? __get_long_size() : __get_short_size();}
Howard Hinnanta6119a82011-05-29 19:57:12 +0000887 _LIBCPP_INLINE_VISIBILITY size_type length() const _NOEXCEPT {return size();}
888 _LIBCPP_INLINE_VISIBILITY size_type max_size() const _NOEXCEPT;
889 _LIBCPP_INLINE_VISIBILITY size_type capacity() const _NOEXCEPT
Eric Fiseliere2d48922015-08-28 07:02:42 +0000890 {return (__is_long() ? __get_long_cap()
891 : static_cast<size_type>(__min_cap)) - 1;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000892
893 void resize(size_type __n, value_type __c);
894 _LIBCPP_INLINE_VISIBILITY void resize(size_type __n) {resize(__n, value_type());}
895
896 void reserve(size_type res_arg = 0);
Howard Hinnant8d7a9552010-09-23 17:31:07 +0000897 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant53f7d4c2011-06-03 18:40:47 +0000898 void shrink_to_fit() _NOEXCEPT {reserve();}
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000899 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +0000900 void clear() _NOEXCEPT;
901 _LIBCPP_INLINE_VISIBILITY bool empty() const _NOEXCEPT {return size() == 0;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000902
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000903 _LIBCPP_INLINE_VISIBILITY const_reference operator[](size_type __pos) const _NOEXCEPT;
904 _LIBCPP_INLINE_VISIBILITY reference operator[](size_type __pos) _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000905
906 const_reference at(size_type __n) const;
907 reference at(size_type __n);
908
909 _LIBCPP_INLINE_VISIBILITY basic_string& operator+=(const basic_string& __str) {return append(__str);}
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000910 _LIBCPP_INLINE_VISIBILITY basic_string& operator+=(__self_view __sv) {return append(__sv);}
911 _LIBCPP_INLINE_VISIBILITY basic_string& operator+=(const value_type* __s) {return append(__s);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000912 _LIBCPP_INLINE_VISIBILITY basic_string& operator+=(value_type __c) {push_back(__c); return *this;}
Howard Hinnante3e32912011-08-12 21:56:02 +0000913#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000914 _LIBCPP_INLINE_VISIBILITY basic_string& operator+=(initializer_list<value_type> __il) {return append(__il);}
Howard Hinnante3e32912011-08-12 21:56:02 +0000915#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000916
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000917 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000918 basic_string& append(const basic_string& __str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000919 _LIBCPP_INLINE_VISIBILITY
920 basic_string& append(__self_view __sv) { return append(__sv.data(), __sv.size()); }
Marshall Clowa93b5e22014-03-04 19:17:19 +0000921 basic_string& append(const basic_string& __str, size_type __pos, size_type __n=npos);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000922 _LIBCPP_INLINE_VISIBILITY
923 basic_string& append(__self_view __sv, size_type __pos, size_type __n=npos);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000924 basic_string& append(const value_type* __s, size_type __n);
925 basic_string& append(const value_type* __s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000926 basic_string& append(size_type __n, value_type __c);
927 template<class _InputIterator>
928 typename enable_if
929 <
Marshall Clowdf9db312016-01-13 21:54:34 +0000930 __is_exactly_input_iterator<_InputIterator>::value
931 || !__libcpp_string_gets_noexcept_iterator<_InputIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000932 basic_string&
933 >::type
934 append(_InputIterator __first, _InputIterator __last);
935 template<class _ForwardIterator>
936 typename enable_if
937 <
Marshall Clowdf9db312016-01-13 21:54:34 +0000938 __is_forward_iterator<_ForwardIterator>::value
939 && __libcpp_string_gets_noexcept_iterator<_ForwardIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000940 basic_string&
941 >::type
942 append(_ForwardIterator __first, _ForwardIterator __last);
Howard Hinnante3e32912011-08-12 21:56:02 +0000943#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnant8d7a9552010-09-23 17:31:07 +0000944 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000945 basic_string& append(initializer_list<value_type> __il) {return append(__il.begin(), __il.size());}
Howard Hinnante3e32912011-08-12 21:56:02 +0000946#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000947
948 void push_back(value_type __c);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000949 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000950 void pop_back();
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000951 _LIBCPP_INLINE_VISIBILITY reference front();
952 _LIBCPP_INLINE_VISIBILITY const_reference front() const;
953 _LIBCPP_INLINE_VISIBILITY reference back();
954 _LIBCPP_INLINE_VISIBILITY const_reference back() const;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000955
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000956 _LIBCPP_INLINE_VISIBILITY
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000957 basic_string& assign(__self_view __sv) { return assign(__sv.data(), __sv.size()); }
958 _LIBCPP_INLINE_VISIBILITY
Marshall Clowf40ec902016-03-09 18:08:29 +0000959 basic_string& assign(const basic_string& __str) { return *this = __str; }
Howard Hinnanta6119a82011-05-29 19:57:12 +0000960#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
961 _LIBCPP_INLINE_VISIBILITY
962 basic_string& assign(basic_string&& str)
Marshall Clow7ed093b2015-10-05 16:17:34 +0000963 _NOEXCEPT_((__noexcept_move_assign_container<_Allocator, __alloc_traits>::value))
Howard Hinnant0949eed2011-06-30 21:18:19 +0000964 {*this = _VSTD::move(str); return *this;}
Howard Hinnanta6119a82011-05-29 19:57:12 +0000965#endif
Marshall Clowa93b5e22014-03-04 19:17:19 +0000966 basic_string& assign(const basic_string& __str, size_type __pos, size_type __n=npos);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000967 _LIBCPP_INLINE_VISIBILITY
968 basic_string& assign(__self_view __sv, size_type pos, size_type n=npos);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +0000969 basic_string& assign(const value_type* __s, size_type __n);
970 basic_string& assign(const value_type* __s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000971 basic_string& assign(size_type __n, value_type __c);
972 template<class _InputIterator>
973 typename enable_if
974 <
Marshall Clowdf9db312016-01-13 21:54:34 +0000975 __is_exactly_input_iterator<_InputIterator>::value
976 || !__libcpp_string_gets_noexcept_iterator<_InputIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000977 basic_string&
978 >::type
979 assign(_InputIterator __first, _InputIterator __last);
980 template<class _ForwardIterator>
981 typename enable_if
982 <
Marshall Clowdf9db312016-01-13 21:54:34 +0000983 __is_forward_iterator<_ForwardIterator>::value
984 && __libcpp_string_gets_noexcept_iterator<_ForwardIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000985 basic_string&
986 >::type
987 assign(_ForwardIterator __first, _ForwardIterator __last);
Howard Hinnante3e32912011-08-12 21:56:02 +0000988#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnant8d7a9552010-09-23 17:31:07 +0000989 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000990 basic_string& assign(initializer_list<value_type> __il) {return assign(__il.begin(), __il.size());}
Howard Hinnante3e32912011-08-12 21:56:02 +0000991#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000992
Howard Hinnant2d72b1e2010-12-17 14:46:43 +0000993 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000994 basic_string& insert(size_type __pos1, const basic_string& __str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +0000995 _LIBCPP_INLINE_VISIBILITY
996 basic_string& insert(size_type __pos1, __self_view __sv) { return insert(__pos1, __sv.data(), __sv.size()); }
997 _LIBCPP_INLINE_VISIBILITY
998 basic_string& insert(size_type __pos1, __self_view __sv, size_type __pos2, size_type __n=npos);
Marshall Clowa93b5e22014-03-04 19:17:19 +0000999 basic_string& insert(size_type __pos1, const basic_string& __str, size_type __pos2, size_type __n=npos);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001000 basic_string& insert(size_type __pos, const value_type* __s, size_type __n);
1001 basic_string& insert(size_type __pos, const value_type* __s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001002 basic_string& insert(size_type __pos, size_type __n, value_type __c);
1003 iterator insert(const_iterator __pos, value_type __c);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001004 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001005 iterator insert(const_iterator __pos, size_type __n, value_type __c);
1006 template<class _InputIterator>
1007 typename enable_if
1008 <
Marshall Clowdf9db312016-01-13 21:54:34 +00001009 __is_exactly_input_iterator<_InputIterator>::value
1010 || !__libcpp_string_gets_noexcept_iterator<_InputIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001011 iterator
1012 >::type
1013 insert(const_iterator __pos, _InputIterator __first, _InputIterator __last);
1014 template<class _ForwardIterator>
1015 typename enable_if
1016 <
Marshall Clowdf9db312016-01-13 21:54:34 +00001017 __is_forward_iterator<_ForwardIterator>::value
1018 && __libcpp_string_gets_noexcept_iterator<_ForwardIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001019 iterator
1020 >::type
1021 insert(const_iterator __pos, _ForwardIterator __first, _ForwardIterator __last);
Howard Hinnante3e32912011-08-12 21:56:02 +00001022#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnant8d7a9552010-09-23 17:31:07 +00001023 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001024 iterator insert(const_iterator __pos, initializer_list<value_type> __il)
1025 {return insert(__pos, __il.begin(), __il.end());}
Howard Hinnante3e32912011-08-12 21:56:02 +00001026#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001027
1028 basic_string& erase(size_type __pos = 0, size_type __n = npos);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001029 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001030 iterator erase(const_iterator __pos);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001031 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001032 iterator erase(const_iterator __first, const_iterator __last);
1033
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001034 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001035 basic_string& replace(size_type __pos1, size_type __n1, const basic_string& __str);
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001036 _LIBCPP_INLINE_VISIBILITY
1037 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 +00001038 basic_string& replace(size_type __pos1, size_type __n1, const basic_string& __str, size_type __pos2, size_type __n2=npos);
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001039 _LIBCPP_INLINE_VISIBILITY
1040 basic_string& replace(size_type __pos1, size_type __n1, __self_view __sv, size_type __pos2, size_type __n2=npos);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001041 basic_string& replace(size_type __pos, size_type __n1, const value_type* __s, size_type __n2);
1042 basic_string& replace(size_type __pos, size_type __n1, const value_type* __s);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001043 basic_string& replace(size_type __pos, size_type __n1, size_type __n2, value_type __c);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001044 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7b2cb482010-11-17 21:11:40 +00001045 basic_string& replace(const_iterator __i1, const_iterator __i2, const basic_string& __str);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001046 _LIBCPP_INLINE_VISIBILITY
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001047 basic_string& replace(const_iterator __i1, const_iterator __i2, __self_view __sv) { return replace(__i1 - begin(), __i2 - __i1, __sv); }
1048 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001049 basic_string& replace(const_iterator __i1, const_iterator __i2, const value_type* __s, size_type __n);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001050 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001051 basic_string& replace(const_iterator __i1, const_iterator __i2, const value_type* __s);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001052 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7b2cb482010-11-17 21:11:40 +00001053 basic_string& replace(const_iterator __i1, const_iterator __i2, size_type __n, value_type __c);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001054 template<class _InputIterator>
1055 typename enable_if
1056 <
1057 __is_input_iterator<_InputIterator>::value,
1058 basic_string&
1059 >::type
Howard Hinnant7b2cb482010-11-17 21:11:40 +00001060 replace(const_iterator __i1, const_iterator __i2, _InputIterator __j1, _InputIterator __j2);
Howard Hinnante3e32912011-08-12 21:56:02 +00001061#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnant8d7a9552010-09-23 17:31:07 +00001062 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7b2cb482010-11-17 21:11:40 +00001063 basic_string& replace(const_iterator __i1, const_iterator __i2, initializer_list<value_type> __il)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001064 {return replace(__i1, __i2, __il.begin(), __il.end());}
Howard Hinnante3e32912011-08-12 21:56:02 +00001065#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001066
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001067 size_type copy(value_type* __s, size_type __n, size_type __pos = 0) const;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001068 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001069 basic_string substr(size_type __pos = 0, size_type __n = npos) const;
1070
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001071 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00001072 void swap(basic_string& __str)
Marshall Clow7d914d12015-07-13 20:04:56 +00001073#if _LIBCPP_STD_VER >= 14
1074 _NOEXCEPT;
1075#else
1076 _NOEXCEPT_(!__alloc_traits::propagate_on_container_swap::value ||
1077 __is_nothrow_swappable<allocator_type>::value);
1078#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001079
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001080 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001081 const value_type* c_str() const _NOEXCEPT {return data();}
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001082 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001083 const value_type* data() const _NOEXCEPT {return _VSTD::__to_raw_pointer(__get_pointer());}
Marshall Clowf532a702016-03-08 15:44:30 +00001084#if _LIBCPP_STD_VER > 14
1085 _LIBCPP_INLINE_VISIBILITY
1086 value_type* data() _NOEXCEPT {return _VSTD::__to_raw_pointer(__get_pointer());}
1087#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001088
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001089 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001090 allocator_type get_allocator() const _NOEXCEPT {return __alloc();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001091
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001092 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001093 size_type find(const basic_string& __str, size_type __pos = 0) const _NOEXCEPT;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001094 _LIBCPP_INLINE_VISIBILITY
1095 size_type find(__self_view __sv, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001096 size_type find(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001097 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001098 size_type find(const value_type* __s, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnanta6119a82011-05-29 19:57:12 +00001099 size_type find(value_type __c, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001100
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001101 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001102 size_type rfind(const basic_string& __str, size_type __pos = npos) const _NOEXCEPT;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001103 _LIBCPP_INLINE_VISIBILITY
1104 size_type rfind(__self_view __sv, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001105 size_type rfind(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001106 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001107 size_type rfind(const value_type* __s, size_type __pos = npos) const _NOEXCEPT;
Howard Hinnanta6119a82011-05-29 19:57:12 +00001108 size_type rfind(value_type __c, size_type __pos = npos) const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001109
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001110 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001111 size_type find_first_of(const basic_string& __str, size_type __pos = 0) const _NOEXCEPT;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001112 _LIBCPP_INLINE_VISIBILITY
1113 size_type find_first_of(__self_view __sv, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001114 size_type find_first_of(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001115 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001116 size_type find_first_of(const value_type* __s, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001117 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001118 size_type find_first_of(value_type __c, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001119
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001120 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001121 size_type find_last_of(const basic_string& __str, size_type __pos = npos) const _NOEXCEPT;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001122 _LIBCPP_INLINE_VISIBILITY
1123 size_type find_last_of(__self_view __sv, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001124 size_type find_last_of(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001125 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001126 size_type find_last_of(const value_type* __s, size_type __pos = npos) const _NOEXCEPT;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001127 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001128 size_type find_last_of(value_type __c, size_type __pos = npos) const _NOEXCEPT;
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_first_not_of(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_first_not_of(__self_view __sv, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001134 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 +00001135 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001136 size_type find_first_not_of(const value_type* __s, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnanta6119a82011-05-29 19:57:12 +00001137 _LIBCPP_INLINE_VISIBILITY
1138 size_type find_first_not_of(value_type __c, size_type __pos = 0) const _NOEXCEPT;
1139
1140 _LIBCPP_INLINE_VISIBILITY
1141 size_type find_last_not_of(const basic_string& __str, size_type __pos = npos) const _NOEXCEPT;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001142 _LIBCPP_INLINE_VISIBILITY
1143 size_type find_last_not_of(__self_view __sv, size_type __pos = 0) const _NOEXCEPT;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001144 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 +00001145 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001146 size_type find_last_not_of(const value_type* __s, size_type __pos = npos) const _NOEXCEPT;
Howard Hinnanta6119a82011-05-29 19:57:12 +00001147 _LIBCPP_INLINE_VISIBILITY
1148 size_type find_last_not_of(value_type __c, size_type __pos = npos) const _NOEXCEPT;
1149
1150 _LIBCPP_INLINE_VISIBILITY
1151 int compare(const basic_string& __str) const _NOEXCEPT;
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001152 _LIBCPP_INLINE_VISIBILITY
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001153 int compare(__self_view __sv) const _NOEXCEPT;
1154 _LIBCPP_INLINE_VISIBILITY
1155 int compare(size_type __pos1, size_type __n1, __self_view __sv) const;
1156 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001157 int compare(size_type __pos1, size_type __n1, const basic_string& __str) const;
Marshall Clowa93b5e22014-03-04 19:17:19 +00001158 int compare(size_type __pos1, size_type __n1, const basic_string& __str, size_type __pos2, size_type __n2=npos) const;
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001159 _LIBCPP_INLINE_VISIBILITY
1160 int compare(size_type __pos1, size_type __n1, __self_view __sv, size_type __pos2, size_type __n2=npos) const;
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001161 int compare(const value_type* __s) const _NOEXCEPT;
1162 int compare(size_type __pos1, size_type __n1, const value_type* __s) const;
1163 int compare(size_type __pos1, size_type __n1, const value_type* __s, size_type __n2) const;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001164
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001165 _LIBCPP_INLINE_VISIBILITY bool __invariants() const;
Howard Hinnant08dd2532013-04-22 23:55:13 +00001166
1167 _LIBCPP_INLINE_VISIBILITY
1168 bool __is_long() const _NOEXCEPT
1169 {return bool(__r_.first().__s.__size_ & __short_mask);}
1170
Howard Hinnant499cea12013-08-23 17:37:05 +00001171#if _LIBCPP_DEBUG_LEVEL >= 2
1172
1173 bool __dereferenceable(const const_iterator* __i) const;
1174 bool __decrementable(const const_iterator* __i) const;
1175 bool __addable(const const_iterator* __i, ptrdiff_t __n) const;
1176 bool __subscriptable(const const_iterator* __i, ptrdiff_t __n) const;
1177
1178#endif // _LIBCPP_DEBUG_LEVEL >= 2
1179
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001180private:
Howard Hinnanta6119a82011-05-29 19:57:12 +00001181 _LIBCPP_INLINE_VISIBILITY
1182 allocator_type& __alloc() _NOEXCEPT
1183 {return __r_.second();}
1184 _LIBCPP_INLINE_VISIBILITY
1185 const allocator_type& __alloc() const _NOEXCEPT
1186 {return __r_.second();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001187
Evgeniy Stepanov4f01aa82015-10-13 23:48:28 +00001188#ifdef _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Howard Hinnant15467182013-04-30 21:44:48 +00001189
Howard Hinnanta6119a82011-05-29 19:57:12 +00001190 _LIBCPP_INLINE_VISIBILITY
Howard Hinnanta6119a82011-05-29 19:57:12 +00001191 void __set_short_size(size_type __s) _NOEXCEPT
Howard Hinnant15467182013-04-30 21:44:48 +00001192# if _LIBCPP_BIG_ENDIAN
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001193 {__r_.first().__s.__size_ = (unsigned char)(__s << 1);}
Howard Hinnant15467182013-04-30 21:44:48 +00001194# else
1195 {__r_.first().__s.__size_ = (unsigned char)(__s);}
1196# endif
1197
Howard Hinnanta6119a82011-05-29 19:57:12 +00001198 _LIBCPP_INLINE_VISIBILITY
1199 size_type __get_short_size() const _NOEXCEPT
Howard Hinnant15467182013-04-30 21:44:48 +00001200# if _LIBCPP_BIG_ENDIAN
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001201 {return __r_.first().__s.__size_ >> 1;}
Howard Hinnant15467182013-04-30 21:44:48 +00001202# else
1203 {return __r_.first().__s.__size_;}
1204# endif
1205
Evgeniy Stepanov4f01aa82015-10-13 23:48:28 +00001206#else // _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Howard Hinnant15467182013-04-30 21:44:48 +00001207
1208 _LIBCPP_INLINE_VISIBILITY
1209 void __set_short_size(size_type __s) _NOEXCEPT
1210# if _LIBCPP_BIG_ENDIAN
1211 {__r_.first().__s.__size_ = (unsigned char)(__s);}
1212# else
1213 {__r_.first().__s.__size_ = (unsigned char)(__s << 1);}
1214# endif
1215
1216 _LIBCPP_INLINE_VISIBILITY
1217 size_type __get_short_size() const _NOEXCEPT
1218# if _LIBCPP_BIG_ENDIAN
1219 {return __r_.first().__s.__size_;}
1220# else
1221 {return __r_.first().__s.__size_ >> 1;}
1222# endif
1223
Evgeniy Stepanov4f01aa82015-10-13 23:48:28 +00001224#endif // _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Howard Hinnant15467182013-04-30 21:44:48 +00001225
Howard Hinnanta6119a82011-05-29 19:57:12 +00001226 _LIBCPP_INLINE_VISIBILITY
1227 void __set_long_size(size_type __s) _NOEXCEPT
1228 {__r_.first().__l.__size_ = __s;}
1229 _LIBCPP_INLINE_VISIBILITY
1230 size_type __get_long_size() const _NOEXCEPT
1231 {return __r_.first().__l.__size_;}
1232 _LIBCPP_INLINE_VISIBILITY
1233 void __set_size(size_type __s) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001234 {if (__is_long()) __set_long_size(__s); else __set_short_size(__s);}
1235
Howard Hinnanta6119a82011-05-29 19:57:12 +00001236 _LIBCPP_INLINE_VISIBILITY
1237 void __set_long_cap(size_type __s) _NOEXCEPT
1238 {__r_.first().__l.__cap_ = __long_mask | __s;}
1239 _LIBCPP_INLINE_VISIBILITY
1240 size_type __get_long_cap() const _NOEXCEPT
Howard Hinnantec3773c2011-12-01 20:21:04 +00001241 {return __r_.first().__l.__cap_ & size_type(~__long_mask);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001242
Howard Hinnanta6119a82011-05-29 19:57:12 +00001243 _LIBCPP_INLINE_VISIBILITY
1244 void __set_long_pointer(pointer __p) _NOEXCEPT
1245 {__r_.first().__l.__data_ = __p;}
1246 _LIBCPP_INLINE_VISIBILITY
1247 pointer __get_long_pointer() _NOEXCEPT
1248 {return __r_.first().__l.__data_;}
1249 _LIBCPP_INLINE_VISIBILITY
1250 const_pointer __get_long_pointer() const _NOEXCEPT
1251 {return __r_.first().__l.__data_;}
1252 _LIBCPP_INLINE_VISIBILITY
1253 pointer __get_short_pointer() _NOEXCEPT
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001254 {return pointer_traits<pointer>::pointer_to(__r_.first().__s.__data_[0]);}
Howard Hinnanta6119a82011-05-29 19:57:12 +00001255 _LIBCPP_INLINE_VISIBILITY
1256 const_pointer __get_short_pointer() const _NOEXCEPT
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001257 {return pointer_traits<const_pointer>::pointer_to(__r_.first().__s.__data_[0]);}
Howard Hinnanta6119a82011-05-29 19:57:12 +00001258 _LIBCPP_INLINE_VISIBILITY
1259 pointer __get_pointer() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001260 {return __is_long() ? __get_long_pointer() : __get_short_pointer();}
Howard Hinnanta6119a82011-05-29 19:57:12 +00001261 _LIBCPP_INLINE_VISIBILITY
1262 const_pointer __get_pointer() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001263 {return __is_long() ? __get_long_pointer() : __get_short_pointer();}
1264
Howard Hinnanta6119a82011-05-29 19:57:12 +00001265 _LIBCPP_INLINE_VISIBILITY
1266 void __zero() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001267 {
1268 size_type (&__a)[__n_words] = __r_.first().__r.__words;
1269 for (unsigned __i = 0; __i < __n_words; ++__i)
1270 __a[__i] = 0;
1271 }
1272
1273 template <size_type __a> static
Howard Hinnanta6119a82011-05-29 19:57:12 +00001274 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7f764502013-08-14 18:00:20 +00001275 size_type __align_it(size_type __s) _NOEXCEPT
Eric Fiseliere2d48922015-08-28 07:02:42 +00001276 {return (__s + (__a-1)) & ~(__a-1);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001277 enum {__alignment = 16};
Howard Hinnanta6119a82011-05-29 19:57:12 +00001278 static _LIBCPP_INLINE_VISIBILITY
1279 size_type __recommend(size_type __s) _NOEXCEPT
Eric Fiseliere2d48922015-08-28 07:02:42 +00001280 {return (__s < __min_cap ? static_cast<size_type>(__min_cap) :
Howard Hinnant7f764502013-08-14 18:00:20 +00001281 __align_it<sizeof(value_type) < __alignment ?
Howard Hinnanta6119a82011-05-29 19:57:12 +00001282 __alignment/sizeof(value_type) : 1 > (__s+1)) - 1;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001283
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001284 void __init(const value_type* __s, size_type __sz, size_type __reserve);
1285 void __init(const value_type* __s, size_type __sz);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001286 void __init(size_type __n, value_type __c);
Howard Hinnant324bb032010-08-22 00:02:43 +00001287
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001288 template <class _InputIterator>
1289 typename enable_if
1290 <
Marshall Clowdf9db312016-01-13 21:54:34 +00001291 __is_exactly_input_iterator<_InputIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001292 void
1293 >::type
1294 __init(_InputIterator __first, _InputIterator __last);
1295
1296 template <class _ForwardIterator>
1297 typename enable_if
1298 <
1299 __is_forward_iterator<_ForwardIterator>::value,
1300 void
1301 >::type
1302 __init(_ForwardIterator __first, _ForwardIterator __last);
1303
1304 void __grow_by(size_type __old_cap, size_type __delta_cap, size_type __old_sz,
Howard Hinnant324bb032010-08-22 00:02:43 +00001305 size_type __n_copy, size_type __n_del, size_type __n_add = 0);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001306 void __grow_by_and_replace(size_type __old_cap, size_type __delta_cap, size_type __old_sz,
1307 size_type __n_copy, size_type __n_del,
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001308 size_type __n_add, const value_type* __p_new_stuff);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001309
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001310 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001311 void __erase_to_end(size_type __pos);
1312
Howard Hinnante32b5e22010-11-17 17:55:08 +00001313 _LIBCPP_INLINE_VISIBILITY
1314 void __copy_assign_alloc(const basic_string& __str)
1315 {__copy_assign_alloc(__str, integral_constant<bool,
1316 __alloc_traits::propagate_on_container_copy_assignment::value>());}
1317
1318 _LIBCPP_INLINE_VISIBILITY
1319 void __copy_assign_alloc(const basic_string& __str, true_type)
1320 {
1321 if (__alloc() != __str.__alloc())
1322 {
1323 clear();
1324 shrink_to_fit();
1325 }
1326 __alloc() = __str.__alloc();
1327 }
1328
1329 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantec3773c2011-12-01 20:21:04 +00001330 void __copy_assign_alloc(const basic_string&, false_type) _NOEXCEPT
Howard Hinnante32b5e22010-11-17 17:55:08 +00001331 {}
1332
1333#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001334 _LIBCPP_INLINE_VISIBILITY
Marshall Clowaf961ed2015-08-18 18:57:00 +00001335 void __move_assign(basic_string& __str, false_type)
1336 _NOEXCEPT_(__alloc_traits::is_always_equal::value);
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001337 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00001338 void __move_assign(basic_string& __str, true_type)
Marshall Clowaf961ed2015-08-18 18:57:00 +00001339#if _LIBCPP_STD_VER > 14
1340 _NOEXCEPT;
1341#else
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00001342 _NOEXCEPT_(is_nothrow_move_assignable<allocator_type>::value);
Howard Hinnante32b5e22010-11-17 17:55:08 +00001343#endif
Marshall Clowaf961ed2015-08-18 18:57:00 +00001344#endif
Howard Hinnante32b5e22010-11-17 17:55:08 +00001345
1346 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3fdbbd22011-08-17 20:36:18 +00001347 void
Howard Hinnant9cbee432011-09-02 20:42:31 +00001348 __move_assign_alloc(basic_string& __str)
Howard Hinnant3fdbbd22011-08-17 20:36:18 +00001349 _NOEXCEPT_(
1350 !__alloc_traits::propagate_on_container_move_assignment::value ||
1351 is_nothrow_move_assignable<allocator_type>::value)
1352 {__move_assign_alloc(__str, integral_constant<bool,
1353 __alloc_traits::propagate_on_container_move_assignment::value>());}
1354
1355 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9cbee432011-09-02 20:42:31 +00001356 void __move_assign_alloc(basic_string& __c, true_type)
Howard Hinnant3fdbbd22011-08-17 20:36:18 +00001357 _NOEXCEPT_(is_nothrow_move_assignable<allocator_type>::value)
1358 {
1359 __alloc() = _VSTD::move(__c.__alloc());
1360 }
1361
1362 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantec3773c2011-12-01 20:21:04 +00001363 void __move_assign_alloc(basic_string&, false_type)
Howard Hinnant3fdbbd22011-08-17 20:36:18 +00001364 _NOEXCEPT
1365 {}
1366
Howard Hinnant2d72b1e2010-12-17 14:46:43 +00001367 _LIBCPP_INLINE_VISIBILITY void __invalidate_all_iterators();
1368 _LIBCPP_INLINE_VISIBILITY void __invalidate_iterators_past(size_type);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001369
1370 friend basic_string operator+<>(const basic_string&, const basic_string&);
1371 friend basic_string operator+<>(const value_type*, const basic_string&);
1372 friend basic_string operator+<>(value_type, const basic_string&);
1373 friend basic_string operator+<>(const basic_string&, const value_type*);
1374 friend basic_string operator+<>(const basic_string&, value_type);
1375};
1376
1377template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001378inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001379void
1380basic_string<_CharT, _Traits, _Allocator>::__invalidate_all_iterators()
1381{
Howard Hinnant499cea12013-08-23 17:37:05 +00001382#if _LIBCPP_DEBUG_LEVEL >= 2
1383 __get_db()->__invalidate_all(this);
1384#endif // _LIBCPP_DEBUG_LEVEL >= 2
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001385}
1386
1387template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001388inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001389void
Howard Hinnantec3773c2011-12-01 20:21:04 +00001390basic_string<_CharT, _Traits, _Allocator>::__invalidate_iterators_past(size_type
Howard Hinnant499cea12013-08-23 17:37:05 +00001391#if _LIBCPP_DEBUG_LEVEL >= 2
Howard Hinnantec3773c2011-12-01 20:21:04 +00001392 __pos
1393#endif
1394 )
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001395{
Howard Hinnant499cea12013-08-23 17:37:05 +00001396#if _LIBCPP_DEBUG_LEVEL >= 2
1397 __c_node* __c = __get_db()->__find_c_and_lock(this);
1398 if (__c)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001399 {
Howard Hinnant499cea12013-08-23 17:37:05 +00001400 const_pointer __new_last = __get_pointer() + __pos;
1401 for (__i_node** __p = __c->end_; __p != __c->beg_; )
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001402 {
Howard Hinnant499cea12013-08-23 17:37:05 +00001403 --__p;
1404 const_iterator* __i = static_cast<const_iterator*>((*__p)->__i_);
1405 if (__i->base() > __new_last)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001406 {
Howard Hinnant499cea12013-08-23 17:37:05 +00001407 (*__p)->__c_ = nullptr;
1408 if (--__c->end_ != __p)
1409 memmove(__p, __p+1, (__c->end_ - __p)*sizeof(__i_node*));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001410 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001411 }
Howard Hinnant499cea12013-08-23 17:37:05 +00001412 __get_db()->unlock();
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001413 }
Howard Hinnant499cea12013-08-23 17:37:05 +00001414#endif // _LIBCPP_DEBUG_LEVEL >= 2
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001415}
1416
1417template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001418inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00001419basic_string<_CharT, _Traits, _Allocator>::basic_string()
Marshall Clowc912c0c2015-06-04 02:05:41 +00001420 _NOEXCEPT_(is_nothrow_default_constructible<allocator_type>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001421{
Howard Hinnant499cea12013-08-23 17:37:05 +00001422#if _LIBCPP_DEBUG_LEVEL >= 2
1423 __get_db()->__insert_c(this);
1424#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001425 __zero();
1426}
1427
1428template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001429inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001430basic_string<_CharT, _Traits, _Allocator>::basic_string(const allocator_type& __a)
Eric Fiselier692177d2015-07-18 20:40:46 +00001431#if _LIBCPP_STD_VER <= 14
1432 _NOEXCEPT_(is_nothrow_copy_constructible<allocator_type>::value)
1433#else
1434 _NOEXCEPT
1435#endif
1436: __r_(__a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001437{
Howard Hinnant499cea12013-08-23 17:37:05 +00001438#if _LIBCPP_DEBUG_LEVEL >= 2
1439 __get_db()->__insert_c(this);
1440#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001441 __zero();
1442}
1443
1444template <class _CharT, class _Traits, class _Allocator>
1445void
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001446basic_string<_CharT, _Traits, _Allocator>::__init(const value_type* __s, size_type __sz, size_type __reserve)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001447{
1448 if (__reserve > max_size())
1449 this->__throw_length_error();
1450 pointer __p;
1451 if (__reserve < __min_cap)
1452 {
1453 __set_short_size(__sz);
1454 __p = __get_short_pointer();
1455 }
1456 else
1457 {
1458 size_type __cap = __recommend(__reserve);
Howard Hinnante32b5e22010-11-17 17:55:08 +00001459 __p = __alloc_traits::allocate(__alloc(), __cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001460 __set_long_pointer(__p);
1461 __set_long_cap(__cap+1);
1462 __set_long_size(__sz);
1463 }
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001464 traits_type::copy(_VSTD::__to_raw_pointer(__p), __s, __sz);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001465 traits_type::assign(__p[__sz], value_type());
1466}
1467
1468template <class _CharT, class _Traits, class _Allocator>
1469void
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001470basic_string<_CharT, _Traits, _Allocator>::__init(const value_type* __s, size_type __sz)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001471{
1472 if (__sz > max_size())
1473 this->__throw_length_error();
1474 pointer __p;
1475 if (__sz < __min_cap)
1476 {
1477 __set_short_size(__sz);
1478 __p = __get_short_pointer();
1479 }
1480 else
1481 {
1482 size_type __cap = __recommend(__sz);
Howard Hinnante32b5e22010-11-17 17:55:08 +00001483 __p = __alloc_traits::allocate(__alloc(), __cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001484 __set_long_pointer(__p);
1485 __set_long_cap(__cap+1);
1486 __set_long_size(__sz);
1487 }
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001488 traits_type::copy(_VSTD::__to_raw_pointer(__p), __s, __sz);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001489 traits_type::assign(__p[__sz], value_type());
1490}
1491
1492template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001493inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001494basic_string<_CharT, _Traits, _Allocator>::basic_string(const value_type* __s)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001495{
Howard Hinnant499cea12013-08-23 17:37:05 +00001496 _LIBCPP_ASSERT(__s != nullptr, "basic_string(const char*) detected nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001497 __init(__s, traits_type::length(__s));
Howard Hinnant499cea12013-08-23 17:37:05 +00001498#if _LIBCPP_DEBUG_LEVEL >= 2
1499 __get_db()->__insert_c(this);
1500#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001501}
1502
1503template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001504inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001505basic_string<_CharT, _Traits, _Allocator>::basic_string(const value_type* __s, const allocator_type& __a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001506 : __r_(__a)
1507{
Howard Hinnant499cea12013-08-23 17:37:05 +00001508 _LIBCPP_ASSERT(__s != nullptr, "basic_string(const char*, allocator) detected nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001509 __init(__s, traits_type::length(__s));
Howard Hinnant499cea12013-08-23 17:37:05 +00001510#if _LIBCPP_DEBUG_LEVEL >= 2
1511 __get_db()->__insert_c(this);
1512#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001513}
1514
1515template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001516inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001517basic_string<_CharT, _Traits, _Allocator>::basic_string(const value_type* __s, size_type __n)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001518{
Howard Hinnant499cea12013-08-23 17:37:05 +00001519 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "basic_string(const char*, n) detected nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001520 __init(__s, __n);
Howard Hinnant499cea12013-08-23 17:37:05 +00001521#if _LIBCPP_DEBUG_LEVEL >= 2
1522 __get_db()->__insert_c(this);
1523#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001524}
1525
1526template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001527inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001528basic_string<_CharT, _Traits, _Allocator>::basic_string(const value_type* __s, size_type __n, const allocator_type& __a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001529 : __r_(__a)
1530{
Howard Hinnant499cea12013-08-23 17:37:05 +00001531 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "basic_string(const char*, n, allocator) detected nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001532 __init(__s, __n);
Howard Hinnant499cea12013-08-23 17:37:05 +00001533#if _LIBCPP_DEBUG_LEVEL >= 2
1534 __get_db()->__insert_c(this);
1535#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001536}
1537
1538template <class _CharT, class _Traits, class _Allocator>
1539basic_string<_CharT, _Traits, _Allocator>::basic_string(const basic_string& __str)
Howard Hinnante32b5e22010-11-17 17:55:08 +00001540 : __r_(__alloc_traits::select_on_container_copy_construction(__str.__alloc()))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001541{
1542 if (!__str.__is_long())
1543 __r_.first().__r = __str.__r_.first().__r;
1544 else
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001545 __init(_VSTD::__to_raw_pointer(__str.__get_long_pointer()), __str.__get_long_size());
Howard Hinnant499cea12013-08-23 17:37:05 +00001546#if _LIBCPP_DEBUG_LEVEL >= 2
1547 __get_db()->__insert_c(this);
1548#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001549}
1550
1551template <class _CharT, class _Traits, class _Allocator>
1552basic_string<_CharT, _Traits, _Allocator>::basic_string(const basic_string& __str, const allocator_type& __a)
1553 : __r_(__a)
1554{
1555 if (!__str.__is_long())
1556 __r_.first().__r = __str.__r_.first().__r;
1557 else
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001558 __init(_VSTD::__to_raw_pointer(__str.__get_long_pointer()), __str.__get_long_size());
Howard Hinnant499cea12013-08-23 17:37:05 +00001559#if _LIBCPP_DEBUG_LEVEL >= 2
1560 __get_db()->__insert_c(this);
1561#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001562}
1563
Howard Hinnant73d21a42010-09-04 23:28:19 +00001564#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001565
1566template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001567inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00001568basic_string<_CharT, _Traits, _Allocator>::basic_string(basic_string&& __str)
Marshall Clow7b193f72015-06-03 19:56:43 +00001569#if _LIBCPP_STD_VER <= 14
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00001570 _NOEXCEPT_(is_nothrow_move_constructible<allocator_type>::value)
Marshall Clow7b193f72015-06-03 19:56:43 +00001571#else
1572 _NOEXCEPT
1573#endif
Howard Hinnant0949eed2011-06-30 21:18:19 +00001574 : __r_(_VSTD::move(__str.__r_))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001575{
1576 __str.__zero();
Howard Hinnant499cea12013-08-23 17:37:05 +00001577#if _LIBCPP_DEBUG_LEVEL >= 2
1578 __get_db()->__insert_c(this);
1579 if (__is_long())
1580 __get_db()->swap(this, &__str);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001581#endif
1582}
1583
1584template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001585inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001586basic_string<_CharT, _Traits, _Allocator>::basic_string(basic_string&& __str, const allocator_type& __a)
Howard Hinnante32b5e22010-11-17 17:55:08 +00001587 : __r_(__a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001588{
Marshall Clowd5549cc2014-07-17 15:32:20 +00001589 if (__str.__is_long() && __a != __str.__alloc()) // copy, not move
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001590 __init(_VSTD::__to_raw_pointer(__str.__get_long_pointer()), __str.__get_long_size());
Marshall Clowd5549cc2014-07-17 15:32:20 +00001591 else
1592 {
1593 __r_.first().__r = __str.__r_.first().__r;
1594 __str.__zero();
1595 }
Howard Hinnant499cea12013-08-23 17:37:05 +00001596#if _LIBCPP_DEBUG_LEVEL >= 2
1597 __get_db()->__insert_c(this);
1598 if (__is_long())
1599 __get_db()->swap(this, &__str);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001600#endif
1601}
1602
Howard Hinnant73d21a42010-09-04 23:28:19 +00001603#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001604
1605template <class _CharT, class _Traits, class _Allocator>
1606void
1607basic_string<_CharT, _Traits, _Allocator>::__init(size_type __n, value_type __c)
1608{
1609 if (__n > max_size())
1610 this->__throw_length_error();
1611 pointer __p;
1612 if (__n < __min_cap)
1613 {
1614 __set_short_size(__n);
1615 __p = __get_short_pointer();
1616 }
1617 else
1618 {
1619 size_type __cap = __recommend(__n);
Howard Hinnante32b5e22010-11-17 17:55:08 +00001620 __p = __alloc_traits::allocate(__alloc(), __cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001621 __set_long_pointer(__p);
1622 __set_long_cap(__cap+1);
1623 __set_long_size(__n);
1624 }
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001625 traits_type::assign(_VSTD::__to_raw_pointer(__p), __n, __c);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001626 traits_type::assign(__p[__n], value_type());
1627}
1628
1629template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001630inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001631basic_string<_CharT, _Traits, _Allocator>::basic_string(size_type __n, value_type __c)
1632{
1633 __init(__n, __c);
Howard Hinnant499cea12013-08-23 17:37:05 +00001634#if _LIBCPP_DEBUG_LEVEL >= 2
1635 __get_db()->__insert_c(this);
1636#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001637}
1638
1639template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001640inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001641basic_string<_CharT, _Traits, _Allocator>::basic_string(size_type __n, value_type __c, const allocator_type& __a)
1642 : __r_(__a)
1643{
1644 __init(__n, __c);
Howard Hinnant499cea12013-08-23 17:37:05 +00001645#if _LIBCPP_DEBUG_LEVEL >= 2
1646 __get_db()->__insert_c(this);
1647#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001648}
1649
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001650template <class _CharT, class _Traits, class _Allocator>
1651basic_string<_CharT, _Traits, _Allocator>::basic_string(const basic_string& __str, size_type __pos, size_type __n,
1652 const allocator_type& __a)
1653 : __r_(__a)
1654{
1655 size_type __str_sz = __str.size();
1656 if (__pos > __str_sz)
1657 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00001658 __init(__str.data() + __pos, _VSTD::min(__n, __str_sz - __pos));
Howard Hinnant499cea12013-08-23 17:37:05 +00001659#if _LIBCPP_DEBUG_LEVEL >= 2
1660 __get_db()->__insert_c(this);
1661#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001662}
1663
1664template <class _CharT, class _Traits, class _Allocator>
Marshall Clowf4f7d8f2016-04-07 18:13:41 +00001665inline _LIBCPP_INLINE_VISIBILITY
1666basic_string<_CharT, _Traits, _Allocator>::basic_string(const basic_string& __str, size_type __pos,
1667 const allocator_type& __a)
1668 : __r_(__a)
1669{
1670 size_type __str_sz = __str.size();
1671 if (__pos > __str_sz)
1672 this->__throw_out_of_range();
1673 __init(__str.data() + __pos, __str_sz - __pos);
1674#if _LIBCPP_DEBUG_LEVEL >= 2
1675 __get_db()->__insert_c(this);
1676#endif
1677}
1678
1679template <class _CharT, class _Traits, class _Allocator>
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001680inline _LIBCPP_INLINE_VISIBILITY
1681basic_string<_CharT, _Traits, _Allocator>::basic_string(__self_view __sv)
1682{
1683 __init(__sv.data(), __sv.size());
1684#if _LIBCPP_DEBUG_LEVEL >= 2
1685 __get_db()->__insert_c(this);
1686#endif
1687}
1688
1689template <class _CharT, class _Traits, class _Allocator>
1690inline _LIBCPP_INLINE_VISIBILITY
1691basic_string<_CharT, _Traits, _Allocator>::basic_string(__self_view __sv, const allocator_type& __a)
1692 : __r_(__a)
1693{
1694 __init(__sv.data(), __sv.size());
1695#if _LIBCPP_DEBUG_LEVEL >= 2
1696 __get_db()->__insert_c(this);
1697#endif
1698}
1699
1700template <class _CharT, class _Traits, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001701template <class _InputIterator>
1702typename enable_if
1703<
Marshall Clowdf9db312016-01-13 21:54:34 +00001704 __is_exactly_input_iterator<_InputIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001705 void
1706>::type
1707basic_string<_CharT, _Traits, _Allocator>::__init(_InputIterator __first, _InputIterator __last)
1708{
1709 __zero();
1710#ifndef _LIBCPP_NO_EXCEPTIONS
1711 try
1712 {
Howard Hinnant324bb032010-08-22 00:02:43 +00001713#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001714 for (; __first != __last; ++__first)
1715 push_back(*__first);
1716#ifndef _LIBCPP_NO_EXCEPTIONS
1717 }
1718 catch (...)
1719 {
1720 if (__is_long())
Howard Hinnante32b5e22010-11-17 17:55:08 +00001721 __alloc_traits::deallocate(__alloc(), __get_long_pointer(), __get_long_cap());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001722 throw;
1723 }
Howard Hinnant324bb032010-08-22 00:02:43 +00001724#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001725}
1726
1727template <class _CharT, class _Traits, class _Allocator>
1728template <class _ForwardIterator>
1729typename enable_if
1730<
1731 __is_forward_iterator<_ForwardIterator>::value,
1732 void
1733>::type
1734basic_string<_CharT, _Traits, _Allocator>::__init(_ForwardIterator __first, _ForwardIterator __last)
1735{
Howard Hinnant0949eed2011-06-30 21:18:19 +00001736 size_type __sz = static_cast<size_type>(_VSTD::distance(__first, __last));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001737 if (__sz > max_size())
1738 this->__throw_length_error();
1739 pointer __p;
1740 if (__sz < __min_cap)
1741 {
1742 __set_short_size(__sz);
1743 __p = __get_short_pointer();
1744 }
1745 else
1746 {
1747 size_type __cap = __recommend(__sz);
Howard Hinnante32b5e22010-11-17 17:55:08 +00001748 __p = __alloc_traits::allocate(__alloc(), __cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001749 __set_long_pointer(__p);
1750 __set_long_cap(__cap+1);
1751 __set_long_size(__sz);
1752 }
Eric Fiselierb9919752014-10-27 19:28:20 +00001753 for (; __first != __last; ++__first, (void) ++__p)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001754 traits_type::assign(*__p, *__first);
1755 traits_type::assign(*__p, value_type());
1756}
1757
1758template <class _CharT, class _Traits, class _Allocator>
1759template<class _InputIterator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001760inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001761basic_string<_CharT, _Traits, _Allocator>::basic_string(_InputIterator __first, _InputIterator __last)
1762{
1763 __init(__first, __last);
Howard Hinnant499cea12013-08-23 17:37:05 +00001764#if _LIBCPP_DEBUG_LEVEL >= 2
1765 __get_db()->__insert_c(this);
1766#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001767}
1768
1769template <class _CharT, class _Traits, class _Allocator>
1770template<class _InputIterator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001771inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001772basic_string<_CharT, _Traits, _Allocator>::basic_string(_InputIterator __first, _InputIterator __last,
1773 const allocator_type& __a)
1774 : __r_(__a)
1775{
1776 __init(__first, __last);
Howard Hinnant499cea12013-08-23 17:37:05 +00001777#if _LIBCPP_DEBUG_LEVEL >= 2
1778 __get_db()->__insert_c(this);
1779#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001780}
1781
Howard Hinnante3e32912011-08-12 21:56:02 +00001782#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
1783
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001784template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001785inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001786basic_string<_CharT, _Traits, _Allocator>::basic_string(initializer_list<value_type> __il)
1787{
1788 __init(__il.begin(), __il.end());
Howard Hinnant499cea12013-08-23 17:37:05 +00001789#if _LIBCPP_DEBUG_LEVEL >= 2
1790 __get_db()->__insert_c(this);
1791#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001792}
1793
1794template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001795inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001796basic_string<_CharT, _Traits, _Allocator>::basic_string(initializer_list<value_type> __il, const allocator_type& __a)
1797 : __r_(__a)
1798{
1799 __init(__il.begin(), __il.end());
Howard Hinnant499cea12013-08-23 17:37:05 +00001800#if _LIBCPP_DEBUG_LEVEL >= 2
1801 __get_db()->__insert_c(this);
1802#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001803}
1804
Howard Hinnante3e32912011-08-12 21:56:02 +00001805#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
1806
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001807template <class _CharT, class _Traits, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001808basic_string<_CharT, _Traits, _Allocator>::~basic_string()
1809{
Howard Hinnant499cea12013-08-23 17:37:05 +00001810#if _LIBCPP_DEBUG_LEVEL >= 2
1811 __get_db()->__erase_c(this);
1812#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001813 if (__is_long())
Howard Hinnante32b5e22010-11-17 17:55:08 +00001814 __alloc_traits::deallocate(__alloc(), __get_long_pointer(), __get_long_cap());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001815}
1816
1817template <class _CharT, class _Traits, class _Allocator>
1818void
1819basic_string<_CharT, _Traits, _Allocator>::__grow_by_and_replace
1820 (size_type __old_cap, size_type __delta_cap, size_type __old_sz,
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001821 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 +00001822{
1823 size_type __ms = max_size();
1824 if (__delta_cap > __ms - __old_cap - 1)
1825 this->__throw_length_error();
1826 pointer __old_p = __get_pointer();
1827 size_type __cap = __old_cap < __ms / 2 - __alignment ?
Howard Hinnant0949eed2011-06-30 21:18:19 +00001828 __recommend(_VSTD::max(__old_cap + __delta_cap, 2 * __old_cap)) :
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001829 __ms - 1;
Howard Hinnante32b5e22010-11-17 17:55:08 +00001830 pointer __p = __alloc_traits::allocate(__alloc(), __cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001831 __invalidate_all_iterators();
1832 if (__n_copy != 0)
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001833 traits_type::copy(_VSTD::__to_raw_pointer(__p),
1834 _VSTD::__to_raw_pointer(__old_p), __n_copy);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001835 if (__n_add != 0)
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001836 traits_type::copy(_VSTD::__to_raw_pointer(__p) + __n_copy, __p_new_stuff, __n_add);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001837 size_type __sec_cp_sz = __old_sz - __n_del - __n_copy;
1838 if (__sec_cp_sz != 0)
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001839 traits_type::copy(_VSTD::__to_raw_pointer(__p) + __n_copy + __n_add,
1840 _VSTD::__to_raw_pointer(__old_p) + __n_copy + __n_del, __sec_cp_sz);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001841 if (__old_cap+1 != __min_cap)
Howard Hinnante32b5e22010-11-17 17:55:08 +00001842 __alloc_traits::deallocate(__alloc(), __old_p, __old_cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001843 __set_long_pointer(__p);
1844 __set_long_cap(__cap+1);
1845 __old_sz = __n_copy + __n_add + __sec_cp_sz;
1846 __set_long_size(__old_sz);
1847 traits_type::assign(__p[__old_sz], value_type());
1848}
1849
1850template <class _CharT, class _Traits, class _Allocator>
1851void
1852basic_string<_CharT, _Traits, _Allocator>::__grow_by(size_type __old_cap, size_type __delta_cap, size_type __old_sz,
1853 size_type __n_copy, size_type __n_del, size_type __n_add)
1854{
1855 size_type __ms = max_size();
Marshall Clowecc8d7b2013-11-06 14:24:38 +00001856 if (__delta_cap > __ms - __old_cap)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001857 this->__throw_length_error();
1858 pointer __old_p = __get_pointer();
1859 size_type __cap = __old_cap < __ms / 2 - __alignment ?
Howard Hinnant0949eed2011-06-30 21:18:19 +00001860 __recommend(_VSTD::max(__old_cap + __delta_cap, 2 * __old_cap)) :
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001861 __ms - 1;
Howard Hinnante32b5e22010-11-17 17:55:08 +00001862 pointer __p = __alloc_traits::allocate(__alloc(), __cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001863 __invalidate_all_iterators();
1864 if (__n_copy != 0)
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001865 traits_type::copy(_VSTD::__to_raw_pointer(__p),
1866 _VSTD::__to_raw_pointer(__old_p), __n_copy);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001867 size_type __sec_cp_sz = __old_sz - __n_del - __n_copy;
1868 if (__sec_cp_sz != 0)
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001869 traits_type::copy(_VSTD::__to_raw_pointer(__p) + __n_copy + __n_add,
1870 _VSTD::__to_raw_pointer(__old_p) + __n_copy + __n_del,
1871 __sec_cp_sz);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001872 if (__old_cap+1 != __min_cap)
Howard Hinnante32b5e22010-11-17 17:55:08 +00001873 __alloc_traits::deallocate(__alloc(), __old_p, __old_cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001874 __set_long_pointer(__p);
1875 __set_long_cap(__cap+1);
1876}
1877
1878// assign
1879
1880template <class _CharT, class _Traits, class _Allocator>
1881basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001882basic_string<_CharT, _Traits, _Allocator>::assign(const value_type* __s, size_type __n)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001883{
Alp Tokerec34c482014-05-15 11:27:39 +00001884 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::assign received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001885 size_type __cap = capacity();
1886 if (__cap >= __n)
1887 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001888 value_type* __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001889 traits_type::move(__p, __s, __n);
1890 traits_type::assign(__p[__n], value_type());
1891 __set_size(__n);
1892 __invalidate_iterators_past(__n);
1893 }
1894 else
1895 {
1896 size_type __sz = size();
1897 __grow_by_and_replace(__cap, __n - __cap, __sz, 0, __sz, __n, __s);
1898 }
1899 return *this;
1900}
1901
1902template <class _CharT, class _Traits, class _Allocator>
1903basic_string<_CharT, _Traits, _Allocator>&
1904basic_string<_CharT, _Traits, _Allocator>::assign(size_type __n, value_type __c)
1905{
1906 size_type __cap = capacity();
1907 if (__cap < __n)
1908 {
1909 size_type __sz = size();
1910 __grow_by(__cap, __n - __cap, __sz, 0, __sz);
1911 }
1912 else
1913 __invalidate_iterators_past(__n);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00001914 value_type* __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001915 traits_type::assign(__p, __n, __c);
1916 traits_type::assign(__p[__n], value_type());
1917 __set_size(__n);
1918 return *this;
1919}
1920
1921template <class _CharT, class _Traits, class _Allocator>
1922basic_string<_CharT, _Traits, _Allocator>&
1923basic_string<_CharT, _Traits, _Allocator>::operator=(value_type __c)
1924{
1925 pointer __p;
1926 if (__is_long())
1927 {
1928 __p = __get_long_pointer();
1929 __set_long_size(1);
1930 }
1931 else
1932 {
1933 __p = __get_short_pointer();
1934 __set_short_size(1);
1935 }
1936 traits_type::assign(*__p, __c);
1937 traits_type::assign(*++__p, value_type());
1938 __invalidate_iterators_past(1);
1939 return *this;
1940}
1941
1942template <class _CharT, class _Traits, class _Allocator>
Howard Hinnante32b5e22010-11-17 17:55:08 +00001943basic_string<_CharT, _Traits, _Allocator>&
1944basic_string<_CharT, _Traits, _Allocator>::operator=(const basic_string& __str)
1945{
1946 if (this != &__str)
1947 {
1948 __copy_assign_alloc(__str);
Marshall Clowf40ec902016-03-09 18:08:29 +00001949 assign(__str.data(), __str.size());
Howard Hinnante32b5e22010-11-17 17:55:08 +00001950 }
1951 return *this;
1952}
1953
1954#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
1955
1956template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001957inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnante32b5e22010-11-17 17:55:08 +00001958void
1959basic_string<_CharT, _Traits, _Allocator>::__move_assign(basic_string& __str, false_type)
Marshall Clowaf961ed2015-08-18 18:57:00 +00001960 _NOEXCEPT_(__alloc_traits::is_always_equal::value)
Howard Hinnante32b5e22010-11-17 17:55:08 +00001961{
1962 if (__alloc() != __str.__alloc())
1963 assign(__str);
1964 else
1965 __move_assign(__str, true_type());
1966}
1967
1968template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001969inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnante32b5e22010-11-17 17:55:08 +00001970void
1971basic_string<_CharT, _Traits, _Allocator>::__move_assign(basic_string& __str, true_type)
Marshall Clowaf961ed2015-08-18 18:57:00 +00001972#if _LIBCPP_STD_VER > 14
1973 _NOEXCEPT
1974#else
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00001975 _NOEXCEPT_(is_nothrow_move_assignable<allocator_type>::value)
Marshall Clowaf961ed2015-08-18 18:57:00 +00001976#endif
Howard Hinnante32b5e22010-11-17 17:55:08 +00001977{
1978 clear();
1979 shrink_to_fit();
Howard Hinnant3fdbbd22011-08-17 20:36:18 +00001980 __r_.first() = __str.__r_.first();
1981 __move_assign_alloc(__str);
Howard Hinnante32b5e22010-11-17 17:55:08 +00001982 __str.__zero();
1983}
1984
1985template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00001986inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnante32b5e22010-11-17 17:55:08 +00001987basic_string<_CharT, _Traits, _Allocator>&
1988basic_string<_CharT, _Traits, _Allocator>::operator=(basic_string&& __str)
Marshall Clowaf961ed2015-08-18 18:57:00 +00001989 _NOEXCEPT_((__noexcept_move_assign_container<_Allocator, __alloc_traits>::value))
Howard Hinnante32b5e22010-11-17 17:55:08 +00001990{
1991 __move_assign(__str, integral_constant<bool,
1992 __alloc_traits::propagate_on_container_move_assignment::value>());
1993 return *this;
1994}
1995
1996#endif
1997
1998template <class _CharT, class _Traits, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001999template<class _InputIterator>
2000typename enable_if
2001<
Marshall Clowdf9db312016-01-13 21:54:34 +00002002 __is_exactly_input_iterator <_InputIterator>::value
2003 || !__libcpp_string_gets_noexcept_iterator<_InputIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002004 basic_string<_CharT, _Traits, _Allocator>&
2005>::type
2006basic_string<_CharT, _Traits, _Allocator>::assign(_InputIterator __first, _InputIterator __last)
2007{
Marshall Clowdf9db312016-01-13 21:54:34 +00002008 basic_string __temp(__first, __last, __alloc());
2009 assign(__temp.data(), __temp.size());
Argyrios Kyrtzidis1dc6f7a2012-10-13 02:03:45 +00002010 return *this;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002011}
2012
2013template <class _CharT, class _Traits, class _Allocator>
2014template<class _ForwardIterator>
2015typename enable_if
2016<
Marshall Clowdf9db312016-01-13 21:54:34 +00002017 __is_forward_iterator<_ForwardIterator>::value
2018 && __libcpp_string_gets_noexcept_iterator<_ForwardIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002019 basic_string<_CharT, _Traits, _Allocator>&
2020>::type
2021basic_string<_CharT, _Traits, _Allocator>::assign(_ForwardIterator __first, _ForwardIterator __last)
2022{
Howard Hinnant0949eed2011-06-30 21:18:19 +00002023 size_type __n = static_cast<size_type>(_VSTD::distance(__first, __last));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002024 size_type __cap = capacity();
2025 if (__cap < __n)
2026 {
2027 size_type __sz = size();
2028 __grow_by(__cap, __n - __cap, __sz, 0, __sz);
2029 }
2030 else
2031 __invalidate_iterators_past(__n);
2032 pointer __p = __get_pointer();
2033 for (; __first != __last; ++__first, ++__p)
2034 traits_type::assign(*__p, *__first);
2035 traits_type::assign(*__p, value_type());
2036 __set_size(__n);
2037 return *this;
2038}
2039
2040template <class _CharT, class _Traits, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002041basic_string<_CharT, _Traits, _Allocator>&
2042basic_string<_CharT, _Traits, _Allocator>::assign(const basic_string& __str, size_type __pos, size_type __n)
2043{
2044 size_type __sz = __str.size();
2045 if (__pos > __sz)
2046 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002047 return assign(__str.data() + __pos, _VSTD::min(__n, __sz - __pos));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002048}
2049
2050template <class _CharT, class _Traits, class _Allocator>
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002051inline _LIBCPP_INLINE_VISIBILITY
2052basic_string<_CharT, _Traits, _Allocator>&
2053basic_string<_CharT, _Traits, _Allocator>::assign(__self_view __sv, size_type __pos, size_type __n)
2054{
2055 size_type __sz = __sv.size();
2056 if (__pos > __sz)
2057 this->__throw_out_of_range();
2058 return assign(__sv.data() + __pos, _VSTD::min(__n, __sz - __pos));
2059}
2060
2061
2062template <class _CharT, class _Traits, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002063basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002064basic_string<_CharT, _Traits, _Allocator>::assign(const value_type* __s)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002065{
Alp Tokerec34c482014-05-15 11:27:39 +00002066 _LIBCPP_ASSERT(__s != nullptr, "string::assign received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002067 return assign(__s, traits_type::length(__s));
2068}
2069
2070// append
2071
2072template <class _CharT, class _Traits, class _Allocator>
2073basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002074basic_string<_CharT, _Traits, _Allocator>::append(const value_type* __s, size_type __n)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002075{
Alp Tokerec34c482014-05-15 11:27:39 +00002076 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::append received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002077 size_type __cap = capacity();
2078 size_type __sz = size();
2079 if (__cap - __sz >= __n)
2080 {
2081 if (__n)
2082 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002083 value_type* __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002084 traits_type::copy(__p + __sz, __s, __n);
2085 __sz += __n;
2086 __set_size(__sz);
2087 traits_type::assign(__p[__sz], value_type());
2088 }
2089 }
2090 else
2091 __grow_by_and_replace(__cap, __sz + __n - __cap, __sz, __sz, 0, __n, __s);
2092 return *this;
2093}
2094
2095template <class _CharT, class _Traits, class _Allocator>
2096basic_string<_CharT, _Traits, _Allocator>&
2097basic_string<_CharT, _Traits, _Allocator>::append(size_type __n, value_type __c)
2098{
2099 if (__n)
2100 {
2101 size_type __cap = capacity();
2102 size_type __sz = size();
2103 if (__cap - __sz < __n)
2104 __grow_by(__cap, __sz + __n - __cap, __sz, __sz, 0);
2105 pointer __p = __get_pointer();
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002106 traits_type::assign(_VSTD::__to_raw_pointer(__p) + __sz, __n, __c);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002107 __sz += __n;
2108 __set_size(__sz);
2109 traits_type::assign(__p[__sz], value_type());
2110 }
2111 return *this;
2112}
2113
2114template <class _CharT, class _Traits, class _Allocator>
2115void
2116basic_string<_CharT, _Traits, _Allocator>::push_back(value_type __c)
2117{
Howard Hinnant15467182013-04-30 21:44:48 +00002118 bool __is_short = !__is_long();
2119 size_type __cap;
2120 size_type __sz;
2121 if (__is_short)
2122 {
2123 __cap = __min_cap - 1;
2124 __sz = __get_short_size();
2125 }
2126 else
2127 {
2128 __cap = __get_long_cap() - 1;
2129 __sz = __get_long_size();
2130 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002131 if (__sz == __cap)
Howard Hinnant15467182013-04-30 21:44:48 +00002132 {
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002133 __grow_by(__cap, 1, __sz, __sz, 0);
Howard Hinnant15467182013-04-30 21:44:48 +00002134 __is_short = !__is_long();
2135 }
2136 pointer __p;
2137 if (__is_short)
2138 {
2139 __p = __get_short_pointer() + __sz;
2140 __set_short_size(__sz+1);
2141 }
2142 else
2143 {
2144 __p = __get_long_pointer() + __sz;
2145 __set_long_size(__sz+1);
2146 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002147 traits_type::assign(*__p, __c);
2148 traits_type::assign(*++__p, value_type());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002149}
2150
2151template <class _CharT, class _Traits, class _Allocator>
2152template<class _InputIterator>
2153typename enable_if
2154<
Marshall Clowdf9db312016-01-13 21:54:34 +00002155 __is_exactly_input_iterator<_InputIterator>::value
2156 || !__libcpp_string_gets_noexcept_iterator<_InputIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002157 basic_string<_CharT, _Traits, _Allocator>&
2158>::type
2159basic_string<_CharT, _Traits, _Allocator>::append(_InputIterator __first, _InputIterator __last)
2160{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002161 basic_string __temp (__first, __last, __alloc());
2162 append(__temp.data(), __temp.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002163 return *this;
2164}
2165
2166template <class _CharT, class _Traits, class _Allocator>
2167template<class _ForwardIterator>
2168typename enable_if
2169<
Marshall Clowdf9db312016-01-13 21:54:34 +00002170 __is_forward_iterator<_ForwardIterator>::value
2171 && __libcpp_string_gets_noexcept_iterator<_ForwardIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002172 basic_string<_CharT, _Traits, _Allocator>&
2173>::type
2174basic_string<_CharT, _Traits, _Allocator>::append(_ForwardIterator __first, _ForwardIterator __last)
2175{
2176 size_type __sz = size();
2177 size_type __cap = capacity();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002178 size_type __n = static_cast<size_type>(_VSTD::distance(__first, __last));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002179 if (__n)
2180 {
2181 if (__cap - __sz < __n)
2182 __grow_by(__cap, __sz + __n - __cap, __sz, __sz, 0);
2183 pointer __p = __get_pointer() + __sz;
2184 for (; __first != __last; ++__p, ++__first)
2185 traits_type::assign(*__p, *__first);
2186 traits_type::assign(*__p, value_type());
2187 __set_size(__sz + __n);
2188 }
2189 return *this;
2190}
2191
2192template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002193inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002194basic_string<_CharT, _Traits, _Allocator>&
2195basic_string<_CharT, _Traits, _Allocator>::append(const basic_string& __str)
2196{
2197 return append(__str.data(), __str.size());
2198}
2199
2200template <class _CharT, class _Traits, class _Allocator>
2201basic_string<_CharT, _Traits, _Allocator>&
2202basic_string<_CharT, _Traits, _Allocator>::append(const basic_string& __str, size_type __pos, size_type __n)
2203{
2204 size_type __sz = __str.size();
2205 if (__pos > __sz)
2206 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002207 return append(__str.data() + __pos, _VSTD::min(__n, __sz - __pos));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002208}
2209
2210template <class _CharT, class _Traits, class _Allocator>
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002211inline _LIBCPP_INLINE_VISIBILITY
2212basic_string<_CharT, _Traits, _Allocator>&
2213basic_string<_CharT, _Traits, _Allocator>::append(__self_view __sv, size_type __pos, size_type __n)
2214{
2215 size_type __sz = __sv.size();
2216 if (__pos > __sz)
2217 this->__throw_out_of_range();
2218 return append(__sv.data() + __pos, _VSTD::min(__n, __sz - __pos));
2219}
2220
2221template <class _CharT, class _Traits, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002222basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002223basic_string<_CharT, _Traits, _Allocator>::append(const value_type* __s)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002224{
Alp Tokerec34c482014-05-15 11:27:39 +00002225 _LIBCPP_ASSERT(__s != nullptr, "string::append received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002226 return append(__s, traits_type::length(__s));
2227}
2228
2229// insert
2230
2231template <class _CharT, class _Traits, class _Allocator>
2232basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002233basic_string<_CharT, _Traits, _Allocator>::insert(size_type __pos, const value_type* __s, size_type __n)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002234{
Alp Tokerec34c482014-05-15 11:27:39 +00002235 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::insert received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002236 size_type __sz = size();
2237 if (__pos > __sz)
2238 this->__throw_out_of_range();
2239 size_type __cap = capacity();
2240 if (__cap - __sz >= __n)
2241 {
2242 if (__n)
2243 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002244 value_type* __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002245 size_type __n_move = __sz - __pos;
2246 if (__n_move != 0)
2247 {
2248 if (__p + __pos <= __s && __s < __p + __sz)
2249 __s += __n;
2250 traits_type::move(__p + __pos + __n, __p + __pos, __n_move);
2251 }
2252 traits_type::move(__p + __pos, __s, __n);
2253 __sz += __n;
2254 __set_size(__sz);
2255 traits_type::assign(__p[__sz], value_type());
2256 }
2257 }
2258 else
2259 __grow_by_and_replace(__cap, __sz + __n - __cap, __sz, __pos, 0, __n, __s);
2260 return *this;
2261}
2262
2263template <class _CharT, class _Traits, class _Allocator>
2264basic_string<_CharT, _Traits, _Allocator>&
2265basic_string<_CharT, _Traits, _Allocator>::insert(size_type __pos, size_type __n, value_type __c)
2266{
2267 size_type __sz = size();
2268 if (__pos > __sz)
2269 this->__throw_out_of_range();
2270 if (__n)
2271 {
2272 size_type __cap = capacity();
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002273 value_type* __p;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002274 if (__cap - __sz >= __n)
2275 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002276 __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002277 size_type __n_move = __sz - __pos;
2278 if (__n_move != 0)
2279 traits_type::move(__p + __pos + __n, __p + __pos, __n_move);
2280 }
2281 else
2282 {
2283 __grow_by(__cap, __sz + __n - __cap, __sz, __pos, 0, __n);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002284 __p = _VSTD::__to_raw_pointer(__get_long_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002285 }
2286 traits_type::assign(__p + __pos, __n, __c);
2287 __sz += __n;
2288 __set_size(__sz);
2289 traits_type::assign(__p[__sz], value_type());
2290 }
2291 return *this;
2292}
2293
2294template <class _CharT, class _Traits, class _Allocator>
2295template<class _InputIterator>
2296typename enable_if
2297<
Marshall Clowdf9db312016-01-13 21:54:34 +00002298 __is_exactly_input_iterator<_InputIterator>::value
2299 || !__libcpp_string_gets_noexcept_iterator<_InputIterator>::value,
2300 typename basic_string<_CharT, _Traits, _Allocator>::iterator
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002301>::type
2302basic_string<_CharT, _Traits, _Allocator>::insert(const_iterator __pos, _InputIterator __first, _InputIterator __last)
2303{
Howard Hinnant499cea12013-08-23 17:37:05 +00002304#if _LIBCPP_DEBUG_LEVEL >= 2
2305 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__pos) == this,
2306 "string::insert(iterator, range) called with an iterator not"
2307 " referring to this string");
2308#endif
Marshall Clowdf9db312016-01-13 21:54:34 +00002309 basic_string __temp(__first, __last, __alloc());
2310 return insert(__pos, __temp.data(), __temp.data() + __temp.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002311}
2312
2313template <class _CharT, class _Traits, class _Allocator>
2314template<class _ForwardIterator>
2315typename enable_if
2316<
Marshall Clowdf9db312016-01-13 21:54:34 +00002317 __is_forward_iterator<_ForwardIterator>::value
2318 && __libcpp_string_gets_noexcept_iterator<_ForwardIterator>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002319 typename basic_string<_CharT, _Traits, _Allocator>::iterator
2320>::type
2321basic_string<_CharT, _Traits, _Allocator>::insert(const_iterator __pos, _ForwardIterator __first, _ForwardIterator __last)
2322{
Howard Hinnant499cea12013-08-23 17:37:05 +00002323#if _LIBCPP_DEBUG_LEVEL >= 2
2324 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__pos) == this,
2325 "string::insert(iterator, range) called with an iterator not"
2326 " referring to this string");
2327#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002328 size_type __ip = static_cast<size_type>(__pos - begin());
2329 size_type __sz = size();
2330 size_type __cap = capacity();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002331 size_type __n = static_cast<size_type>(_VSTD::distance(__first, __last));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002332 if (__n)
2333 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002334 value_type* __p;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002335 if (__cap - __sz >= __n)
2336 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002337 __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002338 size_type __n_move = __sz - __ip;
2339 if (__n_move != 0)
2340 traits_type::move(__p + __ip + __n, __p + __ip, __n_move);
2341 }
2342 else
2343 {
2344 __grow_by(__cap, __sz + __n - __cap, __sz, __ip, 0, __n);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002345 __p = _VSTD::__to_raw_pointer(__get_long_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002346 }
2347 __sz += __n;
2348 __set_size(__sz);
2349 traits_type::assign(__p[__sz], value_type());
2350 for (__p += __ip; __first != __last; ++__p, ++__first)
2351 traits_type::assign(*__p, *__first);
2352 }
2353 return begin() + __ip;
2354}
2355
2356template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002357inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002358basic_string<_CharT, _Traits, _Allocator>&
2359basic_string<_CharT, _Traits, _Allocator>::insert(size_type __pos1, const basic_string& __str)
2360{
2361 return insert(__pos1, __str.data(), __str.size());
2362}
2363
2364template <class _CharT, class _Traits, class _Allocator>
2365basic_string<_CharT, _Traits, _Allocator>&
2366basic_string<_CharT, _Traits, _Allocator>::insert(size_type __pos1, const basic_string& __str,
2367 size_type __pos2, size_type __n)
2368{
2369 size_type __str_sz = __str.size();
2370 if (__pos2 > __str_sz)
2371 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002372 return insert(__pos1, __str.data() + __pos2, _VSTD::min(__n, __str_sz - __pos2));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002373}
2374
2375template <class _CharT, class _Traits, class _Allocator>
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002376inline _LIBCPP_INLINE_VISIBILITY
2377basic_string<_CharT, _Traits, _Allocator>&
2378basic_string<_CharT, _Traits, _Allocator>::insert(size_type __pos1, __self_view __sv,
2379 size_type __pos2, size_type __n)
2380{
2381 size_type __str_sz = __sv.size();
2382 if (__pos2 > __str_sz)
2383 this->__throw_out_of_range();
2384 return insert(__pos1, __sv.data() + __pos2, _VSTD::min(__n, __str_sz - __pos2));
2385}
2386
2387template <class _CharT, class _Traits, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002388basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002389basic_string<_CharT, _Traits, _Allocator>::insert(size_type __pos, const value_type* __s)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002390{
Alp Tokerec34c482014-05-15 11:27:39 +00002391 _LIBCPP_ASSERT(__s != nullptr, "string::insert received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002392 return insert(__pos, __s, traits_type::length(__s));
2393}
2394
2395template <class _CharT, class _Traits, class _Allocator>
2396typename basic_string<_CharT, _Traits, _Allocator>::iterator
2397basic_string<_CharT, _Traits, _Allocator>::insert(const_iterator __pos, value_type __c)
2398{
2399 size_type __ip = static_cast<size_type>(__pos - begin());
2400 size_type __sz = size();
2401 size_type __cap = capacity();
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002402 value_type* __p;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002403 if (__cap == __sz)
2404 {
2405 __grow_by(__cap, 1, __sz, __ip, 0, 1);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002406 __p = _VSTD::__to_raw_pointer(__get_long_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002407 }
2408 else
2409 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002410 __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002411 size_type __n_move = __sz - __ip;
2412 if (__n_move != 0)
2413 traits_type::move(__p + __ip + 1, __p + __ip, __n_move);
2414 }
2415 traits_type::assign(__p[__ip], __c);
2416 traits_type::assign(__p[++__sz], value_type());
2417 __set_size(__sz);
2418 return begin() + static_cast<difference_type>(__ip);
2419}
2420
2421template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002422inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002423typename basic_string<_CharT, _Traits, _Allocator>::iterator
2424basic_string<_CharT, _Traits, _Allocator>::insert(const_iterator __pos, size_type __n, value_type __c)
2425{
Howard Hinnant499cea12013-08-23 17:37:05 +00002426#if _LIBCPP_DEBUG_LEVEL >= 2
2427 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__pos) == this,
2428 "string::insert(iterator, n, value) called with an iterator not"
2429 " referring to this string");
2430#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002431 difference_type __p = __pos - begin();
2432 insert(static_cast<size_type>(__p), __n, __c);
2433 return begin() + __p;
2434}
2435
2436// replace
2437
2438template <class _CharT, class _Traits, class _Allocator>
2439basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002440basic_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 +00002441{
Alp Tokerec34c482014-05-15 11:27:39 +00002442 _LIBCPP_ASSERT(__n2 == 0 || __s != nullptr, "string::replace received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002443 size_type __sz = size();
2444 if (__pos > __sz)
2445 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002446 __n1 = _VSTD::min(__n1, __sz - __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002447 size_type __cap = capacity();
2448 if (__cap - __sz + __n1 >= __n2)
2449 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002450 value_type* __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002451 if (__n1 != __n2)
2452 {
2453 size_type __n_move = __sz - __pos - __n1;
2454 if (__n_move != 0)
2455 {
2456 if (__n1 > __n2)
2457 {
2458 traits_type::move(__p + __pos, __s, __n2);
2459 traits_type::move(__p + __pos + __n2, __p + __pos + __n1, __n_move);
2460 goto __finish;
2461 }
2462 if (__p + __pos < __s && __s < __p + __sz)
2463 {
2464 if (__p + __pos + __n1 <= __s)
2465 __s += __n2 - __n1;
2466 else // __p + __pos < __s < __p + __pos + __n1
2467 {
2468 traits_type::move(__p + __pos, __s, __n1);
2469 __pos += __n1;
2470 __s += __n2;
2471 __n2 -= __n1;
2472 __n1 = 0;
2473 }
2474 }
2475 traits_type::move(__p + __pos + __n2, __p + __pos + __n1, __n_move);
2476 }
2477 }
2478 traits_type::move(__p + __pos, __s, __n2);
2479__finish:
2480 __sz += __n2 - __n1;
2481 __set_size(__sz);
2482 __invalidate_iterators_past(__sz);
2483 traits_type::assign(__p[__sz], value_type());
2484 }
2485 else
2486 __grow_by_and_replace(__cap, __sz - __n1 + __n2 - __cap, __sz, __pos, __n1, __n2, __s);
2487 return *this;
2488}
2489
2490template <class _CharT, class _Traits, class _Allocator>
2491basic_string<_CharT, _Traits, _Allocator>&
2492basic_string<_CharT, _Traits, _Allocator>::replace(size_type __pos, size_type __n1, size_type __n2, value_type __c)
2493{
2494 size_type __sz = size();
2495 if (__pos > __sz)
2496 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002497 __n1 = _VSTD::min(__n1, __sz - __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002498 size_type __cap = capacity();
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002499 value_type* __p;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002500 if (__cap - __sz + __n1 >= __n2)
2501 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002502 __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002503 if (__n1 != __n2)
2504 {
2505 size_type __n_move = __sz - __pos - __n1;
2506 if (__n_move != 0)
2507 traits_type::move(__p + __pos + __n2, __p + __pos + __n1, __n_move);
2508 }
2509 }
2510 else
2511 {
2512 __grow_by(__cap, __sz - __n1 + __n2 - __cap, __sz, __pos, __n1, __n2);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002513 __p = _VSTD::__to_raw_pointer(__get_long_pointer());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002514 }
2515 traits_type::assign(__p + __pos, __n2, __c);
2516 __sz += __n2 - __n1;
2517 __set_size(__sz);
2518 __invalidate_iterators_past(__sz);
2519 traits_type::assign(__p[__sz], value_type());
2520 return *this;
2521}
2522
2523template <class _CharT, class _Traits, class _Allocator>
2524template<class _InputIterator>
2525typename enable_if
2526<
2527 __is_input_iterator<_InputIterator>::value,
2528 basic_string<_CharT, _Traits, _Allocator>&
2529>::type
Howard Hinnant7b2cb482010-11-17 21:11:40 +00002530basic_string<_CharT, _Traits, _Allocator>::replace(const_iterator __i1, const_iterator __i2,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002531 _InputIterator __j1, _InputIterator __j2)
2532{
Marshall Clowdf9db312016-01-13 21:54:34 +00002533 basic_string __temp(__j1, __j2, __alloc());
2534 return this->replace(__i1, __i2, __temp);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002535}
2536
2537template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002538inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002539basic_string<_CharT, _Traits, _Allocator>&
2540basic_string<_CharT, _Traits, _Allocator>::replace(size_type __pos1, size_type __n1, const basic_string& __str)
2541{
2542 return replace(__pos1, __n1, __str.data(), __str.size());
2543}
2544
2545template <class _CharT, class _Traits, class _Allocator>
2546basic_string<_CharT, _Traits, _Allocator>&
2547basic_string<_CharT, _Traits, _Allocator>::replace(size_type __pos1, size_type __n1, const basic_string& __str,
2548 size_type __pos2, size_type __n2)
2549{
2550 size_type __str_sz = __str.size();
2551 if (__pos2 > __str_sz)
2552 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002553 return replace(__pos1, __n1, __str.data() + __pos2, _VSTD::min(__n2, __str_sz - __pos2));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002554}
2555
2556template <class _CharT, class _Traits, class _Allocator>
2557basic_string<_CharT, _Traits, _Allocator>&
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002558basic_string<_CharT, _Traits, _Allocator>::replace(size_type __pos1, size_type __n1, __self_view __sv,
2559 size_type __pos2, size_type __n2)
2560{
2561 size_type __str_sz = __sv.size();
2562 if (__pos2 > __str_sz)
2563 this->__throw_out_of_range();
2564 return replace(__pos1, __n1, __sv.data() + __pos2, _VSTD::min(__n2, __str_sz - __pos2));
2565}
2566
2567template <class _CharT, class _Traits, class _Allocator>
2568basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002569basic_string<_CharT, _Traits, _Allocator>::replace(size_type __pos, size_type __n1, const value_type* __s)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002570{
Alp Tokerec34c482014-05-15 11:27:39 +00002571 _LIBCPP_ASSERT(__s != nullptr, "string::replace received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002572 return replace(__pos, __n1, __s, traits_type::length(__s));
2573}
2574
2575template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002576inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002577basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant7b2cb482010-11-17 21:11:40 +00002578basic_string<_CharT, _Traits, _Allocator>::replace(const_iterator __i1, const_iterator __i2, const basic_string& __str)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002579{
2580 return replace(static_cast<size_type>(__i1 - begin()), static_cast<size_type>(__i2 - __i1),
2581 __str.data(), __str.size());
2582}
2583
2584template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002585inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002586basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002587basic_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 +00002588{
2589 return replace(static_cast<size_type>(__i1 - begin()), static_cast<size_type>(__i2 - __i1), __s, __n);
2590}
2591
2592template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002593inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002594basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002595basic_string<_CharT, _Traits, _Allocator>::replace(const_iterator __i1, const_iterator __i2, const value_type* __s)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002596{
2597 return replace(static_cast<size_type>(__i1 - begin()), static_cast<size_type>(__i2 - __i1), __s);
2598}
2599
2600template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002601inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002602basic_string<_CharT, _Traits, _Allocator>&
Howard Hinnant7b2cb482010-11-17 21:11:40 +00002603basic_string<_CharT, _Traits, _Allocator>::replace(const_iterator __i1, const_iterator __i2, size_type __n, value_type __c)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002604{
2605 return replace(static_cast<size_type>(__i1 - begin()), static_cast<size_type>(__i2 - __i1), __n, __c);
2606}
2607
2608// erase
2609
2610template <class _CharT, class _Traits, class _Allocator>
2611basic_string<_CharT, _Traits, _Allocator>&
2612basic_string<_CharT, _Traits, _Allocator>::erase(size_type __pos, size_type __n)
2613{
2614 size_type __sz = size();
2615 if (__pos > __sz)
2616 this->__throw_out_of_range();
2617 if (__n)
2618 {
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002619 value_type* __p = _VSTD::__to_raw_pointer(__get_pointer());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002620 __n = _VSTD::min(__n, __sz - __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002621 size_type __n_move = __sz - __pos - __n;
2622 if (__n_move != 0)
2623 traits_type::move(__p + __pos, __p + __pos + __n, __n_move);
2624 __sz -= __n;
2625 __set_size(__sz);
2626 __invalidate_iterators_past(__sz);
2627 traits_type::assign(__p[__sz], value_type());
2628 }
2629 return *this;
2630}
2631
2632template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002633inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002634typename basic_string<_CharT, _Traits, _Allocator>::iterator
2635basic_string<_CharT, _Traits, _Allocator>::erase(const_iterator __pos)
2636{
Howard Hinnant499cea12013-08-23 17:37:05 +00002637#if _LIBCPP_DEBUG_LEVEL >= 2
2638 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__pos) == this,
2639 "string::erase(iterator) called with an iterator not"
2640 " referring to this string");
2641#endif
2642 _LIBCPP_ASSERT(__pos != end(),
2643 "string::erase(iterator) called with a non-dereferenceable iterator");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002644 iterator __b = begin();
2645 size_type __r = static_cast<size_type>(__pos - __b);
2646 erase(__r, 1);
Howard Hinnantec3773c2011-12-01 20:21:04 +00002647 return __b + static_cast<difference_type>(__r);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002648}
2649
2650template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002651inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002652typename basic_string<_CharT, _Traits, _Allocator>::iterator
2653basic_string<_CharT, _Traits, _Allocator>::erase(const_iterator __first, const_iterator __last)
2654{
Howard Hinnant499cea12013-08-23 17:37:05 +00002655#if _LIBCPP_DEBUG_LEVEL >= 2
2656 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__first) == this,
2657 "string::erase(iterator, iterator) called with an iterator not"
2658 " referring to this string");
2659#endif
2660 _LIBCPP_ASSERT(__first <= __last, "string::erase(first, last) called with invalid range");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002661 iterator __b = begin();
2662 size_type __r = static_cast<size_type>(__first - __b);
2663 erase(__r, static_cast<size_type>(__last - __first));
Howard Hinnantec3773c2011-12-01 20:21:04 +00002664 return __b + static_cast<difference_type>(__r);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002665}
2666
2667template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002668inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002669void
2670basic_string<_CharT, _Traits, _Allocator>::pop_back()
2671{
Howard Hinnant499cea12013-08-23 17:37:05 +00002672 _LIBCPP_ASSERT(!empty(), "string::pop_back(): string is already empty");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002673 size_type __sz;
2674 if (__is_long())
2675 {
2676 __sz = __get_long_size() - 1;
2677 __set_long_size(__sz);
2678 traits_type::assign(*(__get_long_pointer() + __sz), value_type());
2679 }
2680 else
2681 {
2682 __sz = __get_short_size() - 1;
2683 __set_short_size(__sz);
2684 traits_type::assign(*(__get_short_pointer() + __sz), value_type());
2685 }
2686 __invalidate_iterators_past(__sz);
2687}
2688
2689template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002690inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002691void
Howard Hinnanta6119a82011-05-29 19:57:12 +00002692basic_string<_CharT, _Traits, _Allocator>::clear() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002693{
2694 __invalidate_all_iterators();
2695 if (__is_long())
2696 {
2697 traits_type::assign(*__get_long_pointer(), value_type());
2698 __set_long_size(0);
2699 }
2700 else
2701 {
2702 traits_type::assign(*__get_short_pointer(), value_type());
2703 __set_short_size(0);
2704 }
2705}
2706
2707template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002708inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002709void
2710basic_string<_CharT, _Traits, _Allocator>::__erase_to_end(size_type __pos)
2711{
2712 if (__is_long())
2713 {
2714 traits_type::assign(*(__get_long_pointer() + __pos), value_type());
2715 __set_long_size(__pos);
2716 }
2717 else
2718 {
2719 traits_type::assign(*(__get_short_pointer() + __pos), value_type());
2720 __set_short_size(__pos);
2721 }
2722 __invalidate_iterators_past(__pos);
2723}
2724
2725template <class _CharT, class _Traits, class _Allocator>
2726void
2727basic_string<_CharT, _Traits, _Allocator>::resize(size_type __n, value_type __c)
2728{
2729 size_type __sz = size();
2730 if (__n > __sz)
2731 append(__n - __sz, __c);
2732 else
2733 __erase_to_end(__n);
2734}
2735
2736template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002737inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002738typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00002739basic_string<_CharT, _Traits, _Allocator>::max_size() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002740{
Howard Hinnante32b5e22010-11-17 17:55:08 +00002741 size_type __m = __alloc_traits::max_size(__alloc());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002742#if _LIBCPP_BIG_ENDIAN
Marshall Clow09f85502013-10-31 17:23:08 +00002743 return (__m <= ~__long_mask ? __m : __m/2) - __alignment;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002744#else
Marshall Clow09f85502013-10-31 17:23:08 +00002745 return __m - __alignment;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002746#endif
2747}
2748
2749template <class _CharT, class _Traits, class _Allocator>
2750void
2751basic_string<_CharT, _Traits, _Allocator>::reserve(size_type __res_arg)
2752{
2753 if (__res_arg > max_size())
2754 this->__throw_length_error();
2755 size_type __cap = capacity();
2756 size_type __sz = size();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002757 __res_arg = _VSTD::max(__res_arg, __sz);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002758 __res_arg = __recommend(__res_arg);
2759 if (__res_arg != __cap)
2760 {
2761 pointer __new_data, __p;
2762 bool __was_long, __now_long;
2763 if (__res_arg == __min_cap - 1)
2764 {
2765 __was_long = true;
2766 __now_long = false;
2767 __new_data = __get_short_pointer();
2768 __p = __get_long_pointer();
2769 }
2770 else
2771 {
2772 if (__res_arg > __cap)
Howard Hinnante32b5e22010-11-17 17:55:08 +00002773 __new_data = __alloc_traits::allocate(__alloc(), __res_arg+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002774 else
2775 {
2776 #ifndef _LIBCPP_NO_EXCEPTIONS
2777 try
2778 {
Howard Hinnant324bb032010-08-22 00:02:43 +00002779 #endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnante32b5e22010-11-17 17:55:08 +00002780 __new_data = __alloc_traits::allocate(__alloc(), __res_arg+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002781 #ifndef _LIBCPP_NO_EXCEPTIONS
2782 }
2783 catch (...)
2784 {
2785 return;
2786 }
Howard Hinnant324bb032010-08-22 00:02:43 +00002787 #else // _LIBCPP_NO_EXCEPTIONS
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002788 if (__new_data == nullptr)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002789 return;
Howard Hinnant324bb032010-08-22 00:02:43 +00002790 #endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002791 }
2792 __now_long = true;
2793 __was_long = __is_long();
2794 __p = __get_pointer();
2795 }
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002796 traits_type::copy(_VSTD::__to_raw_pointer(__new_data),
2797 _VSTD::__to_raw_pointer(__p), size()+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002798 if (__was_long)
Howard Hinnante32b5e22010-11-17 17:55:08 +00002799 __alloc_traits::deallocate(__alloc(), __p, __cap+1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002800 if (__now_long)
2801 {
2802 __set_long_cap(__res_arg+1);
2803 __set_long_size(__sz);
2804 __set_long_pointer(__new_data);
2805 }
2806 else
2807 __set_short_size(__sz);
2808 __invalidate_all_iterators();
2809 }
2810}
2811
2812template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002813inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002814typename basic_string<_CharT, _Traits, _Allocator>::const_reference
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002815basic_string<_CharT, _Traits, _Allocator>::operator[](size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002816{
Howard Hinnant499cea12013-08-23 17:37:05 +00002817 _LIBCPP_ASSERT(__pos <= size(), "string index out of bounds");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002818 return *(data() + __pos);
2819}
2820
2821template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002822inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002823typename basic_string<_CharT, _Traits, _Allocator>::reference
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002824basic_string<_CharT, _Traits, _Allocator>::operator[](size_type __pos) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002825{
Howard Hinnant499cea12013-08-23 17:37:05 +00002826 _LIBCPP_ASSERT(__pos <= size(), "string index out of bounds");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002827 return *(__get_pointer() + __pos);
2828}
2829
2830template <class _CharT, class _Traits, class _Allocator>
2831typename basic_string<_CharT, _Traits, _Allocator>::const_reference
2832basic_string<_CharT, _Traits, _Allocator>::at(size_type __n) const
2833{
2834 if (__n >= size())
2835 this->__throw_out_of_range();
2836 return (*this)[__n];
2837}
2838
2839template <class _CharT, class _Traits, class _Allocator>
2840typename basic_string<_CharT, _Traits, _Allocator>::reference
2841basic_string<_CharT, _Traits, _Allocator>::at(size_type __n)
2842{
2843 if (__n >= size())
2844 this->__throw_out_of_range();
2845 return (*this)[__n];
2846}
2847
2848template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002849inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002850typename basic_string<_CharT, _Traits, _Allocator>::reference
2851basic_string<_CharT, _Traits, _Allocator>::front()
2852{
Howard Hinnant499cea12013-08-23 17:37:05 +00002853 _LIBCPP_ASSERT(!empty(), "string::front(): string is empty");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002854 return *__get_pointer();
2855}
2856
2857template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002858inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002859typename basic_string<_CharT, _Traits, _Allocator>::const_reference
2860basic_string<_CharT, _Traits, _Allocator>::front() const
2861{
Howard Hinnant499cea12013-08-23 17:37:05 +00002862 _LIBCPP_ASSERT(!empty(), "string::front(): string is empty");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002863 return *data();
2864}
2865
2866template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002867inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002868typename basic_string<_CharT, _Traits, _Allocator>::reference
2869basic_string<_CharT, _Traits, _Allocator>::back()
2870{
Howard Hinnant499cea12013-08-23 17:37:05 +00002871 _LIBCPP_ASSERT(!empty(), "string::back(): string is empty");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002872 return *(__get_pointer() + size() - 1);
2873}
2874
2875template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002876inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002877typename basic_string<_CharT, _Traits, _Allocator>::const_reference
2878basic_string<_CharT, _Traits, _Allocator>::back() const
2879{
Howard Hinnant499cea12013-08-23 17:37:05 +00002880 _LIBCPP_ASSERT(!empty(), "string::back(): string is empty");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002881 return *(data() + size() - 1);
2882}
2883
2884template <class _CharT, class _Traits, class _Allocator>
2885typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002886basic_string<_CharT, _Traits, _Allocator>::copy(value_type* __s, size_type __n, size_type __pos) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002887{
2888 size_type __sz = size();
2889 if (__pos > __sz)
2890 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00002891 size_type __rlen = _VSTD::min(__n, __sz - __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002892 traits_type::copy(__s, data() + __pos, __rlen);
2893 return __rlen;
2894}
2895
2896template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002897inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002898basic_string<_CharT, _Traits, _Allocator>
2899basic_string<_CharT, _Traits, _Allocator>::substr(size_type __pos, size_type __n) const
2900{
2901 return basic_string(*this, __pos, __n, __alloc());
2902}
2903
2904template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002905inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002906void
2907basic_string<_CharT, _Traits, _Allocator>::swap(basic_string& __str)
Marshall Clow7d914d12015-07-13 20:04:56 +00002908#if _LIBCPP_STD_VER >= 14
2909 _NOEXCEPT
2910#else
2911 _NOEXCEPT_(!__alloc_traits::propagate_on_container_swap::value ||
2912 __is_nothrow_swappable<allocator_type>::value)
2913#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002914{
Howard Hinnant499cea12013-08-23 17:37:05 +00002915#if _LIBCPP_DEBUG_LEVEL >= 2
2916 if (!__is_long())
2917 __get_db()->__invalidate_all(this);
2918 if (!__str.__is_long())
2919 __get_db()->__invalidate_all(&__str);
2920 __get_db()->swap(this, &__str);
2921#endif
Howard Hinnant0949eed2011-06-30 21:18:19 +00002922 _VSTD::swap(__r_.first(), __str.__r_.first());
Marshall Clow7d914d12015-07-13 20:04:56 +00002923 __swap_allocator(__alloc(), __str.__alloc());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002924}
2925
2926// find
2927
2928template <class _Traits>
2929struct _LIBCPP_HIDDEN __traits_eq
2930{
2931 typedef typename _Traits::char_type char_type;
Howard Hinnanta6119a82011-05-29 19:57:12 +00002932 _LIBCPP_INLINE_VISIBILITY
2933 bool operator()(const char_type& __x, const char_type& __y) _NOEXCEPT
2934 {return _Traits::eq(__x, __y);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002935};
2936
2937template<class _CharT, class _Traits, class _Allocator>
2938typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002939basic_string<_CharT, _Traits, _Allocator>::find(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00002940 size_type __pos,
2941 size_type __n) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002942{
Alp Tokerec34c482014-05-15 11:27:39 +00002943 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::find(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002944 return __str_find<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00002945 (data(), size(), __s, __pos, __n);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002946}
2947
2948template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00002949inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002950typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00002951basic_string<_CharT, _Traits, _Allocator>::find(const basic_string& __str,
2952 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002953{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002954 return __str_find<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00002955 (data(), size(), __str.data(), __pos, __str.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002956}
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>::size_type
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002961basic_string<_CharT, _Traits, _Allocator>::find(__self_view __sv,
2962 size_type __pos) const _NOEXCEPT
2963{
2964 return __str_find<value_type, size_type, traits_type, npos>
2965 (data(), size(), __sv.data(), __pos, __sv.size());
2966}
2967
2968template<class _CharT, class _Traits, class _Allocator>
2969inline _LIBCPP_INLINE_VISIBILITY
2970typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002971basic_string<_CharT, _Traits, _Allocator>::find(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00002972 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002973{
Alp Tokerec34c482014-05-15 11:27:39 +00002974 _LIBCPP_ASSERT(__s != nullptr, "string::find(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002975 return __str_find<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00002976 (data(), size(), __s, __pos, traits_type::length(__s));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002977}
2978
2979template<class _CharT, class _Traits, class _Allocator>
2980typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00002981basic_string<_CharT, _Traits, _Allocator>::find(value_type __c,
2982 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002983{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002984 return __str_find<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00002985 (data(), size(), __c, __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002986}
2987
2988// rfind
2989
2990template<class _CharT, class _Traits, class _Allocator>
2991typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00002992basic_string<_CharT, _Traits, _Allocator>::rfind(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00002993 size_type __pos,
2994 size_type __n) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002995{
Alp Tokerec34c482014-05-15 11:27:39 +00002996 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::rfind(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00002997 return __str_rfind<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00002998 (data(), size(), __s, __pos, __n);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002999}
3000
3001template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003002inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003003typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003004basic_string<_CharT, _Traits, _Allocator>::rfind(const basic_string& __str,
3005 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003006{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003007 return __str_rfind<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00003008 (data(), size(), __str.data(), __pos, __str.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003009}
3010
3011template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003012inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003013typename basic_string<_CharT, _Traits, _Allocator>::size_type
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003014basic_string<_CharT, _Traits, _Allocator>::rfind(__self_view __sv,
3015 size_type __pos) const _NOEXCEPT
3016{
3017 return __str_rfind<value_type, size_type, traits_type, npos>
3018 (data(), size(), __sv.data(), __pos, __sv.size());
3019}
3020
3021template<class _CharT, class _Traits, class _Allocator>
3022inline _LIBCPP_INLINE_VISIBILITY
3023typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003024basic_string<_CharT, _Traits, _Allocator>::rfind(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003025 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003026{
Alp Tokerec34c482014-05-15 11:27:39 +00003027 _LIBCPP_ASSERT(__s != nullptr, "string::rfind(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003028 return __str_rfind<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00003029 (data(), size(), __s, __pos, traits_type::length(__s));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003030}
3031
3032template<class _CharT, class _Traits, class _Allocator>
3033typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003034basic_string<_CharT, _Traits, _Allocator>::rfind(value_type __c,
3035 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003036{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003037 return __str_rfind<value_type, size_type, traits_type, npos>
Marshall Clow360f3192014-06-02 02:22:49 +00003038 (data(), size(), __c, __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003039}
3040
3041// find_first_of
3042
3043template<class _CharT, class _Traits, class _Allocator>
3044typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003045basic_string<_CharT, _Traits, _Allocator>::find_first_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003046 size_type __pos,
3047 size_type __n) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003048{
Alp Tokerec34c482014-05-15 11:27:39 +00003049 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::find_first_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003050 return __str_find_first_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003051 (data(), size(), __s, __pos, __n);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003052}
3053
3054template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003055inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003056typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003057basic_string<_CharT, _Traits, _Allocator>::find_first_of(const basic_string& __str,
3058 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003059{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003060 return __str_find_first_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003061 (data(), size(), __str.data(), __pos, __str.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003062}
3063
3064template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003065inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003066typename basic_string<_CharT, _Traits, _Allocator>::size_type
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003067basic_string<_CharT, _Traits, _Allocator>::find_first_of(__self_view __sv,
3068 size_type __pos) const _NOEXCEPT
3069{
3070 return __str_find_first_of<value_type, size_type, traits_type, npos>
3071 (data(), size(), __sv.data(), __pos, __sv.size());
3072}
3073
3074template<class _CharT, class _Traits, class _Allocator>
3075inline _LIBCPP_INLINE_VISIBILITY
3076typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003077basic_string<_CharT, _Traits, _Allocator>::find_first_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003078 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003079{
Alp Tokerec34c482014-05-15 11:27:39 +00003080 _LIBCPP_ASSERT(__s != nullptr, "string::find_first_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003081 return __str_find_first_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003082 (data(), size(), __s, __pos, traits_type::length(__s));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003083}
3084
3085template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003086inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003087typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003088basic_string<_CharT, _Traits, _Allocator>::find_first_of(value_type __c,
3089 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003090{
3091 return find(__c, __pos);
3092}
3093
3094// find_last_of
3095
3096template<class _CharT, class _Traits, class _Allocator>
3097typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003098basic_string<_CharT, _Traits, _Allocator>::find_last_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003099 size_type __pos,
3100 size_type __n) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003101{
Alp Tokerec34c482014-05-15 11:27:39 +00003102 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::find_last_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003103 return __str_find_last_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003104 (data(), size(), __s, __pos, __n);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003105}
3106
3107template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003108inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003109typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003110basic_string<_CharT, _Traits, _Allocator>::find_last_of(const basic_string& __str,
3111 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003112{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003113 return __str_find_last_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003114 (data(), size(), __str.data(), __pos, __str.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003115}
3116
3117template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003118inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003119typename basic_string<_CharT, _Traits, _Allocator>::size_type
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003120basic_string<_CharT, _Traits, _Allocator>::find_last_of(__self_view __sv,
3121 size_type __pos) const _NOEXCEPT
3122{
3123 return __str_find_last_of<value_type, size_type, traits_type, npos>
3124 (data(), size(), __sv.data(), __pos, __sv.size());
3125}
3126
3127template<class _CharT, class _Traits, class _Allocator>
3128inline _LIBCPP_INLINE_VISIBILITY
3129typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003130basic_string<_CharT, _Traits, _Allocator>::find_last_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003131 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003132{
Alp Tokerec34c482014-05-15 11:27:39 +00003133 _LIBCPP_ASSERT(__s != nullptr, "string::find_last_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003134 return __str_find_last_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003135 (data(), size(), __s, __pos, traits_type::length(__s));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003136}
3137
3138template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003139inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003140typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003141basic_string<_CharT, _Traits, _Allocator>::find_last_of(value_type __c,
3142 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003143{
3144 return rfind(__c, __pos);
3145}
3146
3147// find_first_not_of
3148
3149template<class _CharT, class _Traits, class _Allocator>
3150typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003151basic_string<_CharT, _Traits, _Allocator>::find_first_not_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003152 size_type __pos,
3153 size_type __n) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003154{
Alp Tokerec34c482014-05-15 11:27:39 +00003155 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::find_first_not_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003156 return __str_find_first_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003157 (data(), size(), __s, __pos, __n);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003158}
3159
3160template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003161inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003162typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003163basic_string<_CharT, _Traits, _Allocator>::find_first_not_of(const basic_string& __str,
3164 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003165{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003166 return __str_find_first_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003167 (data(), size(), __str.data(), __pos, __str.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003168}
3169
3170template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003171inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003172typename basic_string<_CharT, _Traits, _Allocator>::size_type
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003173basic_string<_CharT, _Traits, _Allocator>::find_first_not_of(__self_view __sv,
3174 size_type __pos) const _NOEXCEPT
3175{
3176 return __str_find_first_not_of<value_type, size_type, traits_type, npos>
3177 (data(), size(), __sv.data(), __pos, __sv.size());
3178}
3179
3180template<class _CharT, class _Traits, class _Allocator>
3181inline _LIBCPP_INLINE_VISIBILITY
3182typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003183basic_string<_CharT, _Traits, _Allocator>::find_first_not_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003184 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003185{
Alp Tokerec34c482014-05-15 11:27:39 +00003186 _LIBCPP_ASSERT(__s != nullptr, "string::find_first_not_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003187 return __str_find_first_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003188 (data(), size(), __s, __pos, traits_type::length(__s));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003189}
3190
3191template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003192inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003193typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003194basic_string<_CharT, _Traits, _Allocator>::find_first_not_of(value_type __c,
3195 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003196{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003197 return __str_find_first_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003198 (data(), size(), __c, __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003199}
3200
3201// find_last_not_of
3202
3203template<class _CharT, class _Traits, class _Allocator>
3204typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003205basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003206 size_type __pos,
3207 size_type __n) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003208{
Alp Tokerec34c482014-05-15 11:27:39 +00003209 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::find_last_not_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003210 return __str_find_last_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003211 (data(), size(), __s, __pos, __n);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003212}
3213
3214template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003215inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003216typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003217basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(const basic_string& __str,
3218 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003219{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003220 return __str_find_last_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003221 (data(), size(), __str.data(), __pos, __str.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003222}
3223
3224template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003225inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003226typename basic_string<_CharT, _Traits, _Allocator>::size_type
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003227basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(__self_view __sv,
3228 size_type __pos) const _NOEXCEPT
3229{
3230 return __str_find_last_not_of<value_type, size_type, traits_type, npos>
3231 (data(), size(), __sv.data(), __pos, __sv.size());
3232}
3233
3234template<class _CharT, class _Traits, class _Allocator>
3235inline _LIBCPP_INLINE_VISIBILITY
3236typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003237basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003238 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003239{
Alp Tokerec34c482014-05-15 11:27:39 +00003240 _LIBCPP_ASSERT(__s != nullptr, "string::find_last_not_of(): received nullptr");
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003241 return __str_find_last_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003242 (data(), size(), __s, __pos, traits_type::length(__s));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003243}
3244
3245template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003246inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003247typename basic_string<_CharT, _Traits, _Allocator>::size_type
Howard Hinnanta6119a82011-05-29 19:57:12 +00003248basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(value_type __c,
3249 size_type __pos) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003250{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003251 return __str_find_last_not_of<value_type, size_type, traits_type, npos>
Marshall Clow8eb5acc2014-02-16 01:57:26 +00003252 (data(), size(), __c, __pos);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003253}
3254
3255// compare
3256
3257template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003258inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003259int
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003260basic_string<_CharT, _Traits, _Allocator>::compare(__self_view __sv) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003261{
Howard Hinnantfa06d752011-07-24 21:45:06 +00003262 size_t __lhs_sz = size();
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003263 size_t __rhs_sz = __sv.size();
3264 int __result = traits_type::compare(data(), __sv.data(),
Howard Hinnantfa06d752011-07-24 21:45:06 +00003265 _VSTD::min(__lhs_sz, __rhs_sz));
3266 if (__result != 0)
3267 return __result;
3268 if (__lhs_sz < __rhs_sz)
3269 return -1;
3270 if (__lhs_sz > __rhs_sz)
3271 return 1;
3272 return 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003273}
3274
3275template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003276inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003277int
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003278basic_string<_CharT, _Traits, _Allocator>::compare(const basic_string& __str) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003279{
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003280 return compare(__self_view(__str));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003281}
3282
3283template <class _CharT, class _Traits, class _Allocator>
3284int
Howard Hinnanta6119a82011-05-29 19:57:12 +00003285basic_string<_CharT, _Traits, _Allocator>::compare(size_type __pos1,
3286 size_type __n1,
Howard Hinnant9dcdcde2013-06-28 16:59:19 +00003287 const value_type* __s,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003288 size_type __n2) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003289{
Alp Tokerec34c482014-05-15 11:27:39 +00003290 _LIBCPP_ASSERT(__n2 == 0 || __s != nullptr, "string::compare(): received nullptr");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003291 size_type __sz = size();
3292 if (__pos1 > __sz || __n2 == npos)
3293 this->__throw_out_of_range();
Howard Hinnant0949eed2011-06-30 21:18:19 +00003294 size_type __rlen = _VSTD::min(__n1, __sz - __pos1);
3295 int __r = traits_type::compare(data() + __pos1, __s, _VSTD::min(__rlen, __n2));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003296 if (__r == 0)
3297 {
3298 if (__rlen < __n2)
3299 __r = -1;
3300 else if (__rlen > __n2)
3301 __r = 1;
3302 }
3303 return __r;
3304}
3305
Marshall Clow1e00d6d2016-07-21 05:31:24 +00003306template <class _CharT, class _Traits, class _Allocator>
3307inline _LIBCPP_INLINE_VISIBILITY
3308int
3309basic_string<_CharT, _Traits, _Allocator>::compare(size_type __pos1,
3310 size_type __n1,
3311 __self_view __sv) const
3312{
3313 return compare(__pos1, __n1, __sv.data(), __sv.size());
3314}
3315
3316template <class _CharT, class _Traits, class _Allocator>
3317inline _LIBCPP_INLINE_VISIBILITY
3318int
3319basic_string<_CharT, _Traits, _Allocator>::compare(size_type __pos1,
3320 size_type __n1,
3321 const basic_string& __str) const
3322{
3323 return compare(__pos1, __n1, __str.data(), __str.size());
3324}
3325
3326template <class _CharT, class _Traits, class _Allocator>
3327int inline _LIBCPP_INLINE_VISIBILITY
3328basic_string<_CharT, _Traits, _Allocator>::compare(size_type __pos1,
3329 size_type __n1,
3330 __self_view __sv,
3331 size_type __pos2,
3332 size_type __n2) const
3333{
3334 return __self_view(*this).substr(__pos1, __n1).compare(__sv.substr(__pos2, __n2));
3335}
3336
3337template <class _CharT, class _Traits, class _Allocator>
3338int
3339basic_string<_CharT, _Traits, _Allocator>::compare(size_type __pos1,
3340 size_type __n1,
3341 const basic_string& __str,
3342 size_type __pos2,
3343 size_type __n2) const
3344{
3345 return compare(__pos1, __n1, __self_view(__str), __pos2, __n2);
3346}
3347
3348template <class _CharT, class _Traits, class _Allocator>
3349int
3350basic_string<_CharT, _Traits, _Allocator>::compare(const value_type* __s) const _NOEXCEPT
3351{
3352 _LIBCPP_ASSERT(__s != nullptr, "string::compare(): received nullptr");
3353 return compare(0, npos, __s, traits_type::length(__s));
3354}
3355
3356template <class _CharT, class _Traits, class _Allocator>
3357int
3358basic_string<_CharT, _Traits, _Allocator>::compare(size_type __pos1,
3359 size_type __n1,
3360 const value_type* __s) const
3361{
3362 _LIBCPP_ASSERT(__s != nullptr, "string::compare(): received nullptr");
3363 return compare(__pos1, __n1, __s, traits_type::length(__s));
3364}
3365
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003366// __invariants
3367
3368template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003369inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003370bool
3371basic_string<_CharT, _Traits, _Allocator>::__invariants() const
3372{
3373 if (size() > capacity())
3374 return false;
3375 if (capacity() < __min_cap - 1)
3376 return false;
3377 if (data() == 0)
3378 return false;
3379 if (data()[size()] != value_type(0))
3380 return false;
3381 return true;
3382}
3383
3384// operator==
3385
3386template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003387inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003388bool
3389operator==(const basic_string<_CharT, _Traits, _Allocator>& __lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003390 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003391{
Howard Hinnant08dd2532013-04-22 23:55:13 +00003392 size_t __lhs_sz = __lhs.size();
3393 return __lhs_sz == __rhs.size() && _Traits::compare(__lhs.data(),
3394 __rhs.data(),
3395 __lhs_sz) == 0;
3396}
3397
3398template<class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003399inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant08dd2532013-04-22 23:55:13 +00003400bool
3401operator==(const basic_string<char, char_traits<char>, _Allocator>& __lhs,
3402 const basic_string<char, char_traits<char>, _Allocator>& __rhs) _NOEXCEPT
3403{
3404 size_t __lhs_sz = __lhs.size();
3405 if (__lhs_sz != __rhs.size())
3406 return false;
3407 const char* __lp = __lhs.data();
3408 const char* __rp = __rhs.data();
3409 if (__lhs.__is_long())
3410 return char_traits<char>::compare(__lp, __rp, __lhs_sz) == 0;
3411 for (; __lhs_sz != 0; --__lhs_sz, ++__lp, ++__rp)
3412 if (*__lp != *__rp)
3413 return false;
3414 return true;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003415}
3416
3417template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003418inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003419bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003420operator==(const _CharT* __lhs,
3421 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003422{
Eric Fiselier4f241822015-08-28 03:02:37 +00003423 typedef basic_string<_CharT, _Traits, _Allocator> _String;
3424 _LIBCPP_ASSERT(__lhs != nullptr, "operator==(char*, basic_string): received nullptr");
3425 size_t __lhs_len = _Traits::length(__lhs);
3426 if (__lhs_len != __rhs.size()) return false;
3427 return __rhs.compare(0, _String::npos, __lhs, __lhs_len) == 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003428}
3429
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003430template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003431inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003432bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003433operator==(const basic_string<_CharT,_Traits,_Allocator>& __lhs,
3434 const _CharT* __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003435{
Eric Fiselier4f241822015-08-28 03:02:37 +00003436 typedef basic_string<_CharT, _Traits, _Allocator> _String;
3437 _LIBCPP_ASSERT(__rhs != nullptr, "operator==(basic_string, char*): received nullptr");
3438 size_t __rhs_len = _Traits::length(__rhs);
3439 if (__rhs_len != __lhs.size()) return false;
3440 return __lhs.compare(0, _String::npos, __rhs, __rhs_len) == 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003441}
3442
Howard Hinnant324bb032010-08-22 00:02:43 +00003443template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003444inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003445bool
3446operator!=(const basic_string<_CharT,_Traits,_Allocator>& __lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003447 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003448{
3449 return !(__lhs == __rhs);
3450}
3451
3452template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003453inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003454bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003455operator!=(const _CharT* __lhs,
3456 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003457{
3458 return !(__lhs == __rhs);
3459}
3460
3461template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003462inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003463bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003464operator!=(const basic_string<_CharT, _Traits, _Allocator>& __lhs,
3465 const _CharT* __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003466{
3467 return !(__lhs == __rhs);
3468}
3469
3470// operator<
3471
3472template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003473inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003474bool
3475operator< (const basic_string<_CharT, _Traits, _Allocator>& __lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003476 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003477{
Howard Hinnant2644a7b2011-07-24 15:07:21 +00003478 return __lhs.compare(__rhs) < 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003479}
3480
3481template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003482inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003483bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003484operator< (const basic_string<_CharT, _Traits, _Allocator>& __lhs,
3485 const _CharT* __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003486{
Howard Hinnant2644a7b2011-07-24 15:07:21 +00003487 return __lhs.compare(__rhs) < 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003488}
3489
3490template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003491inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003492bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003493operator< (const _CharT* __lhs,
3494 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003495{
3496 return __rhs.compare(__lhs) > 0;
3497}
3498
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003499// operator>
3500
3501template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003502inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003503bool
3504operator> (const basic_string<_CharT, _Traits, _Allocator>& __lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003505 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003506{
3507 return __rhs < __lhs;
3508}
3509
3510template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003511inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003512bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003513operator> (const basic_string<_CharT, _Traits, _Allocator>& __lhs,
3514 const _CharT* __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003515{
3516 return __rhs < __lhs;
3517}
3518
3519template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003520inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003521bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003522operator> (const _CharT* __lhs,
3523 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003524{
3525 return __rhs < __lhs;
3526}
3527
3528// operator<=
3529
3530template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003531inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003532bool
3533operator<=(const basic_string<_CharT, _Traits, _Allocator>& __lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003534 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003535{
3536 return !(__rhs < __lhs);
3537}
3538
3539template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003540inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003541bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003542operator<=(const basic_string<_CharT, _Traits, _Allocator>& __lhs,
3543 const _CharT* __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003544{
3545 return !(__rhs < __lhs);
3546}
3547
3548template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003549inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003550bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003551operator<=(const _CharT* __lhs,
3552 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003553{
3554 return !(__rhs < __lhs);
3555}
3556
3557// operator>=
3558
3559template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003560inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003561bool
3562operator>=(const basic_string<_CharT, _Traits, _Allocator>& __lhs,
Howard Hinnanta6119a82011-05-29 19:57:12 +00003563 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003564{
3565 return !(__lhs < __rhs);
3566}
3567
3568template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003569inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003570bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003571operator>=(const basic_string<_CharT, _Traits, _Allocator>& __lhs,
3572 const _CharT* __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003573{
3574 return !(__lhs < __rhs);
3575}
3576
3577template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003578inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003579bool
Howard Hinnanta6119a82011-05-29 19:57:12 +00003580operator>=(const _CharT* __lhs,
3581 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003582{
3583 return !(__lhs < __rhs);
3584}
3585
3586// operator +
3587
3588template<class _CharT, class _Traits, class _Allocator>
3589basic_string<_CharT, _Traits, _Allocator>
3590operator+(const basic_string<_CharT, _Traits, _Allocator>& __lhs,
3591 const basic_string<_CharT, _Traits, _Allocator>& __rhs)
3592{
3593 basic_string<_CharT, _Traits, _Allocator> __r(__lhs.get_allocator());
3594 typename basic_string<_CharT, _Traits, _Allocator>::size_type __lhs_sz = __lhs.size();
3595 typename basic_string<_CharT, _Traits, _Allocator>::size_type __rhs_sz = __rhs.size();
3596 __r.__init(__lhs.data(), __lhs_sz, __lhs_sz + __rhs_sz);
3597 __r.append(__rhs.data(), __rhs_sz);
3598 return __r;
3599}
3600
3601template<class _CharT, class _Traits, class _Allocator>
3602basic_string<_CharT, _Traits, _Allocator>
3603operator+(const _CharT* __lhs , const basic_string<_CharT,_Traits,_Allocator>& __rhs)
3604{
3605 basic_string<_CharT, _Traits, _Allocator> __r(__rhs.get_allocator());
3606 typename basic_string<_CharT, _Traits, _Allocator>::size_type __lhs_sz = _Traits::length(__lhs);
3607 typename basic_string<_CharT, _Traits, _Allocator>::size_type __rhs_sz = __rhs.size();
3608 __r.__init(__lhs, __lhs_sz, __lhs_sz + __rhs_sz);
3609 __r.append(__rhs.data(), __rhs_sz);
3610 return __r;
3611}
3612
3613template<class _CharT, class _Traits, class _Allocator>
3614basic_string<_CharT, _Traits, _Allocator>
3615operator+(_CharT __lhs, const basic_string<_CharT,_Traits,_Allocator>& __rhs)
3616{
3617 basic_string<_CharT, _Traits, _Allocator> __r(__rhs.get_allocator());
3618 typename basic_string<_CharT, _Traits, _Allocator>::size_type __rhs_sz = __rhs.size();
3619 __r.__init(&__lhs, 1, 1 + __rhs_sz);
3620 __r.append(__rhs.data(), __rhs_sz);
3621 return __r;
3622}
3623
3624template<class _CharT, class _Traits, class _Allocator>
3625basic_string<_CharT, _Traits, _Allocator>
3626operator+(const basic_string<_CharT, _Traits, _Allocator>& __lhs, const _CharT* __rhs)
3627{
3628 basic_string<_CharT, _Traits, _Allocator> __r(__lhs.get_allocator());
3629 typename basic_string<_CharT, _Traits, _Allocator>::size_type __lhs_sz = __lhs.size();
3630 typename basic_string<_CharT, _Traits, _Allocator>::size_type __rhs_sz = _Traits::length(__rhs);
3631 __r.__init(__lhs.data(), __lhs_sz, __lhs_sz + __rhs_sz);
3632 __r.append(__rhs, __rhs_sz);
3633 return __r;
3634}
3635
3636template<class _CharT, class _Traits, class _Allocator>
3637basic_string<_CharT, _Traits, _Allocator>
3638operator+(const basic_string<_CharT, _Traits, _Allocator>& __lhs, _CharT __rhs)
3639{
3640 basic_string<_CharT, _Traits, _Allocator> __r(__lhs.get_allocator());
3641 typename basic_string<_CharT, _Traits, _Allocator>::size_type __lhs_sz = __lhs.size();
3642 __r.__init(__lhs.data(), __lhs_sz, __lhs_sz + 1);
3643 __r.push_back(__rhs);
3644 return __r;
3645}
3646
Howard Hinnant73d21a42010-09-04 23:28:19 +00003647#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003648
3649template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003650inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003651basic_string<_CharT, _Traits, _Allocator>
3652operator+(basic_string<_CharT, _Traits, _Allocator>&& __lhs, const basic_string<_CharT, _Traits, _Allocator>& __rhs)
3653{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003654 return _VSTD::move(__lhs.append(__rhs));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003655}
3656
3657template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003658inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003659basic_string<_CharT, _Traits, _Allocator>
3660operator+(const basic_string<_CharT, _Traits, _Allocator>& __lhs, basic_string<_CharT, _Traits, _Allocator>&& __rhs)
3661{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003662 return _VSTD::move(__rhs.insert(0, __lhs));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003663}
3664
3665template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003666inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003667basic_string<_CharT, _Traits, _Allocator>
3668operator+(basic_string<_CharT, _Traits, _Allocator>&& __lhs, basic_string<_CharT, _Traits, _Allocator>&& __rhs)
3669{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003670 return _VSTD::move(__lhs.append(__rhs));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003671}
3672
3673template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003674inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003675basic_string<_CharT, _Traits, _Allocator>
3676operator+(const _CharT* __lhs , basic_string<_CharT,_Traits,_Allocator>&& __rhs)
3677{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003678 return _VSTD::move(__rhs.insert(0, __lhs));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003679}
3680
3681template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003682inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003683basic_string<_CharT, _Traits, _Allocator>
3684operator+(_CharT __lhs, basic_string<_CharT,_Traits,_Allocator>&& __rhs)
3685{
3686 __rhs.insert(__rhs.begin(), __lhs);
Howard Hinnant0949eed2011-06-30 21:18:19 +00003687 return _VSTD::move(__rhs);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003688}
3689
3690template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003691inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003692basic_string<_CharT, _Traits, _Allocator>
3693operator+(basic_string<_CharT, _Traits, _Allocator>&& __lhs, const _CharT* __rhs)
3694{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003695 return _VSTD::move(__lhs.append(__rhs));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003696}
3697
3698template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003699inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003700basic_string<_CharT, _Traits, _Allocator>
3701operator+(basic_string<_CharT, _Traits, _Allocator>&& __lhs, _CharT __rhs)
3702{
3703 __lhs.push_back(__rhs);
Howard Hinnant0949eed2011-06-30 21:18:19 +00003704 return _VSTD::move(__lhs);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003705}
3706
Howard Hinnant73d21a42010-09-04 23:28:19 +00003707#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003708
3709// swap
3710
3711template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +00003712inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003713void
Howard Hinnanta6119a82011-05-29 19:57:12 +00003714swap(basic_string<_CharT, _Traits, _Allocator>& __lhs,
Howard Hinnant53f7d4c2011-06-03 18:40:47 +00003715 basic_string<_CharT, _Traits, _Allocator>& __rhs)
3716 _NOEXCEPT_(_NOEXCEPT_(__lhs.swap(__rhs)))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003717{
3718 __lhs.swap(__rhs);
3719}
3720
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003721#ifndef _LIBCPP_HAS_NO_UNICODE_CHARS
3722
3723typedef basic_string<char16_t> u16string;
3724typedef basic_string<char32_t> u32string;
3725
Howard Hinnant324bb032010-08-22 00:02:43 +00003726#endif // _LIBCPP_HAS_NO_UNICODE_CHARS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003727
Howard Hinnant0f678bd2013-08-12 18:38:34 +00003728_LIBCPP_FUNC_VIS int stoi (const string& __str, size_t* __idx = 0, int __base = 10);
3729_LIBCPP_FUNC_VIS long stol (const string& __str, size_t* __idx = 0, int __base = 10);
3730_LIBCPP_FUNC_VIS unsigned long stoul (const string& __str, size_t* __idx = 0, int __base = 10);
3731_LIBCPP_FUNC_VIS long long stoll (const string& __str, size_t* __idx = 0, int __base = 10);
3732_LIBCPP_FUNC_VIS unsigned long long stoull(const string& __str, size_t* __idx = 0, int __base = 10);
Howard Hinnanta6a062d2010-06-02 18:20:39 +00003733
Howard Hinnant0f678bd2013-08-12 18:38:34 +00003734_LIBCPP_FUNC_VIS float stof (const string& __str, size_t* __idx = 0);
3735_LIBCPP_FUNC_VIS double stod (const string& __str, size_t* __idx = 0);
3736_LIBCPP_FUNC_VIS long double stold(const string& __str, size_t* __idx = 0);
Howard Hinnanta6a062d2010-06-02 18:20:39 +00003737
Howard Hinnant0f678bd2013-08-12 18:38:34 +00003738_LIBCPP_FUNC_VIS string to_string(int __val);
3739_LIBCPP_FUNC_VIS string to_string(unsigned __val);
3740_LIBCPP_FUNC_VIS string to_string(long __val);
3741_LIBCPP_FUNC_VIS string to_string(unsigned long __val);
3742_LIBCPP_FUNC_VIS string to_string(long long __val);
3743_LIBCPP_FUNC_VIS string to_string(unsigned long long __val);
3744_LIBCPP_FUNC_VIS string to_string(float __val);
3745_LIBCPP_FUNC_VIS string to_string(double __val);
3746_LIBCPP_FUNC_VIS string to_string(long double __val);
Howard Hinnanta6a062d2010-06-02 18:20:39 +00003747
Howard Hinnant0f678bd2013-08-12 18:38:34 +00003748_LIBCPP_FUNC_VIS int stoi (const wstring& __str, size_t* __idx = 0, int __base = 10);
3749_LIBCPP_FUNC_VIS long stol (const wstring& __str, size_t* __idx = 0, int __base = 10);
3750_LIBCPP_FUNC_VIS unsigned long stoul (const wstring& __str, size_t* __idx = 0, int __base = 10);
3751_LIBCPP_FUNC_VIS long long stoll (const wstring& __str, size_t* __idx = 0, int __base = 10);
3752_LIBCPP_FUNC_VIS unsigned long long stoull(const wstring& __str, size_t* __idx = 0, int __base = 10);
Howard Hinnanta6a062d2010-06-02 18:20:39 +00003753
Howard Hinnant0f678bd2013-08-12 18:38:34 +00003754_LIBCPP_FUNC_VIS float stof (const wstring& __str, size_t* __idx = 0);
3755_LIBCPP_FUNC_VIS double stod (const wstring& __str, size_t* __idx = 0);
3756_LIBCPP_FUNC_VIS long double stold(const wstring& __str, size_t* __idx = 0);
Howard Hinnanta6a062d2010-06-02 18:20:39 +00003757
Howard Hinnant0f678bd2013-08-12 18:38:34 +00003758_LIBCPP_FUNC_VIS wstring to_wstring(int __val);
3759_LIBCPP_FUNC_VIS wstring to_wstring(unsigned __val);
3760_LIBCPP_FUNC_VIS wstring to_wstring(long __val);
3761_LIBCPP_FUNC_VIS wstring to_wstring(unsigned long __val);
3762_LIBCPP_FUNC_VIS wstring to_wstring(long long __val);
3763_LIBCPP_FUNC_VIS wstring to_wstring(unsigned long long __val);
3764_LIBCPP_FUNC_VIS wstring to_wstring(float __val);
3765_LIBCPP_FUNC_VIS wstring to_wstring(double __val);
3766_LIBCPP_FUNC_VIS wstring to_wstring(long double __val);
Howard Hinnanta6a062d2010-06-02 18:20:39 +00003767
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003768template<class _CharT, class _Traits, class _Allocator>
3769 const typename basic_string<_CharT, _Traits, _Allocator>::size_type
3770 basic_string<_CharT, _Traits, _Allocator>::npos;
3771
3772template<class _CharT, class _Traits, class _Allocator>
Howard Hinnant0f678bd2013-08-12 18:38:34 +00003773struct _LIBCPP_TYPE_VIS_ONLY hash<basic_string<_CharT, _Traits, _Allocator> >
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003774 : public unary_function<basic_string<_CharT, _Traits, _Allocator>, size_t>
3775{
3776 size_t
Howard Hinnanta6119a82011-05-29 19:57:12 +00003777 operator()(const basic_string<_CharT, _Traits, _Allocator>& __val) const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003778};
3779
3780template<class _CharT, class _Traits, class _Allocator>
3781size_t
3782hash<basic_string<_CharT, _Traits, _Allocator> >::operator()(
Howard Hinnanta6119a82011-05-29 19:57:12 +00003783 const basic_string<_CharT, _Traits, _Allocator>& __val) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003784{
Sean Huntaffd9e52011-07-29 23:31:56 +00003785 return __do_string_hash(__val.data(), __val.data() + __val.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003786}
3787
Howard Hinnant464aa5c2011-07-18 15:51:59 +00003788template<class _CharT, class _Traits, class _Allocator>
3789basic_ostream<_CharT, _Traits>&
3790operator<<(basic_ostream<_CharT, _Traits>& __os,
3791 const basic_string<_CharT, _Traits, _Allocator>& __str);
3792
3793template<class _CharT, class _Traits, class _Allocator>
3794basic_istream<_CharT, _Traits>&
3795operator>>(basic_istream<_CharT, _Traits>& __is,
3796 basic_string<_CharT, _Traits, _Allocator>& __str);
3797
3798template<class _CharT, class _Traits, class _Allocator>
3799basic_istream<_CharT, _Traits>&
3800getline(basic_istream<_CharT, _Traits>& __is,
3801 basic_string<_CharT, _Traits, _Allocator>& __str, _CharT __dlm);
3802
3803template<class _CharT, class _Traits, class _Allocator>
3804inline _LIBCPP_INLINE_VISIBILITY
3805basic_istream<_CharT, _Traits>&
3806getline(basic_istream<_CharT, _Traits>& __is,
3807 basic_string<_CharT, _Traits, _Allocator>& __str);
3808
3809#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
3810
3811template<class _CharT, class _Traits, class _Allocator>
3812inline _LIBCPP_INLINE_VISIBILITY
3813basic_istream<_CharT, _Traits>&
3814getline(basic_istream<_CharT, _Traits>&& __is,
3815 basic_string<_CharT, _Traits, _Allocator>& __str, _CharT __dlm);
3816
3817template<class _CharT, class _Traits, class _Allocator>
3818inline _LIBCPP_INLINE_VISIBILITY
3819basic_istream<_CharT, _Traits>&
3820getline(basic_istream<_CharT, _Traits>&& __is,
3821 basic_string<_CharT, _Traits, _Allocator>& __str);
3822
3823#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
3824
Howard Hinnant499cea12013-08-23 17:37:05 +00003825#if _LIBCPP_DEBUG_LEVEL >= 2
3826
3827template<class _CharT, class _Traits, class _Allocator>
3828bool
3829basic_string<_CharT, _Traits, _Allocator>::__dereferenceable(const const_iterator* __i) const
3830{
3831 return this->data() <= _VSTD::__to_raw_pointer(__i->base()) &&
3832 _VSTD::__to_raw_pointer(__i->base()) < this->data() + this->size();
3833}
3834
3835template<class _CharT, class _Traits, class _Allocator>
3836bool
3837basic_string<_CharT, _Traits, _Allocator>::__decrementable(const const_iterator* __i) const
3838{
3839 return this->data() < _VSTD::__to_raw_pointer(__i->base()) &&
3840 _VSTD::__to_raw_pointer(__i->base()) <= this->data() + this->size();
3841}
3842
3843template<class _CharT, class _Traits, class _Allocator>
3844bool
3845basic_string<_CharT, _Traits, _Allocator>::__addable(const const_iterator* __i, ptrdiff_t __n) const
3846{
3847 const value_type* __p = _VSTD::__to_raw_pointer(__i->base()) + __n;
3848 return this->data() <= __p && __p <= this->data() + this->size();
3849}
3850
3851template<class _CharT, class _Traits, class _Allocator>
3852bool
3853basic_string<_CharT, _Traits, _Allocator>::__subscriptable(const const_iterator* __i, ptrdiff_t __n) const
3854{
3855 const value_type* __p = _VSTD::__to_raw_pointer(__i->base()) + __n;
3856 return this->data() <= __p && __p < this->data() + this->size();
3857}
3858
3859#endif // _LIBCPP_DEBUG_LEVEL >= 2
3860
Marshall Clow15234322013-07-23 17:05:24 +00003861#if _LIBCPP_STD_VER > 11
3862// Literal suffixes for basic_string [basic.string.literals]
Marshall Clow8d9dd7a2013-10-05 21:18:32 +00003863inline namespace literals
Marshall Clow15234322013-07-23 17:05:24 +00003864{
3865 inline namespace string_literals
3866 {
Howard Hinnantab61b2c2013-08-07 19:39:48 +00003867 inline _LIBCPP_INLINE_VISIBILITY
3868 basic_string<char> operator "" s( const char *__str, size_t __len )
3869 {
3870 return basic_string<char> (__str, __len);
3871 }
Marshall Clow15234322013-07-23 17:05:24 +00003872
Howard Hinnantab61b2c2013-08-07 19:39:48 +00003873 inline _LIBCPP_INLINE_VISIBILITY
3874 basic_string<wchar_t> operator "" s( const wchar_t *__str, size_t __len )
3875 {
3876 return basic_string<wchar_t> (__str, __len);
3877 }
Marshall Clow15234322013-07-23 17:05:24 +00003878
Howard Hinnantab61b2c2013-08-07 19:39:48 +00003879 inline _LIBCPP_INLINE_VISIBILITY
3880 basic_string<char16_t> operator "" s( const char16_t *__str, size_t __len )
3881 {
3882 return basic_string<char16_t> (__str, __len);
3883 }
Marshall Clow15234322013-07-23 17:05:24 +00003884
Howard Hinnantab61b2c2013-08-07 19:39:48 +00003885 inline _LIBCPP_INLINE_VISIBILITY
3886 basic_string<char32_t> operator "" s( const char32_t *__str, size_t __len )
3887 {
3888 return basic_string<char32_t> (__str, __len);
3889 }
Marshall Clow15234322013-07-23 17:05:24 +00003890 }
3891}
3892#endif
3893
Howard Hinnant0f678bd2013-08-12 18:38:34 +00003894_LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS basic_string<char>)
3895_LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS basic_string<wchar_t>)
Howard Hinnant499cea12013-08-23 17:37:05 +00003896_LIBCPP_EXTERN_TEMPLATE(string operator+<char, char_traits<char>, allocator<char> >(char const*, string const&))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003897
3898_LIBCPP_END_NAMESPACE_STD
3899
3900#endif // _LIBCPP_STRING