00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036 #ifndef _BASIC_STRING_H
00037 #define _BASIC_STRING_H 1
00038
00039 #pragma GCC system_header
00040
00041 #include <ext/atomicity.h>
00042 #include <debug/debug.h>
00043 #include <initializer_list>
00044
00045 _GLIBCXX_BEGIN_NAMESPACE(std)
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104 template<typename _CharT, typename _Traits, typename _Alloc>
00105 class basic_string
00106 {
00107 typedef typename _Alloc::template rebind<_CharT>::other _CharT_alloc_type;
00108
00109
00110 public:
00111 typedef _Traits traits_type;
00112 typedef typename _Traits::char_type value_type;
00113 typedef _Alloc allocator_type;
00114 typedef typename _CharT_alloc_type::size_type size_type;
00115 typedef typename _CharT_alloc_type::difference_type difference_type;
00116 typedef typename _CharT_alloc_type::reference reference;
00117 typedef typename _CharT_alloc_type::const_reference const_reference;
00118 typedef typename _CharT_alloc_type::pointer pointer;
00119 typedef typename _CharT_alloc_type::const_pointer const_pointer;
00120 typedef __gnu_cxx::__normal_iterator<pointer, basic_string> iterator;
00121 typedef __gnu_cxx::__normal_iterator<const_pointer, basic_string>
00122 const_iterator;
00123 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
00124 typedef std::reverse_iterator<iterator> reverse_iterator;
00125
00126 private:
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141 struct _Rep_base
00142 {
00143 size_type _M_length;
00144 size_type _M_capacity;
00145 _Atomic_word _M_refcount;
00146 };
00147
00148 struct _Rep : _Rep_base
00149 {
00150
00151 typedef typename _Alloc::template rebind<char>::other _Raw_bytes_alloc;
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161
00162
00163
00164
00165
00166 static const size_type _S_max_size;
00167 static const _CharT _S_terminal;
00168
00169
00170
00171 static size_type _S_empty_rep_storage[];
00172
00173 static _Rep&
00174 _S_empty_rep()
00175 {
00176
00177
00178
00179 void* __p = reinterpret_cast<void*>(&_S_empty_rep_storage);
00180 return *reinterpret_cast<_Rep*>(__p);
00181 }
00182
00183 bool
00184 _M_is_leaked() const
00185 { return this->_M_refcount < 0; }
00186
00187 bool
00188 _M_is_shared() const
00189 { return this->_M_refcount > 0; }
00190
00191 void
00192 _M_set_leaked()
00193 { this->_M_refcount = -1; }
00194
00195 void
00196 _M_set_sharable()
00197 { this->_M_refcount = 0; }
00198
00199 void
00200 _M_set_length_and_sharable(size_type __n)
00201 {
00202 #ifndef _GLIBCXX_FULLY_DYNAMIC_STRING
00203 if (__builtin_expect(this != &_S_empty_rep(), false))
00204 #endif
00205 {
00206 this->_M_set_sharable();
00207 this->_M_length = __n;
00208 traits_type::assign(this->_M_refdata()[__n], _S_terminal);
00209
00210
00211 }
00212 }
00213
00214 _CharT*
00215 _M_refdata() throw()
00216 { return reinterpret_cast<_CharT*>(this + 1); }
00217
00218 _CharT*
00219 _M_grab(const _Alloc& __alloc1, const _Alloc& __alloc2)
00220 {
00221 return (!_M_is_leaked() && __alloc1 == __alloc2)
00222 ? _M_refcopy() : _M_clone(__alloc1);
00223 }
00224
00225
00226 static _Rep*
00227 _S_create(size_type, size_type, const _Alloc&);
00228
00229 void
00230 _M_dispose(const _Alloc& __a)
00231 {
00232 #ifndef _GLIBCXX_FULLY_DYNAMIC_STRING
00233 if (__builtin_expect(this != &_S_empty_rep(), false))
00234 #endif
00235 if (__gnu_cxx::__exchange_and_add_dispatch(&this->_M_refcount,
00236 -1) <= 0)
00237 _M_destroy(__a);
00238 }
00239
00240 void
00241 _M_destroy(const _Alloc&) throw();
00242
00243 _CharT*
00244 _M_refcopy() throw()
00245 {
00246 #ifndef _GLIBCXX_FULLY_DYNAMIC_STRING
00247 if (__builtin_expect(this != &_S_empty_rep(), false))
00248 #endif
00249 __gnu_cxx::__atomic_add_dispatch(&this->_M_refcount, 1);
00250 return _M_refdata();
00251 }
00252
00253 _CharT*
00254 _M_clone(const _Alloc&, size_type __res = 0);
00255 };
00256
00257
00258 struct _Alloc_hider : _Alloc
00259 {
00260 _Alloc_hider(_CharT* __dat, const _Alloc& __a)
00261 : _Alloc(__a), _M_p(__dat) { }
00262
00263 _CharT* _M_p;
00264 };
00265
00266 public:
00267
00268
00269
00270
00271 static const size_type npos = static_cast<size_type>(-1);
00272
00273 private:
00274
00275 mutable _Alloc_hider _M_dataplus;
00276
00277 _CharT*
00278 _M_data() const
00279 { return _M_dataplus._M_p; }
00280
00281 _CharT*
00282 _M_data(_CharT* __p)
00283 { return (_M_dataplus._M_p = __p); }
00284
00285 _Rep*
00286 _M_rep() const
00287 { return &((reinterpret_cast<_Rep*> (_M_data()))[-1]); }
00288
00289
00290
00291 iterator
00292 _M_ibegin() const
00293 { return iterator(_M_data()); }
00294
00295 iterator
00296 _M_iend() const
00297 { return iterator(_M_data() + this->size()); }
00298
00299 void
00300 _M_leak()
00301 {
00302 if (!_M_rep()->_M_is_leaked())
00303 _M_leak_hard();
00304 }
00305
00306 size_type
00307 _M_check(size_type __pos, const char* __s) const
00308 {
00309 if (__pos > this->size())
00310 __throw_out_of_range(__N(__s));
00311 return __pos;
00312 }
00313
00314 void
00315 _M_check_length(size_type __n1, size_type __n2, const char* __s) const
00316 {
00317 if (this->max_size() - (this->size() - __n1) < __n2)
00318 __throw_length_error(__N(__s));
00319 }
00320
00321
00322 size_type
00323 _M_limit(size_type __pos, size_type __off) const
00324 {
00325 const bool __testoff = __off < this->size() - __pos;
00326 return __testoff ? __off : this->size() - __pos;
00327 }
00328
00329
00330 bool
00331 _M_disjunct(const _CharT* __s) const
00332 {
00333 return (less<const _CharT*>()(__s, _M_data())
00334 || less<const _CharT*>()(_M_data() + this->size(), __s));
00335 }
00336
00337
00338
00339 static void
00340 _M_copy(_CharT* __d, const _CharT* __s, size_type __n)
00341 {
00342 if (__n == 1)
00343 traits_type::assign(*__d, *__s);
00344 else
00345 traits_type::copy(__d, __s, __n);
00346 }
00347
00348 static void
00349 _M_move(_CharT* __d, const _CharT* __s, size_type __n)
00350 {
00351 if (__n == 1)
00352 traits_type::assign(*__d, *__s);
00353 else
00354 traits_type::move(__d, __s, __n);
00355 }
00356
00357 static void
00358 _M_assign(_CharT* __d, size_type __n, _CharT __c)
00359 {
00360 if (__n == 1)
00361 traits_type::assign(*__d, __c);
00362 else
00363 traits_type::assign(__d, __n, __c);
00364 }
00365
00366
00367
00368 template<class _Iterator>
00369 static void
00370 _S_copy_chars(_CharT* __p, _Iterator __k1, _Iterator __k2)
00371 {
00372 for (; __k1 != __k2; ++__k1, ++__p)
00373 traits_type::assign(*__p, *__k1);
00374 }
00375
00376 static void
00377 _S_copy_chars(_CharT* __p, iterator __k1, iterator __k2)
00378 { _S_copy_chars(__p, __k1.base(), __k2.base()); }
00379
00380 static void
00381 _S_copy_chars(_CharT* __p, const_iterator __k1, const_iterator __k2)
00382 { _S_copy_chars(__p, __k1.base(), __k2.base()); }
00383
00384 static void
00385 _S_copy_chars(_CharT* __p, _CharT* __k1, _CharT* __k2)
00386 { _M_copy(__p, __k1, __k2 - __k1); }
00387
00388 static void
00389 _S_copy_chars(_CharT* __p, const _CharT* __k1, const _CharT* __k2)
00390 { _M_copy(__p, __k1, __k2 - __k1); }
00391
00392 static int
00393 _S_compare(size_type __n1, size_type __n2)
00394 {
00395 const difference_type __d = difference_type(__n1 - __n2);
00396
00397 if (__d > __gnu_cxx::__numeric_traits<int>::__max)
00398 return __gnu_cxx::__numeric_traits<int>::__max;
00399 else if (__d < __gnu_cxx::__numeric_traits<int>::__min)
00400 return __gnu_cxx::__numeric_traits<int>::__min;
00401 else
00402 return int(__d);
00403 }
00404
00405 void
00406 _M_mutate(size_type __pos, size_type __len1, size_type __len2);
00407
00408 void
00409 _M_leak_hard();
00410
00411 static _Rep&
00412 _S_empty_rep()
00413 { return _Rep::_S_empty_rep(); }
00414
00415 public:
00416
00417
00418
00419
00420
00421
00422
00423 basic_string()
00424 #ifndef _GLIBCXX_FULLY_DYNAMIC_STRING
00425 : _M_dataplus(_S_empty_rep()._M_refdata(), _Alloc()) { }
00426 #else
00427 : _M_dataplus(_S_construct(size_type(), _CharT(), _Alloc()), _Alloc()){ }
00428 #endif
00429
00430
00431
00432
00433 explicit
00434 basic_string(const _Alloc& __a);
00435
00436
00437
00438
00439
00440
00441 basic_string(const basic_string& __str);
00442
00443
00444
00445
00446
00447
00448 basic_string(const basic_string& __str, size_type __pos,
00449 size_type __n = npos);
00450
00451
00452
00453
00454
00455
00456
00457 basic_string(const basic_string& __str, size_type __pos,
00458 size_type __n, const _Alloc& __a);
00459
00460
00461
00462
00463
00464
00465
00466
00467
00468
00469 basic_string(const _CharT* __s, size_type __n,
00470 const _Alloc& __a = _Alloc());
00471
00472
00473
00474
00475
00476 basic_string(const _CharT* __s, const _Alloc& __a = _Alloc());
00477
00478
00479
00480
00481
00482
00483 basic_string(size_type __n, _CharT __c, const _Alloc& __a = _Alloc());
00484
00485 #ifdef __GXX_EXPERIMENTAL_CXX0X__
00486
00487
00488
00489
00490
00491
00492
00493 basic_string(basic_string&& __str)
00494 : _M_dataplus(__str._M_dataplus)
00495 {
00496 #ifndef _GLIBCXX_FULLY_DYNAMIC_STRING
00497 __str._M_data(_S_empty_rep()._M_refdata());
00498 #else
00499 __str._M_data(_S_construct(size_type(), _CharT(), get_allocator()));
00500 #endif
00501 }
00502
00503
00504
00505
00506
00507
00508 basic_string(initializer_list<_CharT> __l, const _Alloc& __a = _Alloc());
00509 #endif // __GXX_EXPERIMENTAL_CXX0X__
00510
00511
00512
00513
00514
00515
00516
00517 template<class _InputIterator>
00518 basic_string(_InputIterator __beg, _InputIterator __end,
00519 const _Alloc& __a = _Alloc());
00520
00521
00522
00523
00524 ~basic_string()
00525 { _M_rep()->_M_dispose(this->get_allocator()); }
00526
00527
00528
00529
00530
00531 basic_string&
00532 operator=(const basic_string& __str)
00533 { return this->assign(__str); }
00534
00535
00536
00537
00538
00539 basic_string&
00540 operator=(const _CharT* __s)
00541 { return this->assign(__s); }
00542
00543
00544
00545
00546
00547
00548
00549
00550 basic_string&
00551 operator=(_CharT __c)
00552 {
00553 this->assign(1, __c);
00554 return *this;
00555 }
00556
00557 #ifdef __GXX_EXPERIMENTAL_CXX0X__
00558
00559
00560
00561
00562
00563
00564
00565 basic_string&
00566 operator=(basic_string&& __str)
00567 {
00568
00569 this->swap(__str);
00570 return *this;
00571 }
00572
00573
00574
00575
00576
00577 basic_string&
00578 operator=(initializer_list<_CharT> __l)
00579 {
00580 this->assign(__l.begin(), __l.size());
00581 return *this;
00582 }
00583 #endif // __GXX_EXPERIMENTAL_CXX0X__
00584
00585
00586
00587
00588
00589
00590 iterator
00591 begin()
00592 {
00593 _M_leak();
00594 return iterator(_M_data());
00595 }
00596
00597
00598
00599
00600
00601 const_iterator
00602 begin() const
00603 { return const_iterator(_M_data()); }
00604
00605
00606
00607
00608
00609 iterator
00610 end()
00611 {
00612 _M_leak();
00613 return iterator(_M_data() + this->size());
00614 }
00615
00616
00617
00618
00619
00620 const_iterator
00621 end() const
00622 { return const_iterator(_M_data() + this->size()); }
00623
00624
00625
00626
00627
00628
00629 reverse_iterator
00630 rbegin()
00631 { return reverse_iterator(this->end()); }
00632
00633
00634
00635
00636
00637
00638 const_reverse_iterator
00639 rbegin() const
00640 { return const_reverse_iterator(this->end()); }
00641
00642
00643
00644
00645
00646
00647 reverse_iterator
00648 rend()
00649 { return reverse_iterator(this->begin()); }
00650
00651
00652
00653
00654
00655
00656 const_reverse_iterator
00657 rend() const
00658 { return const_reverse_iterator(this->begin()); }
00659
00660 #ifdef __GXX_EXPERIMENTAL_CXX0X__
00661
00662
00663
00664
00665 const_iterator
00666 cbegin() const
00667 { return const_iterator(this->_M_data()); }
00668
00669
00670
00671
00672
00673 const_iterator
00674 cend() const
00675 { return const_iterator(this->_M_data() + this->size()); }
00676
00677
00678
00679
00680
00681
00682 const_reverse_iterator
00683 crbegin() const
00684 { return const_reverse_iterator(this->end()); }
00685
00686
00687
00688
00689
00690
00691 const_reverse_iterator
00692 crend() const
00693 { return const_reverse_iterator(this->begin()); }
00694 #endif
00695
00696 public:
00697
00698
00699
00700 size_type
00701 size() const
00702 { return _M_rep()->_M_length; }
00703
00704
00705
00706 size_type
00707 length() const
00708 { return _M_rep()->_M_length; }
00709
00710
00711 size_type
00712 max_size() const
00713 { return _Rep::_S_max_size; }
00714
00715
00716
00717
00718
00719
00720
00721
00722
00723
00724
00725 void
00726 resize(size_type __n, _CharT __c);
00727
00728
00729
00730
00731
00732
00733
00734
00735
00736
00737
00738 void
00739 resize(size_type __n)
00740 { this->resize(__n, _CharT()); }
00741
00742 #ifdef __GXX_EXPERIMENTAL_CXX0X__
00743
00744 void
00745 shrink_to_fit()
00746 {
00747 __try
00748 { reserve(0); }
00749 __catch(...)
00750 { }
00751 }
00752 #endif
00753
00754
00755
00756
00757
00758 size_type
00759 capacity() const
00760 { return _M_rep()->_M_capacity; }
00761
00762
00763
00764
00765
00766
00767
00768
00769
00770
00771
00772
00773
00774
00775
00776
00777
00778
00779 void
00780 reserve(size_type __res_arg = 0);
00781
00782
00783
00784
00785 void
00786 clear()
00787 { _M_mutate(0, this->size(), 0); }
00788
00789
00790
00791
00792
00793 bool
00794 empty() const
00795 { return this->size() == 0; }
00796
00797
00798
00799
00800
00801
00802
00803
00804
00805
00806
00807
00808 const_reference
00809 operator[] (size_type __pos) const
00810 {
00811 _GLIBCXX_DEBUG_ASSERT(__pos <= size());
00812 return _M_data()[__pos];
00813 }
00814
00815
00816
00817
00818
00819
00820
00821
00822
00823
00824
00825 reference
00826 operator[](size_type __pos)
00827 {
00828
00829 _GLIBCXX_DEBUG_ASSERT(__pos <= size());
00830
00831 _GLIBCXX_DEBUG_PEDASSERT(__pos < size());
00832 _M_leak();
00833 return _M_data()[__pos];
00834 }
00835
00836
00837
00838
00839
00840
00841
00842
00843
00844
00845
00846 const_reference
00847 at(size_type __n) const
00848 {
00849 if (__n >= this->size())
00850 __throw_out_of_range(__N("basic_string::at"));
00851 return _M_data()[__n];
00852 }
00853
00854
00855
00856
00857
00858
00859
00860
00861
00862
00863
00864
00865 reference
00866 at(size_type __n)
00867 {
00868 if (__n >= size())
00869 __throw_out_of_range(__N("basic_string::at"));
00870 _M_leak();
00871 return _M_data()[__n];
00872 }
00873
00874
00875
00876
00877
00878
00879
00880 basic_string&
00881 operator+=(const basic_string& __str)
00882 { return this->append(__str); }
00883
00884
00885
00886
00887
00888
00889 basic_string&
00890 operator+=(const _CharT* __s)
00891 { return this->append(__s); }
00892
00893
00894
00895
00896
00897
00898 basic_string&
00899 operator+=(_CharT __c)
00900 {
00901 this->push_back(__c);
00902 return *this;
00903 }
00904
00905 #ifdef __GXX_EXPERIMENTAL_CXX0X__
00906
00907
00908
00909
00910
00911 basic_string&
00912 operator+=(initializer_list<_CharT> __l)
00913 { return this->append(__l.begin(), __l.size()); }
00914 #endif // __GXX_EXPERIMENTAL_CXX0X__
00915
00916
00917
00918
00919
00920
00921 basic_string&
00922 append(const basic_string& __str);
00923
00924
00925
00926
00927
00928
00929
00930
00931
00932
00933
00934
00935
00936 basic_string&
00937 append(const basic_string& __str, size_type __pos, size_type __n);
00938
00939
00940
00941
00942
00943
00944
00945 basic_string&
00946 append(const _CharT* __s, size_type __n);
00947
00948
00949
00950
00951
00952
00953 basic_string&
00954 append(const _CharT* __s)
00955 {
00956 __glibcxx_requires_string(__s);
00957 return this->append(__s, traits_type::length(__s));
00958 }
00959
00960
00961
00962
00963
00964
00965
00966
00967
00968 basic_string&
00969 append(size_type __n, _CharT __c);
00970
00971 #ifdef __GXX_EXPERIMENTAL_CXX0X__
00972
00973
00974
00975
00976
00977 basic_string&
00978 append(initializer_list<_CharT> __l)
00979 { return this->append(__l.begin(), __l.size()); }
00980 #endif // __GXX_EXPERIMENTAL_CXX0X__
00981
00982
00983
00984
00985
00986
00987
00988
00989
00990 template<class _InputIterator>
00991 basic_string&
00992 append(_InputIterator __first, _InputIterator __last)
00993 { return this->replace(_M_iend(), _M_iend(), __first, __last); }
00994
00995
00996
00997
00998
00999 void
01000 push_back(_CharT __c)
01001 {
01002 const size_type __len = 1 + this->size();
01003 if (__len > this->capacity() || _M_rep()->_M_is_shared())
01004 this->reserve(__len);
01005 traits_type::assign(_M_data()[this->size()], __c);
01006 _M_rep()->_M_set_length_and_sharable(__len);
01007 }
01008
01009
01010
01011
01012
01013
01014 basic_string&
01015 assign(const basic_string& __str);
01016
01017 #ifdef __GXX_EXPERIMENTAL_CXX0X__
01018
01019
01020
01021
01022
01023
01024
01025
01026 basic_string&
01027 assign(basic_string&& __str)
01028 {
01029 this->swap(__str);
01030 return *this;
01031 }
01032 #endif // __GXX_EXPERIMENTAL_CXX0X__
01033
01034
01035
01036
01037
01038
01039
01040
01041
01042
01043
01044
01045
01046 basic_string&
01047 assign(const basic_string& __str, size_type __pos, size_type __n)
01048 { return this->assign(__str._M_data()
01049 + __str._M_check(__pos, "basic_string::assign"),
01050 __str._M_limit(__pos, __n)); }
01051
01052
01053
01054
01055
01056
01057
01058
01059
01060
01061
01062 basic_string&
01063 assign(const _CharT* __s, size_type __n);
01064
01065
01066
01067
01068
01069
01070
01071
01072
01073
01074 basic_string&
01075 assign(const _CharT* __s)
01076 {
01077 __glibcxx_requires_string(__s);
01078 return this->assign(__s, traits_type::length(__s));
01079 }
01080
01081
01082
01083
01084
01085
01086
01087
01088
01089
01090 basic_string&
01091 assign(size_type __n, _CharT __c)
01092 { return _M_replace_aux(size_type(0), this->size(), __n, __c); }
01093
01094
01095
01096
01097
01098
01099
01100
01101
01102 template<class _InputIterator>
01103 basic_string&
01104 assign(_InputIterator __first, _InputIterator __last)
01105 { return this->replace(_M_ibegin(), _M_iend(), __first, __last); }
01106
01107 #ifdef __GXX_EXPERIMENTAL_CXX0X__
01108
01109
01110
01111
01112
01113 basic_string&
01114 assign(initializer_list<_CharT> __l)
01115 { return this->assign(__l.begin(), __l.size()); }
01116 #endif // __GXX_EXPERIMENTAL_CXX0X__
01117
01118
01119
01120
01121
01122
01123
01124
01125
01126
01127
01128
01129
01130 void
01131 insert(iterator __p, size_type __n, _CharT __c)
01132 { this->replace(__p, __p, __n, __c); }
01133
01134
01135
01136
01137
01138
01139
01140
01141
01142
01143
01144
01145 template<class _InputIterator>
01146 void
01147 insert(iterator __p, _InputIterator __beg, _InputIterator __end)
01148 { this->replace(__p, __p, __beg, __end); }
01149
01150 #ifdef __GXX_EXPERIMENTAL_CXX0X__
01151
01152
01153
01154
01155
01156
01157 void
01158 insert(iterator __p, initializer_list<_CharT> __l)
01159 {
01160 _GLIBCXX_DEBUG_PEDASSERT(__p >= _M_ibegin() && __p <= _M_iend());
01161 this->insert(__p - _M_ibegin(), __l.begin(), __l.size());
01162 }
01163 #endif // __GXX_EXPERIMENTAL_CXX0X__
01164
01165
01166
01167
01168
01169
01170
01171
01172
01173
01174
01175
01176 basic_string&
01177 insert(size_type __pos1, const basic_string& __str)
01178 { return this->insert(__pos1, __str, size_type(0), __str.size()); }
01179
01180
01181
01182
01183
01184
01185
01186
01187
01188
01189
01190
01191
01192
01193
01194
01195
01196
01197
01198 basic_string&
01199 insert(size_type __pos1, const basic_string& __str,
01200 size_type __pos2, size_type __n)
01201 { return this->insert(__pos1, __str._M_data()
01202 + __str._M_check(__pos2, "basic_string::insert"),
01203 __str._M_limit(__pos2, __n)); }
01204
01205
01206
01207
01208
01209
01210
01211
01212
01213
01214
01215
01216
01217
01218
01219
01220
01221 basic_string&
01222 insert(size_type __pos, const _CharT* __s, size_type __n);
01223
01224
01225
01226
01227
01228
01229
01230
01231
01232
01233
01234
01235
01236
01237
01238
01239 basic_string&
01240 insert(size_type __pos, const _CharT* __s)
01241 {
01242 __glibcxx_requires_string(__s);
01243 return this->insert(__pos, __s, traits_type::length(__s));
01244 }
01245
01246
01247
01248
01249
01250
01251
01252
01253
01254
01255
01256
01257
01258
01259
01260
01261
01262 basic_string&
01263 insert(size_type __pos, size_type __n, _CharT __c)
01264 { return _M_replace_aux(_M_check(__pos, "basic_string::insert"),
01265 size_type(0), __n, __c); }
01266
01267
01268
01269
01270
01271
01272
01273
01274
01275
01276
01277
01278
01279 iterator
01280 insert(iterator __p, _CharT __c)
01281 {
01282 _GLIBCXX_DEBUG_PEDASSERT(__p >= _M_ibegin() && __p <= _M_iend());
01283 const size_type __pos = __p - _M_ibegin();
01284 _M_replace_aux(__pos, size_type(0), size_type(1), __c);
01285 _M_rep()->_M_set_leaked();
01286 return iterator(_M_data() + __pos);
01287 }
01288
01289
01290
01291
01292
01293
01294
01295
01296
01297
01298
01299
01300
01301
01302
01303 basic_string&
01304 erase(size_type __pos = 0, size_type __n = npos)
01305 {
01306 _M_mutate(_M_check(__pos, "basic_string::erase"),
01307 _M_limit(__pos, __n), size_type(0));
01308 return *this;
01309 }
01310
01311
01312
01313
01314
01315
01316
01317
01318
01319 iterator
01320 erase(iterator __position)
01321 {
01322 _GLIBCXX_DEBUG_PEDASSERT(__position >= _M_ibegin()
01323 && __position < _M_iend());
01324 const size_type __pos = __position - _M_ibegin();
01325 _M_mutate(__pos, size_type(1), size_type(0));
01326 _M_rep()->_M_set_leaked();
01327 return iterator(_M_data() + __pos);
01328 }
01329
01330
01331
01332
01333
01334
01335
01336
01337
01338
01339 iterator
01340 erase(iterator __first, iterator __last);
01341
01342
01343
01344
01345
01346
01347
01348
01349
01350
01351
01352
01353
01354
01355
01356
01357
01358 basic_string&
01359 replace(size_type __pos, size_type __n, const basic_string& __str)
01360 { return this->replace(__pos, __n, __str._M_data(), __str.size()); }
01361
01362
01363
01364
01365
01366
01367
01368
01369
01370
01371
01372
01373
01374
01375
01376
01377
01378
01379
01380 basic_string&
01381 replace(size_type __pos1, size_type __n1, const basic_string& __str,
01382 size_type __pos2, size_type __n2)
01383 { return this->replace(__pos1, __n1, __str._M_data()
01384 + __str._M_check(__pos2, "basic_string::replace"),
01385 __str._M_limit(__pos2, __n2)); }
01386
01387
01388
01389
01390
01391
01392
01393
01394
01395
01396
01397
01398
01399
01400
01401
01402
01403
01404 basic_string&
01405 replace(size_type __pos, size_type __n1, const _CharT* __s,
01406 size_type __n2);
01407
01408
01409
01410
01411
01412
01413
01414
01415
01416
01417
01418
01419
01420
01421
01422
01423 basic_string&
01424 replace(size_type __pos, size_type __n1, const _CharT* __s)
01425 {
01426 __glibcxx_requires_string(__s);
01427 return this->replace(__pos, __n1, __s, traits_type::length(__s));
01428 }
01429
01430
01431
01432
01433
01434
01435
01436
01437
01438
01439
01440
01441
01442
01443
01444
01445
01446 basic_string&
01447 replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c)
01448 { return _M_replace_aux(_M_check(__pos, "basic_string::replace"),
01449 _M_limit(__pos, __n1), __n2, __c); }
01450
01451
01452
01453
01454
01455
01456
01457
01458
01459
01460
01461
01462
01463
01464 basic_string&
01465 replace(iterator __i1, iterator __i2, const basic_string& __str)
01466 { return this->replace(__i1, __i2, __str._M_data(), __str.size()); }
01467
01468
01469
01470
01471
01472
01473
01474
01475
01476
01477
01478
01479
01480
01481
01482 basic_string&
01483 replace(iterator __i1, iterator __i2, const _CharT* __s, size_type __n)
01484 {
01485 _GLIBCXX_DEBUG_PEDASSERT(_M_ibegin() <= __i1 && __i1 <= __i2
01486 && __i2 <= _M_iend());
01487 return this->replace(__i1 - _M_ibegin(), __i2 - __i1, __s, __n);
01488 }
01489
01490
01491
01492
01493
01494
01495
01496
01497
01498
01499
01500
01501
01502
01503 basic_string&
01504 replace(iterator __i1, iterator __i2, const _CharT* __s)
01505 {
01506 __glibcxx_requires_string(__s);
01507 return this->replace(__i1, __i2, __s, traits_type::length(__s));
01508 }
01509
01510
01511
01512
01513
01514
01515
01516
01517
01518
01519
01520
01521
01522
01523
01524 basic_string&
01525 replace(iterator __i1, iterator __i2, size_type __n, _CharT __c)
01526 {
01527 _GLIBCXX_DEBUG_PEDASSERT(_M_ibegin() <= __i1 && __i1 <= __i2
01528 && __i2 <= _M_iend());
01529 return _M_replace_aux(__i1 - _M_ibegin(), __i2 - __i1, __n, __c);
01530 }
01531
01532
01533
01534
01535
01536
01537
01538
01539
01540
01541
01542
01543
01544
01545
01546 template<class _InputIterator>
01547 basic_string&
01548 replace(iterator __i1, iterator __i2,
01549 _InputIterator __k1, _InputIterator __k2)
01550 {
01551 _GLIBCXX_DEBUG_PEDASSERT(_M_ibegin() <= __i1 && __i1 <= __i2
01552 && __i2 <= _M_iend());
01553 __glibcxx_requires_valid_range(__k1, __k2);
01554 typedef typename std::__is_integer<_InputIterator>::__type _Integral;
01555 return _M_replace_dispatch(__i1, __i2, __k1, __k2, _Integral());
01556 }
01557
01558
01559
01560 basic_string&
01561 replace(iterator __i1, iterator __i2, _CharT* __k1, _CharT* __k2)
01562 {
01563 _GLIBCXX_DEBUG_PEDASSERT(_M_ibegin() <= __i1 && __i1 <= __i2
01564 && __i2 <= _M_iend());
01565 __glibcxx_requires_valid_range(__k1, __k2);
01566 return this->replace(__i1 - _M_ibegin(), __i2 - __i1,
01567 __k1, __k2 - __k1);
01568 }
01569
01570 basic_string&
01571 replace(iterator __i1, iterator __i2,
01572 const _CharT* __k1, const _CharT* __k2)
01573 {
01574 _GLIBCXX_DEBUG_PEDASSERT(_M_ibegin() <= __i1 && __i1 <= __i2
01575 && __i2 <= _M_iend());
01576 __glibcxx_requires_valid_range(__k1, __k2);
01577 return this->replace(__i1 - _M_ibegin(), __i2 - __i1,
01578 __k1, __k2 - __k1);
01579 }
01580
01581 basic_string&
01582 replace(iterator __i1, iterator __i2, iterator __k1, iterator __k2)
01583 {
01584 _GLIBCXX_DEBUG_PEDASSERT(_M_ibegin() <= __i1 && __i1 <= __i2
01585 && __i2 <= _M_iend());
01586 __glibcxx_requires_valid_range(__k1, __k2);
01587 return this->replace(__i1 - _M_ibegin(), __i2 - __i1,
01588 __k1.base(), __k2 - __k1);
01589 }
01590
01591 basic_string&
01592 replace(iterator __i1, iterator __i2,
01593 const_iterator __k1, const_iterator __k2)
01594 {
01595 _GLIBCXX_DEBUG_PEDASSERT(_M_ibegin() <= __i1 && __i1 <= __i2
01596 && __i2 <= _M_iend());
01597 __glibcxx_requires_valid_range(__k1, __k2);
01598 return this->replace(__i1 - _M_ibegin(), __i2 - __i1,
01599 __k1.base(), __k2 - __k1);
01600 }
01601
01602 #ifdef __GXX_EXPERIMENTAL_CXX0X__
01603
01604
01605
01606
01607
01608
01609
01610
01611
01612
01613
01614
01615
01616 basic_string& replace(iterator __i1, iterator __i2,
01617 initializer_list<_CharT> __l)
01618 { return this->replace(__i1, __i2, __l.begin(), __l.end()); }
01619 #endif // __GXX_EXPERIMENTAL_CXX0X__
01620
01621 private:
01622 template<class _Integer>
01623 basic_string&
01624 _M_replace_dispatch(iterator __i1, iterator __i2, _Integer __n,
01625 _Integer __val, __true_type)
01626 { return _M_replace_aux(__i1 - _M_ibegin(), __i2 - __i1, __n, __val); }
01627
01628 template<class _InputIterator>
01629 basic_string&
01630 _M_replace_dispatch(iterator __i1, iterator __i2, _InputIterator __k1,
01631 _InputIterator __k2, __false_type);
01632
01633 basic_string&
01634 _M_replace_aux(size_type __pos1, size_type __n1, size_type __n2,
01635 _CharT __c);
01636
01637 basic_string&
01638 _M_replace_safe(size_type __pos1, size_type __n1, const _CharT* __s,
01639 size_type __n2);
01640
01641
01642
01643 template<class _InIterator>
01644 static _CharT*
01645 _S_construct_aux(_InIterator __beg, _InIterator __end,
01646 const _Alloc& __a, __false_type)
01647 {
01648 typedef typename iterator_traits<_InIterator>::iterator_category _Tag;
01649 return _S_construct(__beg, __end, __a, _Tag());
01650 }
01651
01652
01653
01654 template<class _Integer>
01655 static _CharT*
01656 _S_construct_aux(_Integer __beg, _Integer __end,
01657 const _Alloc& __a, __true_type)
01658 { return _S_construct_aux_2(static_cast<size_type>(__beg),
01659 __end, __a); }
01660
01661 static _CharT*
01662 _S_construct_aux_2(size_type __req, _CharT __c, const _Alloc& __a)
01663 { return _S_construct(__req, __c, __a); }
01664
01665 template<class _InIterator>
01666 static _CharT*
01667 _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a)
01668 {
01669 typedef typename std::__is_integer<_InIterator>::__type _Integral;
01670 return _S_construct_aux(__beg, __end, __a, _Integral());
01671 }
01672
01673
01674 template<class _InIterator>
01675 static _CharT*
01676 _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a,
01677 input_iterator_tag);
01678
01679
01680
01681 template<class _FwdIterator>
01682 static _CharT*
01683 _S_construct(_FwdIterator __beg, _FwdIterator __end, const _Alloc& __a,
01684 forward_iterator_tag);
01685
01686 static _CharT*
01687 _S_construct(size_type __req, _CharT __c, const _Alloc& __a);
01688
01689 public:
01690
01691
01692
01693
01694
01695
01696
01697
01698
01699
01700
01701
01702 size_type
01703 copy(_CharT* __s, size_type __n, size_type __pos = 0) const;
01704
01705
01706
01707
01708
01709
01710
01711
01712 void
01713 swap(basic_string& __s);
01714
01715
01716
01717
01718
01719
01720
01721
01722 const _CharT*
01723 c_str() const
01724 { return _M_data(); }
01725
01726
01727
01728
01729
01730
01731
01732 const _CharT*
01733 data() const
01734 { return _M_data(); }
01735
01736
01737
01738
01739 allocator_type
01740 get_allocator() const
01741 { return _M_dataplus; }
01742
01743
01744
01745
01746
01747
01748
01749
01750
01751
01752
01753
01754 size_type
01755 find(const _CharT* __s, size_type __pos, size_type __n) const;
01756
01757
01758
01759
01760
01761
01762
01763
01764
01765
01766
01767 size_type
01768 find(const basic_string& __str, size_type __pos = 0) const
01769 { return this->find(__str.data(), __pos, __str.size()); }
01770
01771
01772
01773
01774
01775
01776
01777
01778
01779
01780
01781 size_type
01782 find(const _CharT* __s, size_type __pos = 0) const
01783 {
01784 __glibcxx_requires_string(__s);
01785 return this->find(__s, __pos, traits_type::length(__s));
01786 }
01787
01788
01789
01790
01791
01792
01793
01794
01795
01796
01797
01798 size_type
01799 find(_CharT __c, size_type __pos = 0) const;
01800
01801
01802
01803
01804
01805
01806
01807
01808
01809
01810
01811 size_type
01812 rfind(const basic_string& __str, size_type __pos = npos) const
01813 { return this->rfind(__str.data(), __pos, __str.size()); }
01814
01815
01816
01817
01818
01819
01820
01821
01822
01823
01824
01825
01826 size_type
01827 rfind(const _CharT* __s, size_type __pos, size_type __n) const;
01828
01829
01830
01831
01832
01833
01834
01835
01836
01837
01838
01839 size_type
01840 rfind(const _CharT* __s, size_type __pos = npos) const
01841 {
01842 __glibcxx_requires_string(__s);
01843 return this->rfind(__s, __pos, traits_type::length(__s));
01844 }
01845
01846
01847
01848
01849
01850
01851
01852
01853
01854
01855
01856 size_type
01857 rfind(_CharT __c, size_type __pos = npos) const;
01858
01859
01860
01861
01862
01863
01864
01865
01866
01867
01868
01869 size_type
01870 find_first_of(const basic_string& __str, size_type __pos = 0) const
01871 { return this->find_first_of(__str.data(), __pos, __str.size()); }
01872
01873
01874
01875
01876
01877
01878
01879
01880
01881
01882
01883
01884 size_type
01885 find_first_of(const _CharT* __s, size_type __pos, size_type __n) const;
01886
01887
01888
01889
01890
01891
01892
01893
01894
01895
01896
01897 size_type
01898 find_first_of(const _CharT* __s, size_type __pos = 0) const
01899 {
01900 __glibcxx_requires_string(__s);
01901 return this->find_first_of(__s, __pos, traits_type::length(__s));
01902 }
01903
01904
01905
01906
01907
01908
01909
01910
01911
01912
01913
01914
01915
01916 size_type
01917 find_first_of(_CharT __c, size_type __pos = 0) const
01918 { return this->find(__c, __pos); }
01919
01920
01921
01922
01923
01924
01925
01926
01927
01928
01929
01930 size_type
01931 find_last_of(const basic_string& __str, size_type __pos = npos) const
01932 { return this->find_last_of(__str.data(), __pos, __str.size()); }
01933
01934
01935
01936
01937
01938
01939
01940
01941
01942
01943
01944
01945 size_type
01946 find_last_of(const _CharT* __s, size_type __pos, size_type __n) const;
01947
01948
01949
01950
01951
01952
01953
01954
01955
01956
01957
01958 size_type
01959 find_last_of(const _CharT* __s, size_type __pos = npos) const
01960 {
01961 __glibcxx_requires_string(__s);
01962 return this->find_last_of(__s, __pos, traits_type::length(__s));
01963 }
01964
01965
01966
01967
01968
01969
01970
01971
01972
01973
01974
01975
01976
01977 size_type
01978 find_last_of(_CharT __c, size_type __pos = npos) const
01979 { return this->rfind(__c, __pos); }
01980
01981
01982
01983
01984
01985
01986
01987
01988
01989
01990
01991 size_type
01992 find_first_not_of(const basic_string& __str, size_type __pos = 0) const
01993 { return this->find_first_not_of(__str.data(), __pos, __str.size()); }
01994
01995
01996
01997
01998
01999
02000
02001
02002
02003
02004
02005
02006 size_type
02007 find_first_not_of(const _CharT* __s, size_type __pos,
02008 size_type __n) const;
02009
02010
02011
02012
02013
02014
02015
02016
02017
02018
02019
02020 size_type
02021 find_first_not_of(const _CharT* __s, size_type __pos = 0) const
02022 {
02023 __glibcxx_requires_string(__s);
02024 return this->find_first_not_of(__s, __pos, traits_type::length(__s));
02025 }
02026
02027
02028
02029
02030
02031
02032
02033
02034
02035
02036
02037 size_type
02038 find_first_not_of(_CharT __c, size_type __pos = 0) const;
02039
02040
02041
02042
02043
02044
02045
02046
02047
02048
02049
02050 size_type
02051 find_last_not_of(const basic_string& __str, size_type __pos = npos) const
02052 { return this->find_last_not_of(__str.data(), __pos, __str.size()); }
02053
02054
02055
02056
02057
02058
02059
02060
02061
02062
02063
02064
02065
02066 size_type
02067 find_last_not_of(const _CharT* __s, size_type __pos,
02068 size_type __n) const;
02069
02070
02071
02072
02073
02074
02075
02076
02077
02078
02079 size_type
02080 find_last_not_of(const _CharT* __s, size_type __pos = npos) const
02081 {
02082 __glibcxx_requires_string(__s);
02083 return this->find_last_not_of(__s, __pos, traits_type::length(__s));
02084 }
02085
02086
02087
02088
02089
02090
02091
02092
02093
02094
02095
02096 size_type
02097 find_last_not_of(_CharT __c, size_type __pos = npos) const;
02098
02099
02100
02101
02102
02103
02104
02105
02106
02107
02108
02109
02110
02111 basic_string
02112 substr(size_type __pos = 0, size_type __n = npos) const
02113 { return basic_string(*this,
02114 _M_check(__pos, "basic_string::substr"), __n); }
02115
02116
02117
02118
02119
02120
02121
02122
02123
02124
02125
02126
02127
02128
02129 int
02130 compare(const basic_string& __str) const
02131 {
02132 const size_type __size = this->size();
02133 const size_type __osize = __str.size();
02134 const size_type __len = std::min(__size, __osize);
02135
02136 int __r = traits_type::compare(_M_data(), __str.data(), __len);
02137 if (!__r)
02138 __r = _S_compare(__size, __osize);
02139 return __r;
02140 }
02141
02142
02143
02144
02145
02146
02147
02148
02149
02150
02151
02152
02153
02154
02155
02156
02157
02158
02159 int
02160 compare(size_type __pos, size_type __n, const basic_string& __str) const;
02161
02162
02163
02164
02165
02166
02167
02168
02169
02170
02171
02172
02173
02174
02175
02176
02177
02178
02179
02180
02181
02182
02183 int
02184 compare(size_type __pos1, size_type __n1, const basic_string& __str,
02185 size_type __pos2, size_type __n2) const;
02186
02187
02188
02189
02190
02191
02192
02193
02194
02195
02196
02197
02198
02199
02200
02201 int
02202 compare(const _CharT* __s) const;
02203
02204
02205
02206
02207
02208
02209
02210
02211
02212
02213
02214
02215
02216
02217
02218
02219
02220
02221
02222
02223
02224 int
02225 compare(size_type __pos, size_type __n1, const _CharT* __s) const;
02226
02227
02228
02229
02230
02231
02232
02233
02234
02235
02236
02237
02238
02239
02240
02241
02242
02243
02244
02245
02246
02247
02248
02249 int
02250 compare(size_type __pos, size_type __n1, const _CharT* __s,
02251 size_type __n2) const;
02252 };
02253
02254
02255
02256
02257
02258
02259
02260
02261 template<typename _CharT, typename _Traits, typename _Alloc>
02262 basic_string<_CharT, _Traits, _Alloc>
02263 operator+(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
02264 const basic_string<_CharT, _Traits, _Alloc>& __rhs)
02265 {
02266 basic_string<_CharT, _Traits, _Alloc> __str(__lhs);
02267 __str.append(__rhs);
02268 return __str;
02269 }
02270
02271
02272
02273
02274
02275
02276
02277 template<typename _CharT, typename _Traits, typename _Alloc>
02278 basic_string<_CharT,_Traits,_Alloc>
02279 operator+(const _CharT* __lhs,
02280 const basic_string<_CharT,_Traits,_Alloc>& __rhs);
02281
02282
02283
02284
02285
02286
02287
02288 template<typename _CharT, typename _Traits, typename _Alloc>
02289 basic_string<_CharT,_Traits,_Alloc>
02290 operator+(_CharT __lhs, const basic_string<_CharT,_Traits,_Alloc>& __rhs);
02291
02292
02293
02294
02295
02296
02297
02298 template<typename _CharT, typename _Traits, typename _Alloc>
02299 inline basic_string<_CharT, _Traits, _Alloc>
02300 operator+(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
02301 const _CharT* __rhs)
02302 {
02303 basic_string<_CharT, _Traits, _Alloc> __str(__lhs);
02304 __str.append(__rhs);
02305 return __str;
02306 }
02307
02308
02309
02310
02311
02312
02313
02314 template<typename _CharT, typename _Traits, typename _Alloc>
02315 inline basic_string<_CharT, _Traits, _Alloc>
02316 operator+(const basic_string<_CharT, _Traits, _Alloc>& __lhs, _CharT __rhs)
02317 {
02318 typedef basic_string<_CharT, _Traits, _Alloc> __string_type;
02319 typedef typename __string_type::size_type __size_type;
02320 __string_type __str(__lhs);
02321 __str.append(__size_type(1), __rhs);
02322 return __str;
02323 }
02324
02325
02326
02327
02328
02329
02330
02331
02332 template<typename _CharT, typename _Traits, typename _Alloc>
02333 inline bool
02334 operator==(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
02335 const basic_string<_CharT, _Traits, _Alloc>& __rhs)
02336 { return __lhs.compare(__rhs) == 0; }
02337
02338 template<typename _CharT>
02339 inline
02340 typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value, bool>::__type
02341 operator==(const basic_string<_CharT>& __lhs,
02342 const basic_string<_CharT>& __rhs)
02343 { return (__lhs.size() == __rhs.size()
02344 && !std::char_traits<_CharT>::compare(__lhs.data(), __rhs.data(),
02345 __lhs.size())); }
02346
02347
02348
02349
02350
02351
02352
02353 template<typename _CharT, typename _Traits, typename _Alloc>
02354 inline bool
02355 operator==(const _CharT* __lhs,
02356 const basic_string<_CharT, _Traits, _Alloc>& __rhs)
02357 { return __rhs.compare(__lhs) == 0; }
02358
02359
02360
02361
02362
02363
02364
02365 template<typename _CharT, typename _Traits, typename _Alloc>
02366 inline bool
02367 operator==(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
02368 const _CharT* __rhs)
02369 { return __lhs.compare(__rhs) == 0; }
02370
02371
02372
02373
02374
02375
02376
02377
02378 template<typename _CharT, typename _Traits, typename _Alloc>
02379 inline bool
02380 operator!=(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
02381 const basic_string<_CharT, _Traits, _Alloc>& __rhs)
02382 { return !(__lhs == __rhs); }
02383
02384
02385
02386
02387
02388
02389
02390 template<typename _CharT, typename _Traits, typename _Alloc>
02391 inline bool
02392 operator!=(const _CharT* __lhs,
02393 const basic_string<_CharT, _Traits, _Alloc>& __rhs)
02394 { return !(__lhs == __rhs); }
02395
02396
02397
02398
02399
02400
02401
02402 template<typename _CharT, typename _Traits, typename _Alloc>
02403 inline bool
02404 operator!=(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
02405 const _CharT* __rhs)
02406 { return !(__lhs == __rhs); }
02407
02408
02409
02410
02411
02412
02413
02414
02415 template<typename _CharT, typename _Traits, typename _Alloc>
02416 inline bool
02417 operator<(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
02418 const basic_string<_CharT, _Traits, _Alloc>& __rhs)
02419 { return __lhs.compare(__rhs) < 0; }
02420
02421
02422
02423
02424
02425
02426
02427 template<typename _CharT, typename _Traits, typename _Alloc>
02428 inline bool
02429 operator<(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
02430 const _CharT* __rhs)
02431 { return __lhs.compare(__rhs) < 0; }
02432
02433
02434
02435
02436
02437
02438
02439 template<typename _CharT, typename _Traits, typename _Alloc>
02440 inline bool
02441 operator<(const _CharT* __lhs,
02442 const basic_string<_CharT, _Traits, _Alloc>& __rhs)
02443 { return __rhs.compare(__lhs) > 0; }
02444
02445
02446
02447
02448
02449
02450
02451
02452 template<typename _CharT, typename _Traits, typename _Alloc>
02453 inline bool
02454 operator>(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
02455 const basic_string<_CharT, _Traits, _Alloc>& __rhs)
02456 { return __lhs.compare(__rhs) > 0; }
02457
02458
02459
02460
02461
02462
02463
02464 template<typename _CharT, typename _Traits, typename _Alloc>
02465 inline bool
02466 operator>(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
02467 const _CharT* __rhs)
02468 { return __lhs.compare(__rhs) > 0; }
02469
02470
02471
02472
02473
02474
02475
02476 template<typename _CharT, typename _Traits, typename _Alloc>
02477 inline bool
02478 operator>(const _CharT* __lhs,
02479 const basic_string<_CharT, _Traits, _Alloc>& __rhs)
02480 { return __rhs.compare(__lhs) < 0; }
02481
02482
02483
02484
02485
02486
02487
02488
02489 template<typename _CharT, typename _Traits, typename _Alloc>
02490 inline bool
02491 operator<=(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
02492 const basic_string<_CharT, _Traits, _Alloc>& __rhs)
02493 { return __lhs.compare(__rhs) <= 0; }
02494
02495
02496
02497
02498
02499
02500
02501 template<typename _CharT, typename _Traits, typename _Alloc>
02502 inline bool
02503 operator<=(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
02504 const _CharT* __rhs)
02505 { return __lhs.compare(__rhs) <= 0; }
02506
02507
02508
02509
02510
02511
02512
02513 template<typename _CharT, typename _Traits, typename _Alloc>
02514 inline bool
02515 operator<=(const _CharT* __lhs,
02516 const basic_string<_CharT, _Traits, _Alloc>& __rhs)
02517 { return __rhs.compare(__lhs) >= 0; }
02518
02519
02520
02521
02522
02523
02524
02525
02526 template<typename _CharT, typename _Traits, typename _Alloc>
02527 inline bool
02528 operator>=(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
02529 const basic_string<_CharT, _Traits, _Alloc>& __rhs)
02530 { return __lhs.compare(__rhs) >= 0; }
02531
02532
02533
02534
02535
02536
02537
02538 template<typename _CharT, typename _Traits, typename _Alloc>
02539 inline bool
02540 operator>=(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
02541 const _CharT* __rhs)
02542 { return __lhs.compare(__rhs) >= 0; }
02543
02544
02545
02546
02547
02548
02549
02550 template<typename _CharT, typename _Traits, typename _Alloc>
02551 inline bool
02552 operator>=(const _CharT* __lhs,
02553 const basic_string<_CharT, _Traits, _Alloc>& __rhs)
02554 { return __rhs.compare(__lhs) <= 0; }
02555
02556
02557
02558
02559
02560
02561
02562
02563 template<typename _CharT, typename _Traits, typename _Alloc>
02564 inline void
02565 swap(basic_string<_CharT, _Traits, _Alloc>& __lhs,
02566 basic_string<_CharT, _Traits, _Alloc>& __rhs)
02567 { __lhs.swap(__rhs); }
02568
02569
02570
02571
02572
02573
02574
02575
02576
02577
02578
02579
02580 template<typename _CharT, typename _Traits, typename _Alloc>
02581 basic_istream<_CharT, _Traits>&
02582 operator>>(basic_istream<_CharT, _Traits>& __is,
02583 basic_string<_CharT, _Traits, _Alloc>& __str);
02584
02585 template<>
02586 basic_istream<char>&
02587 operator>>(basic_istream<char>& __is, basic_string<char>& __str);
02588
02589
02590
02591
02592
02593
02594
02595
02596
02597
02598 template<typename _CharT, typename _Traits, typename _Alloc>
02599 inline basic_ostream<_CharT, _Traits>&
02600 operator<<(basic_ostream<_CharT, _Traits>& __os,
02601 const basic_string<_CharT, _Traits, _Alloc>& __str)
02602 {
02603
02604
02605 return __ostream_insert(__os, __str.data(), __str.size());
02606 }
02607
02608
02609
02610
02611
02612
02613
02614
02615
02616
02617
02618
02619
02620
02621 template<typename _CharT, typename _Traits, typename _Alloc>
02622 basic_istream<_CharT, _Traits>&
02623 getline(basic_istream<_CharT, _Traits>& __is,
02624 basic_string<_CharT, _Traits, _Alloc>& __str, _CharT __delim);
02625
02626
02627
02628
02629
02630
02631
02632
02633
02634
02635
02636
02637
02638
02639 template<typename _CharT, typename _Traits, typename _Alloc>
02640 inline basic_istream<_CharT, _Traits>&
02641 getline(basic_istream<_CharT, _Traits>& __is,
02642 basic_string<_CharT, _Traits, _Alloc>& __str)
02643 { return getline(__is, __str, __is.widen('\n')); }
02644
02645 template<>
02646 basic_istream<char>&
02647 getline(basic_istream<char>& __in, basic_string<char>& __str,
02648 char __delim);
02649
02650 #ifdef _GLIBCXX_USE_WCHAR_T
02651 template<>
02652 basic_istream<wchar_t>&
02653 getline(basic_istream<wchar_t>& __in, basic_string<wchar_t>& __str,
02654 wchar_t __delim);
02655 #endif
02656
02657 _GLIBCXX_END_NAMESPACE
02658
02659 #if (defined(__GXX_EXPERIMENTAL_CXX0X__) && defined(_GLIBCXX_USE_C99) \
02660 && !defined(_GLIBCXX_HAVE_BROKEN_VSWPRINTF))
02661
02662 #include <ext/string_conversions.h>
02663
02664 _GLIBCXX_BEGIN_NAMESPACE(std)
02665
02666
02667 inline int
02668 stoi(const string& __str, size_t* __idx = 0, int __base = 10)
02669 { return __gnu_cxx::__stoa<long, int>(&std::strtol, "stoi", __str.c_str(),
02670 __idx, __base); }
02671
02672 inline long
02673 stol(const string& __str, size_t* __idx = 0, int __base = 10)
02674 { return __gnu_cxx::__stoa(&std::strtol, "stol", __str.c_str(),
02675 __idx, __base); }
02676
02677 inline unsigned long
02678 stoul(const string& __str, size_t* __idx = 0, int __base = 10)
02679 { return __gnu_cxx::__stoa(&std::strtoul, "stoul", __str.c_str(),
02680 __idx, __base); }
02681
02682 inline long long
02683 stoll(const string& __str, size_t* __idx = 0, int __base = 10)
02684 { return __gnu_cxx::__stoa(&std::strtoll, "stoll", __str.c_str(),
02685 __idx, __base); }
02686
02687 inline unsigned long long
02688 stoull(const string& __str, size_t* __idx = 0, int __base = 10)
02689 { return __gnu_cxx::__stoa(&std::strtoull, "stoull", __str.c_str(),
02690 __idx, __base); }
02691
02692
02693 inline float
02694 stof(const string& __str, size_t* __idx = 0)
02695 { return __gnu_cxx::__stoa(&std::strtof, "stof", __str.c_str(), __idx); }
02696
02697 inline double
02698 stod(const string& __str, size_t* __idx = 0)
02699 { return __gnu_cxx::__stoa(&std::strtod, "stod", __str.c_str(), __idx); }
02700
02701 inline long double
02702 stold(const string& __str, size_t* __idx = 0)
02703 { return __gnu_cxx::__stoa(&std::strtold, "stold", __str.c_str(), __idx); }
02704
02705
02706
02707
02708 inline string
02709 to_string(int __val)
02710 { return __gnu_cxx::__to_xstring<string>(&std::vsnprintf, 4 * sizeof(int),
02711 "%d", __val); }
02712
02713 inline string
02714 to_string(unsigned __val)
02715 { return __gnu_cxx::__to_xstring<string>(&std::vsnprintf,
02716 4 * sizeof(unsigned),
02717 "%u", __val); }
02718
02719 inline string
02720 to_string(long __val)
02721 { return __gnu_cxx::__to_xstring<string>(&std::vsnprintf, 4 * sizeof(long),
02722 "%ld", __val); }
02723
02724 inline string
02725 to_string(unsigned long __val)
02726 { return __gnu_cxx::__to_xstring<string>(&std::vsnprintf,
02727 4 * sizeof(unsigned long),
02728 "%lu", __val); }
02729
02730 inline string
02731 to_string(long long __val)
02732 { return __gnu_cxx::__to_xstring<string>(&std::vsnprintf,
02733 4 * sizeof(long long),
02734 "%lld", __val); }
02735
02736 inline string
02737 to_string(unsigned long long __val)
02738 { return __gnu_cxx::__to_xstring<string>(&std::vsnprintf,
02739 4 * sizeof(unsigned long long),
02740 "%llu", __val); }
02741
02742 inline string
02743 to_string(float __val)
02744 {
02745 const int __n =
02746 __gnu_cxx::__numeric_traits<float>::__max_exponent10 + 20;
02747 return __gnu_cxx::__to_xstring<string>(&std::vsnprintf, __n,
02748 "%f", __val);
02749 }
02750
02751 inline string
02752 to_string(double __val)
02753 {
02754 const int __n =
02755 __gnu_cxx::__numeric_traits<double>::__max_exponent10 + 20;
02756 return __gnu_cxx::__to_xstring<string>(&std::vsnprintf, __n,
02757 "%f", __val);
02758 }
02759
02760 inline string
02761 to_string(long double __val)
02762 {
02763 const int __n =
02764 __gnu_cxx::__numeric_traits<long double>::__max_exponent10 + 20;
02765 return __gnu_cxx::__to_xstring<string>(&std::vsnprintf, __n,
02766 "%Lf", __val);
02767 }
02768
02769 #ifdef _GLIBCXX_USE_WCHAR_T
02770 inline int
02771 stoi(const wstring& __str, size_t* __idx = 0, int __base = 10)
02772 { return __gnu_cxx::__stoa<long, int>(&std::wcstol, "stoi", __str.c_str(),
02773 __idx, __base); }
02774
02775 inline long
02776 stol(const wstring& __str, size_t* __idx = 0, int __base = 10)
02777 { return __gnu_cxx::__stoa(&std::wcstol, "stol", __str.c_str(),
02778 __idx, __base); }
02779
02780 inline unsigned long
02781 stoul(const wstring& __str, size_t* __idx = 0, int __base = 10)
02782 { return __gnu_cxx::__stoa(&std::wcstoul, "stoul", __str.c_str(),
02783 __idx, __base); }
02784
02785 inline long long
02786 stoll(const wstring& __str, size_t* __idx = 0, int __base = 10)
02787 { return __gnu_cxx::__stoa(&std::wcstoll, "stoll", __str.c_str(),
02788 __idx, __base); }
02789
02790 inline unsigned long long
02791 stoull(const wstring& __str, size_t* __idx = 0, int __base = 10)
02792 { return __gnu_cxx::__stoa(&std::wcstoull, "stoull", __str.c_str(),
02793 __idx, __base); }
02794
02795
02796 inline float
02797 stof(const wstring& __str, size_t* __idx = 0)
02798 { return __gnu_cxx::__stoa(&std::wcstof, "stof", __str.c_str(), __idx); }
02799
02800 inline double
02801 stod(const wstring& __str, size_t* __idx = 0)
02802 { return __gnu_cxx::__stoa(&std::wcstod, "stod", __str.c_str(), __idx); }
02803
02804 inline long double
02805 stold(const wstring& __str, size_t* __idx = 0)
02806 { return __gnu_cxx::__stoa(&std::wcstold, "stold", __str.c_str(), __idx); }
02807
02808
02809 inline wstring
02810 to_wstring(int __val)
02811 { return __gnu_cxx::__to_xstring<wstring>(&std::vswprintf, 4 * sizeof(int),
02812 L"%d", __val); }
02813
02814 inline wstring
02815 to_wstring(unsigned __val)
02816 { return __gnu_cxx::__to_xstring<wstring>(&std::vswprintf,
02817 4 * sizeof(unsigned),
02818 L"%u", __val); }
02819
02820 inline wstring
02821 to_wstring(long __val)
02822 { return __gnu_cxx::__to_xstring<wstring>(&std::vswprintf, 4 * sizeof(long),
02823 L"%ld", __val); }
02824
02825 inline wstring
02826 to_wstring(unsigned long __val)
02827 { return __gnu_cxx::__to_xstring<wstring>(&std::vswprintf,
02828 4 * sizeof(unsigned long),
02829 L"%lu", __val); }
02830
02831 inline wstring
02832 to_wstring(long long __val)
02833 { return __gnu_cxx::__to_xstring<wstring>(&std::vswprintf,
02834 4 * sizeof(long long),
02835 L"%lld", __val); }
02836
02837 inline wstring
02838 to_wstring(unsigned long long __val)
02839 { return __gnu_cxx::__to_xstring<wstring>(&std::vswprintf,
02840 4 * sizeof(unsigned long long),
02841 L"%llu", __val); }
02842
02843 inline wstring
02844 to_wstring(float __val)
02845 {
02846 const int __n =
02847 __gnu_cxx::__numeric_traits<float>::__max_exponent10 + 20;
02848 return __gnu_cxx::__to_xstring<wstring>(&std::vswprintf, __n,
02849 L"%f", __val);
02850 }
02851
02852 inline wstring
02853 to_wstring(double __val)
02854 {
02855 const int __n =
02856 __gnu_cxx::__numeric_traits<double>::__max_exponent10 + 20;
02857 return __gnu_cxx::__to_xstring<wstring>(&std::vswprintf, __n,
02858 L"%f", __val);
02859 }
02860
02861 inline wstring
02862 to_wstring(long double __val)
02863 {
02864 const int __n =
02865 __gnu_cxx::__numeric_traits<long double>::__max_exponent10 + 20;
02866 return __gnu_cxx::__to_xstring<wstring>(&std::vswprintf, __n,
02867 L"%Lf", __val);
02868 }
02869 #endif
02870
02871 _GLIBCXX_END_NAMESPACE
02872
02873 #endif
02874
02875 #ifdef __GXX_EXPERIMENTAL_CXX0X__
02876
02877 #include <bits/functional_hash.h>
02878
02879 _GLIBCXX_BEGIN_NAMESPACE(std)
02880
02881
02882
02883 #ifndef _GLIBCXX_COMPATIBILITY_CXX0X
02884
02885 template<>
02886 struct hash<string>
02887 : public std::unary_function<string, size_t>
02888 {
02889 size_t
02890 operator()(const string& __s) const
02891 { return std::_Fnv_hash::hash(__s.data(), __s.length()); }
02892 };
02893
02894 #ifdef _GLIBCXX_USE_WCHAR_T
02895
02896 template<>
02897 struct hash<wstring>
02898 : public std::unary_function<wstring, size_t>
02899 {
02900 size_t
02901 operator()(const wstring& __s) const
02902 { return std::_Fnv_hash::hash(__s.data(),
02903 __s.length() * sizeof(wchar_t)); }
02904 };
02905 #endif
02906 #endif
02907
02908 #ifdef _GLIBCXX_USE_C99_STDINT_TR1
02909
02910 template<>
02911 struct hash<u16string>
02912 : public std::unary_function<u16string, size_t>
02913 {
02914 size_t
02915 operator()(const u16string& __s) const
02916 { return std::_Fnv_hash::hash(__s.data(),
02917 __s.length() * sizeof(char16_t)); }
02918 };
02919
02920
02921 template<>
02922 struct hash<u32string>
02923 : public std::unary_function<u32string, size_t>
02924 {
02925 size_t
02926 operator()(const u32string& __s) const
02927 { return std::_Fnv_hash::hash(__s.data(),
02928 __s.length() * sizeof(char32_t)); }
02929 };
02930 #endif
02931
02932 _GLIBCXX_END_NAMESPACE
02933
02934 #endif
02935
02936 #endif