13e519524SHoward Hinnant// -*- C++ -*- 23e519524SHoward Hinnant//===-------------------------- iterator ----------------------------------===// 33e519524SHoward Hinnant// 45b08a8a4SHoward Hinnant// The LLVM Compiler Infrastructure 53e519524SHoward Hinnant// 6412dbebeSHoward Hinnant// This file is dual licensed under the MIT and the University of Illinois Open 7412dbebeSHoward Hinnant// Source Licenses. See LICENSE.TXT for details. 83e519524SHoward Hinnant// 93e519524SHoward Hinnant//===----------------------------------------------------------------------===// 103e519524SHoward Hinnant 113e519524SHoward Hinnant#ifndef _LIBCPP_ITERATOR 123e519524SHoward Hinnant#define _LIBCPP_ITERATOR 133e519524SHoward Hinnant 143e519524SHoward Hinnant/* 153e519524SHoward Hinnant iterator synopsis 163e519524SHoward Hinnant 173e519524SHoward Hinnantnamespace std 183e519524SHoward Hinnant{ 193e519524SHoward Hinnant 203e519524SHoward Hinnanttemplate<class Iterator> 213e519524SHoward Hinnantstruct iterator_traits 223e519524SHoward Hinnant{ 233e519524SHoward Hinnant typedef typename Iterator::difference_type difference_type; 243e519524SHoward Hinnant typedef typename Iterator::value_type value_type; 253e519524SHoward Hinnant typedef typename Iterator::pointer pointer; 263e519524SHoward Hinnant typedef typename Iterator::reference reference; 273e519524SHoward Hinnant typedef typename Iterator::iterator_category iterator_category; 283e519524SHoward Hinnant}; 293e519524SHoward Hinnant 303e519524SHoward Hinnanttemplate<class T> 313e519524SHoward Hinnantstruct iterator_traits<T*> 323e519524SHoward Hinnant{ 333e519524SHoward Hinnant typedef ptrdiff_t difference_type; 343e519524SHoward Hinnant typedef T value_type; 353e519524SHoward Hinnant typedef T* pointer; 363e519524SHoward Hinnant typedef T& reference; 373e519524SHoward Hinnant typedef random_access_iterator_tag iterator_category; 383e519524SHoward Hinnant}; 393e519524SHoward Hinnant 403e519524SHoward Hinnanttemplate<class Category, class T, class Distance = ptrdiff_t, 413e519524SHoward Hinnant class Pointer = T*, class Reference = T&> 423e519524SHoward Hinnantstruct iterator 433e519524SHoward Hinnant{ 443e519524SHoward Hinnant typedef T value_type; 453e519524SHoward Hinnant typedef Distance difference_type; 463e519524SHoward Hinnant typedef Pointer pointer; 473e519524SHoward Hinnant typedef Reference reference; 483e519524SHoward Hinnant typedef Category iterator_category; 493e519524SHoward Hinnant}; 503e519524SHoward Hinnant 513e519524SHoward Hinnantstruct input_iterator_tag {}; 523e519524SHoward Hinnantstruct output_iterator_tag {}; 533e519524SHoward Hinnantstruct forward_iterator_tag : public input_iterator_tag {}; 543e519524SHoward Hinnantstruct bidirectional_iterator_tag : public forward_iterator_tag {}; 553e519524SHoward Hinnantstruct random_access_iterator_tag : public bidirectional_iterator_tag {}; 563e519524SHoward Hinnant 57f51ee632SMarshall Clow// 27.4.3, iterator operations 583e519524SHoward Hinnant// extension: second argument not conforming to C++03 59f51ee632SMarshall Clowtemplate <class InputIterator> // constexpr in C++17 60f51ee632SMarshall Clow constexpr void advance(InputIterator& i, 613e519524SHoward Hinnant typename iterator_traits<InputIterator>::difference_type n); 623e519524SHoward Hinnant 63f51ee632SMarshall Clowtemplate <class InputIterator> // constexpr in C++17 64f51ee632SMarshall Clow constexpr typename iterator_traits<InputIterator>::difference_type 653e519524SHoward Hinnant distance(InputIterator first, InputIterator last); 663e519524SHoward Hinnant 67f51ee632SMarshall Clowtemplate <class InputIterator> // constexpr in C++17 68f51ee632SMarshall Clow constexpr InputIterator next(InputIterator x, 69f51ee632SMarshall Clowtypename iterator_traits<InputIterator>::difference_type n = 1); 70f51ee632SMarshall Clow 71f51ee632SMarshall Clowtemplate <class BidirectionalIterator> // constexpr in C++17 72f51ee632SMarshall Clow constexpr BidirectionalIterator prev(BidirectionalIterator x, 73f51ee632SMarshall Clow typename iterator_traits<BidirectionalIterator>::difference_type n = 1); 74f51ee632SMarshall Clow 753e519524SHoward Hinnanttemplate <class Iterator> 763e519524SHoward Hinnantclass reverse_iterator 773e519524SHoward Hinnant : public iterator<typename iterator_traits<Iterator>::iterator_category, 783e519524SHoward Hinnant typename iterator_traits<Iterator>::value_type, 793e519524SHoward Hinnant typename iterator_traits<Iterator>::difference_type, 803e519524SHoward Hinnant typename iterator_traits<Iterator>::pointer, 813e519524SHoward Hinnant typename iterator_traits<Iterator>::reference> 823e519524SHoward Hinnant{ 833e519524SHoward Hinnantprotected: 843e519524SHoward Hinnant Iterator current; 853e519524SHoward Hinnantpublic: 863e519524SHoward Hinnant typedef Iterator iterator_type; 873e519524SHoward Hinnant typedef typename iterator_traits<Iterator>::difference_type difference_type; 883e519524SHoward Hinnant typedef typename iterator_traits<Iterator>::reference reference; 893e519524SHoward Hinnant typedef typename iterator_traits<Iterator>::pointer pointer; 903e519524SHoward Hinnant 911b8f260eSMarshall Clow constexpr reverse_iterator(); 921b8f260eSMarshall Clow constexpr explicit reverse_iterator(Iterator x); 931b8f260eSMarshall Clow template <class U> constexpr reverse_iterator(const reverse_iterator<U>& u); 941b8f260eSMarshall Clow template <class U> constexpr reverse_iterator& operator=(const reverse_iterator<U>& u); 951b8f260eSMarshall Clow constexpr Iterator base() const; 961b8f260eSMarshall Clow constexpr reference operator*() const; 971b8f260eSMarshall Clow constexpr pointer operator->() const; 981b8f260eSMarshall Clow constexpr reverse_iterator& operator++(); 991b8f260eSMarshall Clow constexpr reverse_iterator operator++(int); 1001b8f260eSMarshall Clow constexpr reverse_iterator& operator--(); 1011b8f260eSMarshall Clow constexpr reverse_iterator operator--(int); 1021b8f260eSMarshall Clow constexpr reverse_iterator operator+ (difference_type n) const; 1031b8f260eSMarshall Clow constexpr reverse_iterator& operator+=(difference_type n); 1041b8f260eSMarshall Clow constexpr reverse_iterator operator- (difference_type n) const; 1051b8f260eSMarshall Clow constexpr reverse_iterator& operator-=(difference_type n); 1061b8f260eSMarshall Clow constexpr reference operator[](difference_type n) const; 1073e519524SHoward Hinnant}; 1083e519524SHoward Hinnant 1093e519524SHoward Hinnanttemplate <class Iterator1, class Iterator2> 1101b8f260eSMarshall Clowconstexpr bool // constexpr in C++17 1113e519524SHoward Hinnantoperator==(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y); 1123e519524SHoward Hinnant 1133e519524SHoward Hinnanttemplate <class Iterator1, class Iterator2> 1141b8f260eSMarshall Clowconstexpr bool // constexpr in C++17 1153e519524SHoward Hinnantoperator<(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y); 1163e519524SHoward Hinnant 1173e519524SHoward Hinnanttemplate <class Iterator1, class Iterator2> 1181b8f260eSMarshall Clowconstexpr bool // constexpr in C++17 1193e519524SHoward Hinnantoperator!=(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y); 1203e519524SHoward Hinnant 1213e519524SHoward Hinnanttemplate <class Iterator1, class Iterator2> 1221b8f260eSMarshall Clowconstexpr bool // constexpr in C++17 1233e519524SHoward Hinnantoperator>(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y); 1243e519524SHoward Hinnant 1253e519524SHoward Hinnanttemplate <class Iterator1, class Iterator2> 1261b8f260eSMarshall Clowconstexpr bool // constexpr in C++17 1273e519524SHoward Hinnantoperator>=(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y); 1283e519524SHoward Hinnant 1293e519524SHoward Hinnanttemplate <class Iterator1, class Iterator2> 1301b8f260eSMarshall Clowconstexpr bool // constexpr in C++17 1313e519524SHoward Hinnantoperator<=(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y); 1323e519524SHoward Hinnant 1333e519524SHoward Hinnanttemplate <class Iterator1, class Iterator2> 1341b8f260eSMarshall Clowconstexpr auto 135947ce6b5SMarshall Clowoperator-(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y) 1361b8f260eSMarshall Clow-> decltype(__y.base() - __x.base()); // constexpr in C++17 1373e519524SHoward Hinnant 1383e519524SHoward Hinnanttemplate <class Iterator> 1391b8f260eSMarshall Clowconstexpr reverse_iterator<Iterator> 1401b8f260eSMarshall Clowoperator+(typename reverse_iterator<Iterator>::difference_type n, 1411b8f260eSMarshall Clow const reverse_iterator<Iterator>& x); // constexpr in C++17 1423e519524SHoward Hinnant 1431b8f260eSMarshall Clowtemplate <class Iterator> 1441b8f260eSMarshall Clowconstexpr reverse_iterator<Iterator> make_reverse_iterator(Iterator i); // C++14, constexpr in C++17 1456a640a18SMarshall Clow 1463e519524SHoward Hinnanttemplate <class Container> 1473e519524SHoward Hinnantclass back_insert_iterator 1483e519524SHoward Hinnant{ 1493e519524SHoward Hinnantprotected: 1503e519524SHoward Hinnant Container* container; 1513e519524SHoward Hinnantpublic: 1523e519524SHoward Hinnant typedef Container container_type; 1533e519524SHoward Hinnant typedef void value_type; 1543e519524SHoward Hinnant typedef void difference_type; 1558892b4eeSEric Fiselier typedef void reference; 1563e519524SHoward Hinnant typedef void pointer; 1573e519524SHoward Hinnant 1583e519524SHoward Hinnant explicit back_insert_iterator(Container& x); 15903976c1bSHoward Hinnant back_insert_iterator& operator=(const typename Container::value_type& value); 1603e519524SHoward Hinnant back_insert_iterator& operator*(); 1613e519524SHoward Hinnant back_insert_iterator& operator++(); 1623e519524SHoward Hinnant back_insert_iterator operator++(int); 1633e519524SHoward Hinnant}; 1643e519524SHoward Hinnant 1653e519524SHoward Hinnanttemplate <class Container> back_insert_iterator<Container> back_inserter(Container& x); 1663e519524SHoward Hinnant 1673e519524SHoward Hinnanttemplate <class Container> 1683e519524SHoward Hinnantclass front_insert_iterator 1693e519524SHoward Hinnant{ 1703e519524SHoward Hinnantprotected: 1713e519524SHoward Hinnant Container* container; 1723e519524SHoward Hinnantpublic: 1733e519524SHoward Hinnant typedef Container container_type; 1743e519524SHoward Hinnant typedef void value_type; 1753e519524SHoward Hinnant typedef void difference_type; 1768892b4eeSEric Fiselier typedef void reference; 1773e519524SHoward Hinnant typedef void pointer; 1783e519524SHoward Hinnant 1793e519524SHoward Hinnant explicit front_insert_iterator(Container& x); 18003976c1bSHoward Hinnant front_insert_iterator& operator=(const typename Container::value_type& value); 1813e519524SHoward Hinnant front_insert_iterator& operator*(); 1823e519524SHoward Hinnant front_insert_iterator& operator++(); 1833e519524SHoward Hinnant front_insert_iterator operator++(int); 1843e519524SHoward Hinnant}; 1853e519524SHoward Hinnant 1863e519524SHoward Hinnanttemplate <class Container> front_insert_iterator<Container> front_inserter(Container& x); 1873e519524SHoward Hinnant 1883e519524SHoward Hinnanttemplate <class Container> 1893e519524SHoward Hinnantclass insert_iterator 1903e519524SHoward Hinnant{ 1913e519524SHoward Hinnantprotected: 1923e519524SHoward Hinnant Container* container; 1933e519524SHoward Hinnant typename Container::iterator iter; 1943e519524SHoward Hinnantpublic: 1953e519524SHoward Hinnant typedef Container container_type; 1963e519524SHoward Hinnant typedef void value_type; 1973e519524SHoward Hinnant typedef void difference_type; 1988892b4eeSEric Fiselier typedef void reference; 1993e519524SHoward Hinnant typedef void pointer; 2003e519524SHoward Hinnant 2013e519524SHoward Hinnant insert_iterator(Container& x, typename Container::iterator i); 20203976c1bSHoward Hinnant insert_iterator& operator=(const typename Container::value_type& value); 2033e519524SHoward Hinnant insert_iterator& operator*(); 2043e519524SHoward Hinnant insert_iterator& operator++(); 2053e519524SHoward Hinnant insert_iterator& operator++(int); 2063e519524SHoward Hinnant}; 2073e519524SHoward Hinnant 2083e519524SHoward Hinnanttemplate <class Container, class Iterator> 2093e519524SHoward Hinnantinsert_iterator<Container> inserter(Container& x, Iterator i); 2103e519524SHoward Hinnant 211947ce6b5SMarshall Clowtemplate <class Iterator> 212947ce6b5SMarshall Clowclass move_iterator { 213947ce6b5SMarshall Clowpublic: 214947ce6b5SMarshall Clow typedef Iterator iterator_type; 215947ce6b5SMarshall Clow typedef typename iterator_traits<Iterator>::difference_type difference_type; 216947ce6b5SMarshall Clow typedef Iterator pointer; 217947ce6b5SMarshall Clow typedef typename iterator_traits<Iterator>::value_type value_type; 218947ce6b5SMarshall Clow typedef typename iterator_traits<Iterator>::iterator_category iterator_category; 219947ce6b5SMarshall Clow typedef value_type&& reference; 220947ce6b5SMarshall Clow 221720ef472SMarshall Clow constexpr move_iterator(); // all the constexprs are in C++17 222720ef472SMarshall Clow constexpr explicit move_iterator(Iterator i); 223720ef472SMarshall Clow template <class U> 224720ef472SMarshall Clow constexpr move_iterator(const move_iterator<U>& u); 225720ef472SMarshall Clow template <class U> 226720ef472SMarshall Clow constexpr move_iterator& operator=(const move_iterator<U>& u); 227720ef472SMarshall Clow constexpr iterator_type base() const; 228720ef472SMarshall Clow constexpr reference operator*() const; 229720ef472SMarshall Clow constexpr pointer operator->() const; 230720ef472SMarshall Clow constexpr move_iterator& operator++(); 231720ef472SMarshall Clow constexpr move_iterator operator++(int); 232720ef472SMarshall Clow constexpr move_iterator& operator--(); 233720ef472SMarshall Clow constexpr move_iterator operator--(int); 234720ef472SMarshall Clow constexpr move_iterator operator+(difference_type n) const; 235720ef472SMarshall Clow constexpr move_iterator& operator+=(difference_type n); 236720ef472SMarshall Clow constexpr move_iterator operator-(difference_type n) const; 237720ef472SMarshall Clow constexpr move_iterator& operator-=(difference_type n); 238720ef472SMarshall Clow constexpr unspecified operator[](difference_type n) const; 239947ce6b5SMarshall Clowprivate: 240947ce6b5SMarshall Clow Iterator current; // exposition only 241947ce6b5SMarshall Clow}; 242947ce6b5SMarshall Clow 243947ce6b5SMarshall Clowtemplate <class Iterator1, class Iterator2> 244720ef472SMarshall Clowconstexpr bool // constexpr in C++17 245947ce6b5SMarshall Clowoperator==(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y); 246947ce6b5SMarshall Clow 247947ce6b5SMarshall Clowtemplate <class Iterator1, class Iterator2> 248720ef472SMarshall Clowconstexpr bool // constexpr in C++17 249947ce6b5SMarshall Clowoperator!=(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y); 250947ce6b5SMarshall Clow 251947ce6b5SMarshall Clowtemplate <class Iterator1, class Iterator2> 252720ef472SMarshall Clowconstexpr bool // constexpr in C++17 253947ce6b5SMarshall Clowoperator<(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y); 254947ce6b5SMarshall Clow 255947ce6b5SMarshall Clowtemplate <class Iterator1, class Iterator2> 256720ef472SMarshall Clowconstexpr bool // constexpr in C++17 257947ce6b5SMarshall Clowoperator<=(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y); 258947ce6b5SMarshall Clow 259947ce6b5SMarshall Clowtemplate <class Iterator1, class Iterator2> 260720ef472SMarshall Clowconstexpr bool // constexpr in C++17 261947ce6b5SMarshall Clowoperator>(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y); 262947ce6b5SMarshall Clow 263947ce6b5SMarshall Clowtemplate <class Iterator1, class Iterator2> 264720ef472SMarshall Clowconstexpr bool // constexpr in C++17 265947ce6b5SMarshall Clowoperator>=(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y); 266947ce6b5SMarshall Clow 267947ce6b5SMarshall Clowtemplate <class Iterator1, class Iterator2> 268720ef472SMarshall Clowconstexpr auto // constexpr in C++17 269947ce6b5SMarshall Clowoperator-(const move_iterator<Iterator1>& x, 270947ce6b5SMarshall Clow const move_iterator<Iterator2>& y) -> decltype(x.base() - y.base()); 271947ce6b5SMarshall Clow 272947ce6b5SMarshall Clowtemplate <class Iterator> 273720ef472SMarshall Clowconstexpr move_iterator<Iterator> operator+( // constexpr in C++17 274720ef472SMarshall Clow typename move_iterator<Iterator>::difference_type n, 275947ce6b5SMarshall Clow const move_iterator<Iterator>& x); 276947ce6b5SMarshall Clow 277720ef472SMarshall Clowtemplate <class Iterator> // constexpr in C++17 278720ef472SMarshall Clowconstexpr move_iterator<Iterator> make_move_iterator(const Iterator& i); 279947ce6b5SMarshall Clow 280947ce6b5SMarshall Clow 2813e519524SHoward Hinnanttemplate <class T, class charT = char, class traits = char_traits<charT>, class Distance = ptrdiff_t> 2823e519524SHoward Hinnantclass istream_iterator 2833e519524SHoward Hinnant : public iterator<input_iterator_tag, T, Distance, const T*, const T&> 2843e519524SHoward Hinnant{ 2853e519524SHoward Hinnantpublic: 2863e519524SHoward Hinnant typedef charT char_type; 2873e519524SHoward Hinnant typedef traits traits_type; 2883e519524SHoward Hinnant typedef basic_istream<charT,traits> istream_type; 2893e519524SHoward Hinnant 29060d5e0e0SMarshall Clow constexpr istream_iterator(); 2913e519524SHoward Hinnant istream_iterator(istream_type& s); 2923e519524SHoward Hinnant istream_iterator(const istream_iterator& x); 2933e519524SHoward Hinnant ~istream_iterator(); 2943e519524SHoward Hinnant 2953e519524SHoward Hinnant const T& operator*() const; 2963e519524SHoward Hinnant const T* operator->() const; 2973e519524SHoward Hinnant istream_iterator& operator++(); 2983e519524SHoward Hinnant istream_iterator operator++(int); 2993e519524SHoward Hinnant}; 3003e519524SHoward Hinnant 3013e519524SHoward Hinnanttemplate <class T, class charT, class traits, class Distance> 3023e519524SHoward Hinnantbool operator==(const istream_iterator<T,charT,traits,Distance>& x, 3033e519524SHoward Hinnant const istream_iterator<T,charT,traits,Distance>& y); 3043e519524SHoward Hinnanttemplate <class T, class charT, class traits, class Distance> 3053e519524SHoward Hinnantbool operator!=(const istream_iterator<T,charT,traits,Distance>& x, 3063e519524SHoward Hinnant const istream_iterator<T,charT,traits,Distance>& y); 3073e519524SHoward Hinnant 3083e519524SHoward Hinnanttemplate <class T, class charT = char, class traits = char_traits<charT> > 3093e519524SHoward Hinnantclass ostream_iterator 3103e519524SHoward Hinnant : public iterator<output_iterator_tag, void, void, void ,void> 3113e519524SHoward Hinnant{ 3123e519524SHoward Hinnantpublic: 3133e519524SHoward Hinnant typedef charT char_type; 3143e519524SHoward Hinnant typedef traits traits_type; 3153e519524SHoward Hinnant typedef basic_ostream<charT,traits> ostream_type; 3163e519524SHoward Hinnant 3173e519524SHoward Hinnant ostream_iterator(ostream_type& s); 3183e519524SHoward Hinnant ostream_iterator(ostream_type& s, const charT* delimiter); 3193e519524SHoward Hinnant ostream_iterator(const ostream_iterator& x); 3203e519524SHoward Hinnant ~ostream_iterator(); 3213e519524SHoward Hinnant ostream_iterator& operator=(const T& value); 3223e519524SHoward Hinnant 3233e519524SHoward Hinnant ostream_iterator& operator*(); 3243e519524SHoward Hinnant ostream_iterator& operator++(); 3253e519524SHoward Hinnant ostream_iterator& operator++(int); 3263e519524SHoward Hinnant}; 3273e519524SHoward Hinnant 3283e519524SHoward Hinnanttemplate<class charT, class traits = char_traits<charT> > 3293e519524SHoward Hinnantclass istreambuf_iterator 3303e519524SHoward Hinnant : public iterator<input_iterator_tag, charT, 3313e519524SHoward Hinnant typename traits::off_type, unspecified, 3323e519524SHoward Hinnant charT> 3333e519524SHoward Hinnant{ 3343e519524SHoward Hinnantpublic: 3353e519524SHoward Hinnant typedef charT char_type; 3363e519524SHoward Hinnant typedef traits traits_type; 3373e519524SHoward Hinnant typedef typename traits::int_type int_type; 3383e519524SHoward Hinnant typedef basic_streambuf<charT,traits> streambuf_type; 3393e519524SHoward Hinnant typedef basic_istream<charT,traits> istream_type; 3403e519524SHoward Hinnant 3418e882dcbSHoward Hinnant istreambuf_iterator() noexcept; 3428e882dcbSHoward Hinnant istreambuf_iterator(istream_type& s) noexcept; 3438e882dcbSHoward Hinnant istreambuf_iterator(streambuf_type* s) noexcept; 3448e882dcbSHoward Hinnant istreambuf_iterator(a-private-type) noexcept; 3453e519524SHoward Hinnant 3463e519524SHoward Hinnant charT operator*() const; 3473e519524SHoward Hinnant pointer operator->() const; 3483e519524SHoward Hinnant istreambuf_iterator& operator++(); 3493e519524SHoward Hinnant a-private-type operator++(int); 3503e519524SHoward Hinnant 3513e519524SHoward Hinnant bool equal(const istreambuf_iterator& b) const; 3523e519524SHoward Hinnant}; 3533e519524SHoward Hinnant 3543e519524SHoward Hinnanttemplate <class charT, class traits> 3553e519524SHoward Hinnantbool operator==(const istreambuf_iterator<charT,traits>& a, 3563e519524SHoward Hinnant const istreambuf_iterator<charT,traits>& b); 3573e519524SHoward Hinnanttemplate <class charT, class traits> 3583e519524SHoward Hinnantbool operator!=(const istreambuf_iterator<charT,traits>& a, 3593e519524SHoward Hinnant const istreambuf_iterator<charT,traits>& b); 3603e519524SHoward Hinnant 3613e519524SHoward Hinnanttemplate <class charT, class traits = char_traits<charT> > 3623e519524SHoward Hinnantclass ostreambuf_iterator 3633e519524SHoward Hinnant : public iterator<output_iterator_tag, void, void, void, void> 3643e519524SHoward Hinnant{ 3653e519524SHoward Hinnantpublic: 3663e519524SHoward Hinnant typedef charT char_type; 3673e519524SHoward Hinnant typedef traits traits_type; 3683e519524SHoward Hinnant typedef basic_streambuf<charT,traits> streambuf_type; 3693e519524SHoward Hinnant typedef basic_ostream<charT,traits> ostream_type; 3703e519524SHoward Hinnant 3718e882dcbSHoward Hinnant ostreambuf_iterator(ostream_type& s) noexcept; 3728e882dcbSHoward Hinnant ostreambuf_iterator(streambuf_type* s) noexcept; 3733e519524SHoward Hinnant ostreambuf_iterator& operator=(charT c); 3743e519524SHoward Hinnant ostreambuf_iterator& operator*(); 3753e519524SHoward Hinnant ostreambuf_iterator& operator++(); 3763e519524SHoward Hinnant ostreambuf_iterator& operator++(int); 3778e882dcbSHoward Hinnant bool failed() const noexcept; 3783e519524SHoward Hinnant}; 3793e519524SHoward Hinnant 380020b623aSMarshall Clowtemplate <class C> constexpr auto begin(C& c) -> decltype(c.begin()); 381020b623aSMarshall Clowtemplate <class C> constexpr auto begin(const C& c) -> decltype(c.begin()); 382020b623aSMarshall Clowtemplate <class C> constexpr auto end(C& c) -> decltype(c.end()); 383020b623aSMarshall Clowtemplate <class C> constexpr auto end(const C& c) -> decltype(c.end()); 384020b623aSMarshall Clowtemplate <class T, size_t N> constexpr T* begin(T (&array)[N]); 385020b623aSMarshall Clowtemplate <class T, size_t N> constexpr T* end(T (&array)[N]); 3863e519524SHoward Hinnant 387020b623aSMarshall Clowtemplate <class C> auto constexpr cbegin(const C& c) -> decltype(std::begin(c)); // C++14 388020b623aSMarshall Clowtemplate <class C> auto constexpr cend(const C& c) -> decltype(std::end(c)); // C++14 389020b623aSMarshall Clowtemplate <class C> auto constexpr rbegin(C& c) -> decltype(c.rbegin()); // C++14 390020b623aSMarshall Clowtemplate <class C> auto constexpr rbegin(const C& c) -> decltype(c.rbegin()); // C++14 391020b623aSMarshall Clowtemplate <class C> auto constexpr rend(C& c) -> decltype(c.rend()); // C++14 392020b623aSMarshall Clowtemplate <class C> constexpr auto rend(const C& c) -> decltype(c.rend()); // C++14 393020b623aSMarshall Clowtemplate <class E> reverse_iterator<const E*> constexpr rbegin(initializer_list<E> il); // C++14 394020b623aSMarshall Clowtemplate <class E> reverse_iterator<const E*> constexpr rend(initializer_list<E> il); // C++14 395020b623aSMarshall Clowtemplate <class T, size_t N> reverse_iterator<T*> constexpr rbegin(T (&array)[N]); // C++14 396020b623aSMarshall Clowtemplate <class T, size_t N> reverse_iterator<T*> constexpr rend(T (&array)[N]); // C++14 397020b623aSMarshall Clowtemplate <class C> constexpr auto crbegin(const C& c) -> decltype(std::rbegin(c)); // C++14 398020b623aSMarshall Clowtemplate <class C> constexpr auto crend(const C& c) -> decltype(std::rend(c)); // C++14 3991e548c72SMarshall Clow 400ad755104SMarshall Clow// 24.8, container access: 401ad755104SMarshall Clowtemplate <class C> constexpr auto size(const C& c) -> decltype(c.size()); // C++17 402ad755104SMarshall Clowtemplate <class T, size_t N> constexpr size_t size(const T (&array)[N]) noexcept; // C++17 403ad755104SMarshall Clowtemplate <class C> constexpr auto empty(const C& c) -> decltype(c.empty()); // C++17 404ad755104SMarshall Clowtemplate <class T, size_t N> constexpr bool empty(const T (&array)[N]) noexcept; // C++17 405ad755104SMarshall Clowtemplate <class E> constexpr bool empty(initializer_list<E> il) noexcept; // C++17 406ad755104SMarshall Clowtemplate <class C> constexpr auto data(C& c) -> decltype(c.data()); // C++17 407ad755104SMarshall Clowtemplate <class C> constexpr auto data(const C& c) -> decltype(c.data()); // C++17 408ad755104SMarshall Clowtemplate <class T, size_t N> constexpr T* data(T (&array)[N]) noexcept; // C++17 409ad755104SMarshall Clowtemplate <class E> constexpr const E* data(initializer_list<E> il) noexcept; // C++17 410ad755104SMarshall Clow 4113e519524SHoward Hinnant} // std 4123e519524SHoward Hinnant 4133e519524SHoward Hinnant*/ 4143e519524SHoward Hinnant 4153e519524SHoward Hinnant#include <__config> 41639c193b1SEric Fiselier#include <iosfwd> // for forward declarations of vector and string. 417c204c130SMarshall Clow#include <__functional_base> 4183e519524SHoward Hinnant#include <type_traits> 4193e519524SHoward Hinnant#include <cstddef> 4201e548c72SMarshall Clow#include <initializer_list> 421*f56972e2SMarshall Clow#include <version> 422b56e8587SMarshall Clow#ifdef __APPLE__ 423b5c63a2eSHoward Hinnant#include <Availability.h> 424b5c63a2eSHoward Hinnant#endif 425b5c63a2eSHoward Hinnant 42642a3046eSHoward Hinnant#include <__debug> 4273e519524SHoward Hinnant 428073458b1SHoward Hinnant#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) 4293e519524SHoward Hinnant#pragma GCC system_header 430073458b1SHoward Hinnant#endif 4313e519524SHoward Hinnant 4323e519524SHoward Hinnant_LIBCPP_BEGIN_NAMESPACE_STD 4333e519524SHoward Hinnant 434e2f2d1edSEric Fiselierstruct _LIBCPP_TEMPLATE_VIS input_iterator_tag {}; 435e2f2d1edSEric Fiselierstruct _LIBCPP_TEMPLATE_VIS output_iterator_tag {}; 436e2f2d1edSEric Fiselierstruct _LIBCPP_TEMPLATE_VIS forward_iterator_tag : public input_iterator_tag {}; 437e2f2d1edSEric Fiselierstruct _LIBCPP_TEMPLATE_VIS bidirectional_iterator_tag : public forward_iterator_tag {}; 438e2f2d1edSEric Fiselierstruct _LIBCPP_TEMPLATE_VIS random_access_iterator_tag : public bidirectional_iterator_tag {}; 4393e519524SHoward Hinnant 4403e519524SHoward Hinnanttemplate <class _Tp> 4413e519524SHoward Hinnantstruct __has_iterator_category 4423e519524SHoward Hinnant{ 4433e519524SHoward Hinnantprivate: 44454d333a6SHoward Hinnant struct __two {char __lx; char __lxx;}; 4453e519524SHoward Hinnant template <class _Up> static __two __test(...); 4463e519524SHoward Hinnant template <class _Up> static char __test(typename _Up::iterator_category* = 0); 4473e519524SHoward Hinnantpublic: 4483e519524SHoward Hinnant static const bool value = sizeof(__test<_Tp>(0)) == 1; 4493e519524SHoward Hinnant}; 4503e519524SHoward Hinnant 4510724bf67SMarshall Clowtemplate <class _Iter, bool> struct __iterator_traits_impl {}; 4523e519524SHoward Hinnant 4533e519524SHoward Hinnanttemplate <class _Iter> 4540724bf67SMarshall Clowstruct __iterator_traits_impl<_Iter, true> 4553e519524SHoward Hinnant{ 4563e519524SHoward Hinnant typedef typename _Iter::difference_type difference_type; 4573e519524SHoward Hinnant typedef typename _Iter::value_type value_type; 4583e519524SHoward Hinnant typedef typename _Iter::pointer pointer; 4593e519524SHoward Hinnant typedef typename _Iter::reference reference; 4603e519524SHoward Hinnant typedef typename _Iter::iterator_category iterator_category; 4613e519524SHoward Hinnant}; 4623e519524SHoward Hinnant 4633e519524SHoward Hinnanttemplate <class _Iter, bool> struct __iterator_traits {}; 4643e519524SHoward Hinnant 4653e519524SHoward Hinnanttemplate <class _Iter> 4663e519524SHoward Hinnantstruct __iterator_traits<_Iter, true> 4670724bf67SMarshall Clow : __iterator_traits_impl 4683e519524SHoward Hinnant < 4693e519524SHoward Hinnant _Iter, 4703e519524SHoward Hinnant is_convertible<typename _Iter::iterator_category, input_iterator_tag>::value || 4713e519524SHoward Hinnant is_convertible<typename _Iter::iterator_category, output_iterator_tag>::value 4723e519524SHoward Hinnant > 4733e519524SHoward Hinnant{}; 4743e519524SHoward Hinnant 4753e519524SHoward Hinnant// iterator_traits<Iterator> will only have the nested types if Iterator::iterator_category 4763e519524SHoward Hinnant// exists. Else iterator_traits<Iterator> will be an empty class. This is a 4773e519524SHoward Hinnant// conforming extension which allows some programs to compile and behave as 4783e519524SHoward Hinnant// the client expects instead of failing at compile time. 4793e519524SHoward Hinnant 4803e519524SHoward Hinnanttemplate <class _Iter> 481e2f2d1edSEric Fiselierstruct _LIBCPP_TEMPLATE_VIS iterator_traits 4823e519524SHoward Hinnant : __iterator_traits<_Iter, __has_iterator_category<_Iter>::value> {}; 4833e519524SHoward Hinnant 4843e519524SHoward Hinnanttemplate<class _Tp> 485e2f2d1edSEric Fiselierstruct _LIBCPP_TEMPLATE_VIS iterator_traits<_Tp*> 4863e519524SHoward Hinnant{ 4873e519524SHoward Hinnant typedef ptrdiff_t difference_type; 488ffcfd923SMarshall Clow typedef typename remove_cv<_Tp>::type value_type; 4893e519524SHoward Hinnant typedef _Tp* pointer; 4903e519524SHoward Hinnant typedef _Tp& reference; 4913e519524SHoward Hinnant typedef random_access_iterator_tag iterator_category; 4923e519524SHoward Hinnant}; 4933e519524SHoward Hinnant 4943e519524SHoward Hinnanttemplate <class _Tp, class _Up, bool = __has_iterator_category<iterator_traits<_Tp> >::value> 4953e519524SHoward Hinnantstruct __has_iterator_category_convertible_to 4963e519524SHoward Hinnant : public integral_constant<bool, is_convertible<typename iterator_traits<_Tp>::iterator_category, _Up>::value> 4973e519524SHoward Hinnant{}; 4983e519524SHoward Hinnant 4993e519524SHoward Hinnanttemplate <class _Tp, class _Up> 5003e519524SHoward Hinnantstruct __has_iterator_category_convertible_to<_Tp, _Up, false> : public false_type {}; 5013e519524SHoward Hinnant 5023e519524SHoward Hinnanttemplate <class _Tp> 5033e519524SHoward Hinnantstruct __is_input_iterator : public __has_iterator_category_convertible_to<_Tp, input_iterator_tag> {}; 5043e519524SHoward Hinnant 5053e519524SHoward Hinnanttemplate <class _Tp> 5063e519524SHoward Hinnantstruct __is_forward_iterator : public __has_iterator_category_convertible_to<_Tp, forward_iterator_tag> {}; 5073e519524SHoward Hinnant 5083e519524SHoward Hinnanttemplate <class _Tp> 5093e519524SHoward Hinnantstruct __is_bidirectional_iterator : public __has_iterator_category_convertible_to<_Tp, bidirectional_iterator_tag> {}; 5103e519524SHoward Hinnant 5113e519524SHoward Hinnanttemplate <class _Tp> 5123e519524SHoward Hinnantstruct __is_random_access_iterator : public __has_iterator_category_convertible_to<_Tp, random_access_iterator_tag> {}; 5133e519524SHoward Hinnant 51476b4afc0SMarshall Clowtemplate <class _Tp> 51576b4afc0SMarshall Clowstruct __is_exactly_input_iterator 51676b4afc0SMarshall Clow : public integral_constant<bool, 51776b4afc0SMarshall Clow __has_iterator_category_convertible_to<_Tp, input_iterator_tag>::value && 51876b4afc0SMarshall Clow !__has_iterator_category_convertible_to<_Tp, forward_iterator_tag>::value> {}; 51976b4afc0SMarshall Clow 5203e519524SHoward Hinnanttemplate<class _Category, class _Tp, class _Distance = ptrdiff_t, 5213e519524SHoward Hinnant class _Pointer = _Tp*, class _Reference = _Tp&> 522e2f2d1edSEric Fiselierstruct _LIBCPP_TEMPLATE_VIS iterator 5233e519524SHoward Hinnant{ 5243e519524SHoward Hinnant typedef _Tp value_type; 5253e519524SHoward Hinnant typedef _Distance difference_type; 5263e519524SHoward Hinnant typedef _Pointer pointer; 5273e519524SHoward Hinnant typedef _Reference reference; 5283e519524SHoward Hinnant typedef _Category iterator_category; 5293e519524SHoward Hinnant}; 5303e519524SHoward Hinnant 5313e519524SHoward Hinnanttemplate <class _InputIter> 532f51ee632SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 5333e519524SHoward Hinnantvoid __advance(_InputIter& __i, 5343e519524SHoward Hinnant typename iterator_traits<_InputIter>::difference_type __n, input_iterator_tag) 5353e519524SHoward Hinnant{ 5363e519524SHoward Hinnant for (; __n > 0; --__n) 5373e519524SHoward Hinnant ++__i; 5383e519524SHoward Hinnant} 5393e519524SHoward Hinnant 5403e519524SHoward Hinnanttemplate <class _BiDirIter> 541f51ee632SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 5423e519524SHoward Hinnantvoid __advance(_BiDirIter& __i, 5433e519524SHoward Hinnant typename iterator_traits<_BiDirIter>::difference_type __n, bidirectional_iterator_tag) 5443e519524SHoward Hinnant{ 5453e519524SHoward Hinnant if (__n >= 0) 5463e519524SHoward Hinnant for (; __n > 0; --__n) 5473e519524SHoward Hinnant ++__i; 5483e519524SHoward Hinnant else 5493e519524SHoward Hinnant for (; __n < 0; ++__n) 5503e519524SHoward Hinnant --__i; 5513e519524SHoward Hinnant} 5523e519524SHoward Hinnant 5533e519524SHoward Hinnanttemplate <class _RandIter> 554f51ee632SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 5553e519524SHoward Hinnantvoid __advance(_RandIter& __i, 5563e519524SHoward Hinnant typename iterator_traits<_RandIter>::difference_type __n, random_access_iterator_tag) 5573e519524SHoward Hinnant{ 5583e519524SHoward Hinnant __i += __n; 5593e519524SHoward Hinnant} 5603e519524SHoward Hinnant 5613e519524SHoward Hinnanttemplate <class _InputIter> 562f51ee632SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 5633e519524SHoward Hinnantvoid advance(_InputIter& __i, 5643e519524SHoward Hinnant typename iterator_traits<_InputIter>::difference_type __n) 5653e519524SHoward Hinnant{ 5663e519524SHoward Hinnant __advance(__i, __n, typename iterator_traits<_InputIter>::iterator_category()); 5673e519524SHoward Hinnant} 5683e519524SHoward Hinnant 5693e519524SHoward Hinnanttemplate <class _InputIter> 570f51ee632SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 5713e519524SHoward Hinnanttypename iterator_traits<_InputIter>::difference_type 5723e519524SHoward Hinnant__distance(_InputIter __first, _InputIter __last, input_iterator_tag) 5733e519524SHoward Hinnant{ 5743e519524SHoward Hinnant typename iterator_traits<_InputIter>::difference_type __r(0); 5753e519524SHoward Hinnant for (; __first != __last; ++__first) 5763e519524SHoward Hinnant ++__r; 5773e519524SHoward Hinnant return __r; 5783e519524SHoward Hinnant} 5793e519524SHoward Hinnant 5803e519524SHoward Hinnanttemplate <class _RandIter> 581f51ee632SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 5823e519524SHoward Hinnanttypename iterator_traits<_RandIter>::difference_type 5833e519524SHoward Hinnant__distance(_RandIter __first, _RandIter __last, random_access_iterator_tag) 5843e519524SHoward Hinnant{ 5853e519524SHoward Hinnant return __last - __first; 5863e519524SHoward Hinnant} 5873e519524SHoward Hinnant 5883e519524SHoward Hinnanttemplate <class _InputIter> 589f51ee632SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 5903e519524SHoward Hinnanttypename iterator_traits<_InputIter>::difference_type 5913e519524SHoward Hinnantdistance(_InputIter __first, _InputIter __last) 5923e519524SHoward Hinnant{ 5933e519524SHoward Hinnant return __distance(__first, __last, typename iterator_traits<_InputIter>::iterator_category()); 5943e519524SHoward Hinnant} 5953e519524SHoward Hinnant 596e5f1288fSMarshall Clowtemplate <class _InputIter> 597f51ee632SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 5983e2ef408SRachel Craiktypename enable_if 5993e2ef408SRachel Craik< 6003e2ef408SRachel Craik __is_input_iterator<_InputIter>::value, 601e5f1288fSMarshall Clow _InputIter 6023e2ef408SRachel Craik>::type 603e5f1288fSMarshall Clownext(_InputIter __x, 6043e2ef408SRachel Craik typename iterator_traits<_InputIter>::difference_type __n = 1) 6053e519524SHoward Hinnant{ 606ce48a113SHoward Hinnant _VSTD::advance(__x, __n); 6073e519524SHoward Hinnant return __x; 6083e519524SHoward Hinnant} 6093e519524SHoward Hinnant 6103e2ef408SRachel Craiktemplate <class _BidirectionalIter> 611f51ee632SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 6123e2ef408SRachel Craiktypename enable_if 6133e2ef408SRachel Craik< 6143e2ef408SRachel Craik __is_bidirectional_iterator<_BidirectionalIter>::value, 6153e2ef408SRachel Craik _BidirectionalIter 6163e2ef408SRachel Craik>::type 6173e2ef408SRachel Craikprev(_BidirectionalIter __x, 6183e2ef408SRachel Craik typename iterator_traits<_BidirectionalIter>::difference_type __n = 1) 6193e519524SHoward Hinnant{ 620ce48a113SHoward Hinnant _VSTD::advance(__x, -__n); 6213e519524SHoward Hinnant return __x; 6223e519524SHoward Hinnant} 6233e519524SHoward Hinnant 624e02ed1c2SEric Fiselier 625e02ed1c2SEric Fiseliertemplate <class _Tp, class = void> 626e02ed1c2SEric Fiselierstruct __is_stashing_iterator : false_type {}; 627e02ed1c2SEric Fiselier 628e02ed1c2SEric Fiseliertemplate <class _Tp> 629e02ed1c2SEric Fiselierstruct __is_stashing_iterator<_Tp, typename __void_t<typename _Tp::__stashing_iterator_tag>::type> 630e02ed1c2SEric Fiselier : true_type {}; 631e02ed1c2SEric Fiselier 6323e519524SHoward Hinnanttemplate <class _Iter> 633e2f2d1edSEric Fiselierclass _LIBCPP_TEMPLATE_VIS reverse_iterator 6343e519524SHoward Hinnant : public iterator<typename iterator_traits<_Iter>::iterator_category, 6353e519524SHoward Hinnant typename iterator_traits<_Iter>::value_type, 6363e519524SHoward Hinnant typename iterator_traits<_Iter>::difference_type, 6373e519524SHoward Hinnant typename iterator_traits<_Iter>::pointer, 6383e519524SHoward Hinnant typename iterator_traits<_Iter>::reference> 6393e519524SHoward Hinnant{ 6403b83496dSMarshall Clowprivate: 6411b8f260eSMarshall Clow /*mutable*/ _Iter __t; // no longer used as of LWG #2360, not removed due to ABI break 642e02ed1c2SEric Fiselier 643e02ed1c2SEric Fiselier static_assert(!__is_stashing_iterator<_Iter>::value, 644e02ed1c2SEric Fiselier "The specified iterator type cannot be used with reverse_iterator; " 645e02ed1c2SEric Fiselier "Using stashing iterators with reverse_iterator causes undefined behavior"); 646e02ed1c2SEric Fiselier 647b2d74f29SMarshall Clowprotected: 648b2d74f29SMarshall Clow _Iter current; 6493e519524SHoward Hinnantpublic: 6503e519524SHoward Hinnant typedef _Iter iterator_type; 6513e519524SHoward Hinnant typedef typename iterator_traits<_Iter>::difference_type difference_type; 6523e519524SHoward Hinnant typedef typename iterator_traits<_Iter>::reference reference; 6533e519524SHoward Hinnant typedef typename iterator_traits<_Iter>::pointer pointer; 6543e519524SHoward Hinnant 6551b8f260eSMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 6561b8f260eSMarshall Clow reverse_iterator() : __t(), current() {} 6571b8f260eSMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 6581b8f260eSMarshall Clow explicit reverse_iterator(_Iter __x) : __t(__x), current(__x) {} 6591b8f260eSMarshall Clow template <class _Up> 6601b8f260eSMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 6611b8f260eSMarshall Clow reverse_iterator(const reverse_iterator<_Up>& __u) : __t(__u.base()), current(__u.base()) {} 6621b8f260eSMarshall Clow template <class _Up> 6631b8f260eSMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 6641b8f260eSMarshall Clow reverse_iterator& operator=(const reverse_iterator<_Up>& __u) 6651b8f260eSMarshall Clow { __t = current = __u.base(); return *this; } 6661b8f260eSMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 6671b8f260eSMarshall Clow _Iter base() const {return current;} 6681b8f260eSMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 6691b8f260eSMarshall Clow reference operator*() const {_Iter __tmp = current; return *--__tmp;} 6701b8f260eSMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 6711b8f260eSMarshall Clow pointer operator->() const {return _VSTD::addressof(operator*());} 6721b8f260eSMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 6731b8f260eSMarshall Clow reverse_iterator& operator++() {--current; return *this;} 6741b8f260eSMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 6751b8f260eSMarshall Clow reverse_iterator operator++(int) {reverse_iterator __tmp(*this); --current; return __tmp;} 6761b8f260eSMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 6771b8f260eSMarshall Clow reverse_iterator& operator--() {++current; return *this;} 6781b8f260eSMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 6791b8f260eSMarshall Clow reverse_iterator operator--(int) {reverse_iterator __tmp(*this); ++current; return __tmp;} 6801b8f260eSMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 6811b8f260eSMarshall Clow reverse_iterator operator+ (difference_type __n) const {return reverse_iterator(current - __n);} 6821b8f260eSMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 6831b8f260eSMarshall Clow reverse_iterator& operator+=(difference_type __n) {current -= __n; return *this;} 6841b8f260eSMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 6851b8f260eSMarshall Clow reverse_iterator operator- (difference_type __n) const {return reverse_iterator(current + __n);} 6861b8f260eSMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 6871b8f260eSMarshall Clow reverse_iterator& operator-=(difference_type __n) {current += __n; return *this;} 6881b8f260eSMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 6891b8f260eSMarshall Clow reference operator[](difference_type __n) const {return *(*this + __n);} 6903e519524SHoward Hinnant}; 6913e519524SHoward Hinnant 6923e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2> 6931b8f260eSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 6943e519524SHoward Hinnantbool 6953e519524SHoward Hinnantoperator==(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 6963e519524SHoward Hinnant{ 6973e519524SHoward Hinnant return __x.base() == __y.base(); 6983e519524SHoward Hinnant} 6993e519524SHoward Hinnant 7003e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2> 7011b8f260eSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 7023e519524SHoward Hinnantbool 7033e519524SHoward Hinnantoperator<(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 7043e519524SHoward Hinnant{ 7053e519524SHoward Hinnant return __x.base() > __y.base(); 7063e519524SHoward Hinnant} 7073e519524SHoward Hinnant 7083e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2> 7091b8f260eSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 7103e519524SHoward Hinnantbool 7113e519524SHoward Hinnantoperator!=(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 7123e519524SHoward Hinnant{ 7133e519524SHoward Hinnant return __x.base() != __y.base(); 7143e519524SHoward Hinnant} 7153e519524SHoward Hinnant 7163e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2> 7171b8f260eSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 7183e519524SHoward Hinnantbool 7193e519524SHoward Hinnantoperator>(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 7203e519524SHoward Hinnant{ 7213e519524SHoward Hinnant return __x.base() < __y.base(); 7223e519524SHoward Hinnant} 7233e519524SHoward Hinnant 7243e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2> 7251b8f260eSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 7263e519524SHoward Hinnantbool 7273e519524SHoward Hinnantoperator>=(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 7283e519524SHoward Hinnant{ 7293e519524SHoward Hinnant return __x.base() <= __y.base(); 7303e519524SHoward Hinnant} 7313e519524SHoward Hinnant 7323e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2> 7331b8f260eSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 7343e519524SHoward Hinnantbool 7353e519524SHoward Hinnantoperator<=(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 7363e519524SHoward Hinnant{ 7373e519524SHoward Hinnant return __x.base() >= __y.base(); 7383e519524SHoward Hinnant} 7393e519524SHoward Hinnant 7402ee83725SMarshall Clow#ifndef _LIBCPP_CXX03_LANG 741947ce6b5SMarshall Clowtemplate <class _Iter1, class _Iter2> 7421b8f260eSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 743947ce6b5SMarshall Clowauto 744947ce6b5SMarshall Clowoperator-(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 745947ce6b5SMarshall Clow-> decltype(__y.base() - __x.base()) 746947ce6b5SMarshall Clow{ 747947ce6b5SMarshall Clow return __y.base() - __x.base(); 748947ce6b5SMarshall Clow} 749947ce6b5SMarshall Clow#else 7503e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2> 7513e519524SHoward Hinnantinline _LIBCPP_INLINE_VISIBILITY 7523e519524SHoward Hinnanttypename reverse_iterator<_Iter1>::difference_type 7533e519524SHoward Hinnantoperator-(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 7543e519524SHoward Hinnant{ 7553e519524SHoward Hinnant return __y.base() - __x.base(); 7563e519524SHoward Hinnant} 757947ce6b5SMarshall Clow#endif 7583e519524SHoward Hinnant 7593e519524SHoward Hinnanttemplate <class _Iter> 7601b8f260eSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 7613e519524SHoward Hinnantreverse_iterator<_Iter> 7623e519524SHoward Hinnantoperator+(typename reverse_iterator<_Iter>::difference_type __n, const reverse_iterator<_Iter>& __x) 7633e519524SHoward Hinnant{ 7643e519524SHoward Hinnant return reverse_iterator<_Iter>(__x.base() - __n); 7653e519524SHoward Hinnant} 7663e519524SHoward Hinnant 7676a640a18SMarshall Clow#if _LIBCPP_STD_VER > 11 7686a640a18SMarshall Clowtemplate <class _Iter> 7691b8f260eSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 7706a640a18SMarshall Clowreverse_iterator<_Iter> make_reverse_iterator(_Iter __i) 7716a640a18SMarshall Clow{ 7726a640a18SMarshall Clow return reverse_iterator<_Iter>(__i); 7736a640a18SMarshall Clow} 7746a640a18SMarshall Clow#endif 7756a640a18SMarshall Clow 7763e519524SHoward Hinnanttemplate <class _Container> 777e2f2d1edSEric Fiselierclass _LIBCPP_TEMPLATE_VIS back_insert_iterator 7783e519524SHoward Hinnant : public iterator<output_iterator_tag, 7793e519524SHoward Hinnant void, 7803e519524SHoward Hinnant void, 7813e519524SHoward Hinnant void, 7828892b4eeSEric Fiselier void> 7833e519524SHoward Hinnant{ 7843e519524SHoward Hinnantprotected: 7853e519524SHoward Hinnant _Container* container; 7863e519524SHoward Hinnantpublic: 7873e519524SHoward Hinnant typedef _Container container_type; 7883e519524SHoward Hinnant 789f519be34SMarshall Clow _LIBCPP_INLINE_VISIBILITY explicit back_insert_iterator(_Container& __x) : container(_VSTD::addressof(__x)) {} 790e4383379SHoward Hinnant _LIBCPP_INLINE_VISIBILITY back_insert_iterator& operator=(const typename _Container::value_type& __value_) 791e4383379SHoward Hinnant {container->push_back(__value_); return *this;} 792046492b9SEric Fiselier#ifndef _LIBCPP_CXX03_LANG 793e4383379SHoward Hinnant _LIBCPP_INLINE_VISIBILITY back_insert_iterator& operator=(typename _Container::value_type&& __value_) 794e4383379SHoward Hinnant {container->push_back(_VSTD::move(__value_)); return *this;} 795046492b9SEric Fiselier#endif // _LIBCPP_CXX03_LANG 7963e519524SHoward Hinnant _LIBCPP_INLINE_VISIBILITY back_insert_iterator& operator*() {return *this;} 7973e519524SHoward Hinnant _LIBCPP_INLINE_VISIBILITY back_insert_iterator& operator++() {return *this;} 7983e519524SHoward Hinnant _LIBCPP_INLINE_VISIBILITY back_insert_iterator operator++(int) {return *this;} 7993e519524SHoward Hinnant}; 8003e519524SHoward Hinnant 8013e519524SHoward Hinnanttemplate <class _Container> 8023e519524SHoward Hinnantinline _LIBCPP_INLINE_VISIBILITY 8033e519524SHoward Hinnantback_insert_iterator<_Container> 8043e519524SHoward Hinnantback_inserter(_Container& __x) 8053e519524SHoward Hinnant{ 8063e519524SHoward Hinnant return back_insert_iterator<_Container>(__x); 8073e519524SHoward Hinnant} 8083e519524SHoward Hinnant 8093e519524SHoward Hinnanttemplate <class _Container> 810e2f2d1edSEric Fiselierclass _LIBCPP_TEMPLATE_VIS front_insert_iterator 8113e519524SHoward Hinnant : public iterator<output_iterator_tag, 8123e519524SHoward Hinnant void, 8133e519524SHoward Hinnant void, 8143e519524SHoward Hinnant void, 8158892b4eeSEric Fiselier void> 8163e519524SHoward Hinnant{ 8173e519524SHoward Hinnantprotected: 8183e519524SHoward Hinnant _Container* container; 8193e519524SHoward Hinnantpublic: 8203e519524SHoward Hinnant typedef _Container container_type; 8213e519524SHoward Hinnant 822f519be34SMarshall Clow _LIBCPP_INLINE_VISIBILITY explicit front_insert_iterator(_Container& __x) : container(_VSTD::addressof(__x)) {} 823e4383379SHoward Hinnant _LIBCPP_INLINE_VISIBILITY front_insert_iterator& operator=(const typename _Container::value_type& __value_) 824e4383379SHoward Hinnant {container->push_front(__value_); return *this;} 825046492b9SEric Fiselier#ifndef _LIBCPP_CXX03_LANG 826e4383379SHoward Hinnant _LIBCPP_INLINE_VISIBILITY front_insert_iterator& operator=(typename _Container::value_type&& __value_) 827e4383379SHoward Hinnant {container->push_front(_VSTD::move(__value_)); return *this;} 828046492b9SEric Fiselier#endif // _LIBCPP_CXX03_LANG 8293e519524SHoward Hinnant _LIBCPP_INLINE_VISIBILITY front_insert_iterator& operator*() {return *this;} 8303e519524SHoward Hinnant _LIBCPP_INLINE_VISIBILITY front_insert_iterator& operator++() {return *this;} 8313e519524SHoward Hinnant _LIBCPP_INLINE_VISIBILITY front_insert_iterator operator++(int) {return *this;} 8323e519524SHoward Hinnant}; 8333e519524SHoward Hinnant 8343e519524SHoward Hinnanttemplate <class _Container> 8353e519524SHoward Hinnantinline _LIBCPP_INLINE_VISIBILITY 8363e519524SHoward Hinnantfront_insert_iterator<_Container> 8373e519524SHoward Hinnantfront_inserter(_Container& __x) 8383e519524SHoward Hinnant{ 8393e519524SHoward Hinnant return front_insert_iterator<_Container>(__x); 8403e519524SHoward Hinnant} 8413e519524SHoward Hinnant 8423e519524SHoward Hinnanttemplate <class _Container> 843e2f2d1edSEric Fiselierclass _LIBCPP_TEMPLATE_VIS insert_iterator 8443e519524SHoward Hinnant : public iterator<output_iterator_tag, 8453e519524SHoward Hinnant void, 8463e519524SHoward Hinnant void, 8473e519524SHoward Hinnant void, 8488892b4eeSEric Fiselier void> 8493e519524SHoward Hinnant{ 8503e519524SHoward Hinnantprotected: 8513e519524SHoward Hinnant _Container* container; 8523e519524SHoward Hinnant typename _Container::iterator iter; 8533e519524SHoward Hinnantpublic: 8543e519524SHoward Hinnant typedef _Container container_type; 8553e519524SHoward Hinnant 8563e519524SHoward Hinnant _LIBCPP_INLINE_VISIBILITY insert_iterator(_Container& __x, typename _Container::iterator __i) 857f519be34SMarshall Clow : container(_VSTD::addressof(__x)), iter(__i) {} 858e4383379SHoward Hinnant _LIBCPP_INLINE_VISIBILITY insert_iterator& operator=(const typename _Container::value_type& __value_) 859e4383379SHoward Hinnant {iter = container->insert(iter, __value_); ++iter; return *this;} 860046492b9SEric Fiselier#ifndef _LIBCPP_CXX03_LANG 861e4383379SHoward Hinnant _LIBCPP_INLINE_VISIBILITY insert_iterator& operator=(typename _Container::value_type&& __value_) 862e4383379SHoward Hinnant {iter = container->insert(iter, _VSTD::move(__value_)); ++iter; return *this;} 863046492b9SEric Fiselier#endif // _LIBCPP_CXX03_LANG 8643e519524SHoward Hinnant _LIBCPP_INLINE_VISIBILITY insert_iterator& operator*() {return *this;} 8653e519524SHoward Hinnant _LIBCPP_INLINE_VISIBILITY insert_iterator& operator++() {return *this;} 8663e519524SHoward Hinnant _LIBCPP_INLINE_VISIBILITY insert_iterator& operator++(int) {return *this;} 8673e519524SHoward Hinnant}; 8683e519524SHoward Hinnant 8693e519524SHoward Hinnanttemplate <class _Container> 8703e519524SHoward Hinnantinline _LIBCPP_INLINE_VISIBILITY 8713e519524SHoward Hinnantinsert_iterator<_Container> 8723e519524SHoward Hinnantinserter(_Container& __x, typename _Container::iterator __i) 8733e519524SHoward Hinnant{ 8743e519524SHoward Hinnant return insert_iterator<_Container>(__x, __i); 8753e519524SHoward Hinnant} 8763e519524SHoward Hinnant 8773e519524SHoward Hinnanttemplate <class _Tp, class _CharT = char, 8783e519524SHoward Hinnant class _Traits = char_traits<_CharT>, class _Distance = ptrdiff_t> 879e2f2d1edSEric Fiselierclass _LIBCPP_TEMPLATE_VIS istream_iterator 8803e519524SHoward Hinnant : public iterator<input_iterator_tag, _Tp, _Distance, const _Tp*, const _Tp&> 8813e519524SHoward Hinnant{ 8823e519524SHoward Hinnantpublic: 8833e519524SHoward Hinnant typedef _CharT char_type; 8843e519524SHoward Hinnant typedef _Traits traits_type; 8853e519524SHoward Hinnant typedef basic_istream<_CharT,_Traits> istream_type; 8863e519524SHoward Hinnantprivate: 8873e519524SHoward Hinnant istream_type* __in_stream_; 8883e519524SHoward Hinnant _Tp __value_; 8893e519524SHoward Hinnantpublic: 89060d5e0e0SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR istream_iterator() : __in_stream_(0), __value_() {} 891bc6a7df0SMarshall Clow _LIBCPP_INLINE_VISIBILITY istream_iterator(istream_type& __s) : __in_stream_(_VSTD::addressof(__s)) 8923e519524SHoward Hinnant { 8933e519524SHoward Hinnant if (!(*__in_stream_ >> __value_)) 8943e519524SHoward Hinnant __in_stream_ = 0; 8953e519524SHoward Hinnant } 8963e519524SHoward Hinnant 8973e519524SHoward Hinnant _LIBCPP_INLINE_VISIBILITY const _Tp& operator*() const {return __value_;} 898bc6a7df0SMarshall Clow _LIBCPP_INLINE_VISIBILITY const _Tp* operator->() const {return _VSTD::addressof((operator*()));} 8993e519524SHoward Hinnant _LIBCPP_INLINE_VISIBILITY istream_iterator& operator++() 9003e519524SHoward Hinnant { 9013e519524SHoward Hinnant if (!(*__in_stream_ >> __value_)) 9023e519524SHoward Hinnant __in_stream_ = 0; 9033e519524SHoward Hinnant return *this; 9043e519524SHoward Hinnant } 9053e519524SHoward Hinnant _LIBCPP_INLINE_VISIBILITY istream_iterator operator++(int) 9063e519524SHoward Hinnant {istream_iterator __t(*this); ++(*this); return __t;} 9073e519524SHoward Hinnant 9086f56d3eeSRoger Ferrer Ibanez template <class _Up, class _CharU, class _TraitsU, class _DistanceU> 9093e519524SHoward Hinnant friend _LIBCPP_INLINE_VISIBILITY 9106f56d3eeSRoger Ferrer Ibanez bool 9116f56d3eeSRoger Ferrer Ibanez operator==(const istream_iterator<_Up, _CharU, _TraitsU, _DistanceU>& __x, 9126f56d3eeSRoger Ferrer Ibanez const istream_iterator<_Up, _CharU, _TraitsU, _DistanceU>& __y); 9133e519524SHoward Hinnant 9146f56d3eeSRoger Ferrer Ibanez template <class _Up, class _CharU, class _TraitsU, class _DistanceU> 9153e519524SHoward Hinnant friend _LIBCPP_INLINE_VISIBILITY 9166f56d3eeSRoger Ferrer Ibanez bool 9176f56d3eeSRoger Ferrer Ibanez operator==(const istream_iterator<_Up, _CharU, _TraitsU, _DistanceU>& __x, 9186f56d3eeSRoger Ferrer Ibanez const istream_iterator<_Up, _CharU, _TraitsU, _DistanceU>& __y); 9193e519524SHoward Hinnant}; 9203e519524SHoward Hinnant 9216f56d3eeSRoger Ferrer Ibaneztemplate <class _Tp, class _CharT, class _Traits, class _Distance> 9226f56d3eeSRoger Ferrer Ibanezinline _LIBCPP_INLINE_VISIBILITY 9236f56d3eeSRoger Ferrer Ibanezbool 9246f56d3eeSRoger Ferrer Ibanezoperator==(const istream_iterator<_Tp, _CharT, _Traits, _Distance>& __x, 9256f56d3eeSRoger Ferrer Ibanez const istream_iterator<_Tp, _CharT, _Traits, _Distance>& __y) 9266f56d3eeSRoger Ferrer Ibanez{ 9276f56d3eeSRoger Ferrer Ibanez return __x.__in_stream_ == __y.__in_stream_; 9286f56d3eeSRoger Ferrer Ibanez} 9296f56d3eeSRoger Ferrer Ibanez 9306f56d3eeSRoger Ferrer Ibaneztemplate <class _Tp, class _CharT, class _Traits, class _Distance> 9316f56d3eeSRoger Ferrer Ibanezinline _LIBCPP_INLINE_VISIBILITY 9326f56d3eeSRoger Ferrer Ibanezbool 9336f56d3eeSRoger Ferrer Ibanezoperator!=(const istream_iterator<_Tp, _CharT, _Traits, _Distance>& __x, 9346f56d3eeSRoger Ferrer Ibanez const istream_iterator<_Tp, _CharT, _Traits, _Distance>& __y) 9356f56d3eeSRoger Ferrer Ibanez{ 9366f56d3eeSRoger Ferrer Ibanez return !(__x == __y); 9376f56d3eeSRoger Ferrer Ibanez} 9386f56d3eeSRoger Ferrer Ibanez 9393e519524SHoward Hinnanttemplate <class _Tp, class _CharT = char, class _Traits = char_traits<_CharT> > 940e2f2d1edSEric Fiselierclass _LIBCPP_TEMPLATE_VIS ostream_iterator 9413e519524SHoward Hinnant : public iterator<output_iterator_tag, void, void, void, void> 9423e519524SHoward Hinnant{ 9433e519524SHoward Hinnantpublic: 9443e519524SHoward Hinnant typedef _CharT char_type; 9453e519524SHoward Hinnant typedef _Traits traits_type; 9463e519524SHoward Hinnant typedef basic_ostream<_CharT,_Traits> ostream_type; 9473e519524SHoward Hinnantprivate: 9483e519524SHoward Hinnant ostream_type* __out_stream_; 9493e519524SHoward Hinnant const char_type* __delim_; 9503e519524SHoward Hinnantpublic: 951853042cfSMarshall Clow _LIBCPP_INLINE_VISIBILITY ostream_iterator(ostream_type& __s) _NOEXCEPT 952bc6a7df0SMarshall Clow : __out_stream_(_VSTD::addressof(__s)), __delim_(0) {} 953853042cfSMarshall Clow _LIBCPP_INLINE_VISIBILITY ostream_iterator(ostream_type& __s, const _CharT* __delimiter) _NOEXCEPT 954bc6a7df0SMarshall Clow : __out_stream_(_VSTD::addressof(__s)), __delim_(__delimiter) {} 955e4383379SHoward Hinnant _LIBCPP_INLINE_VISIBILITY ostream_iterator& operator=(const _Tp& __value_) 9563e519524SHoward Hinnant { 957e4383379SHoward Hinnant *__out_stream_ << __value_; 9583e519524SHoward Hinnant if (__delim_) 9593e519524SHoward Hinnant *__out_stream_ << __delim_; 9603e519524SHoward Hinnant return *this; 9613e519524SHoward Hinnant } 9623e519524SHoward Hinnant 9633e519524SHoward Hinnant _LIBCPP_INLINE_VISIBILITY ostream_iterator& operator*() {return *this;} 9643e519524SHoward Hinnant _LIBCPP_INLINE_VISIBILITY ostream_iterator& operator++() {return *this;} 9653e519524SHoward Hinnant _LIBCPP_INLINE_VISIBILITY ostream_iterator& operator++(int) {return *this;} 9663e519524SHoward Hinnant}; 9673e519524SHoward Hinnant 9683e519524SHoward Hinnanttemplate<class _CharT, class _Traits> 969e2f2d1edSEric Fiselierclass _LIBCPP_TEMPLATE_VIS istreambuf_iterator 9703e519524SHoward Hinnant : public iterator<input_iterator_tag, _CharT, 9713e519524SHoward Hinnant typename _Traits::off_type, _CharT*, 9723e519524SHoward Hinnant _CharT> 9733e519524SHoward Hinnant{ 9743e519524SHoward Hinnantpublic: 9753e519524SHoward Hinnant typedef _CharT char_type; 9763e519524SHoward Hinnant typedef _Traits traits_type; 9773e519524SHoward Hinnant typedef typename _Traits::int_type int_type; 9783e519524SHoward Hinnant typedef basic_streambuf<_CharT,_Traits> streambuf_type; 9793e519524SHoward Hinnant typedef basic_istream<_CharT,_Traits> istream_type; 9803e519524SHoward Hinnantprivate: 981dfdf5085SHoward Hinnant mutable streambuf_type* __sbuf_; 9823e519524SHoward Hinnant 9833e519524SHoward Hinnant class __proxy 9843e519524SHoward Hinnant { 9853e519524SHoward Hinnant char_type __keep_; 9863e519524SHoward Hinnant streambuf_type* __sbuf_; 9873e519524SHoward Hinnant _LIBCPP_INLINE_VISIBILITY __proxy(char_type __c, streambuf_type* __s) 9883e519524SHoward Hinnant : __keep_(__c), __sbuf_(__s) {} 9893e519524SHoward Hinnant friend class istreambuf_iterator; 9903e519524SHoward Hinnant public: 9913e519524SHoward Hinnant _LIBCPP_INLINE_VISIBILITY char_type operator*() const {return __keep_;} 9923e519524SHoward Hinnant }; 9933e519524SHoward Hinnant 994848a5374SHoward Hinnant _LIBCPP_INLINE_VISIBILITY 995dfdf5085SHoward Hinnant bool __test_for_eof() const 9963e519524SHoward Hinnant { 9973e519524SHoward Hinnant if (__sbuf_ && traits_type::eq_int_type(__sbuf_->sgetc(), traits_type::eof())) 9983e519524SHoward Hinnant __sbuf_ = 0; 999dfdf5085SHoward Hinnant return __sbuf_ == 0; 10003e519524SHoward Hinnant } 10013e519524SHoward Hinnantpublic: 1002dfdf5085SHoward Hinnant _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR istreambuf_iterator() _NOEXCEPT : __sbuf_(0) {} 10038e882dcbSHoward Hinnant _LIBCPP_INLINE_VISIBILITY istreambuf_iterator(istream_type& __s) _NOEXCEPT 1004a96d7458SHoward Hinnant : __sbuf_(__s.rdbuf()) {} 10058e882dcbSHoward Hinnant _LIBCPP_INLINE_VISIBILITY istreambuf_iterator(streambuf_type* __s) _NOEXCEPT 1006a96d7458SHoward Hinnant : __sbuf_(__s) {} 10078e882dcbSHoward Hinnant _LIBCPP_INLINE_VISIBILITY istreambuf_iterator(const __proxy& __p) _NOEXCEPT 10083e519524SHoward Hinnant : __sbuf_(__p.__sbuf_) {} 10093e519524SHoward Hinnant 1010c206366fSHoward Hinnant _LIBCPP_INLINE_VISIBILITY char_type operator*() const 1011c206366fSHoward Hinnant {return static_cast<char_type>(__sbuf_->sgetc());} 10123e519524SHoward Hinnant _LIBCPP_INLINE_VISIBILITY istreambuf_iterator& operator++() 10133e519524SHoward Hinnant { 1014dfdf5085SHoward Hinnant __sbuf_->sbumpc(); 10153e519524SHoward Hinnant return *this; 10163e519524SHoward Hinnant } 10173e519524SHoward Hinnant _LIBCPP_INLINE_VISIBILITY __proxy operator++(int) 10183e519524SHoward Hinnant { 1019dfdf5085SHoward Hinnant return __proxy(__sbuf_->sbumpc(), __sbuf_); 10203e519524SHoward Hinnant } 10213e519524SHoward Hinnant 10223e519524SHoward Hinnant _LIBCPP_INLINE_VISIBILITY bool equal(const istreambuf_iterator& __b) const 1023dfdf5085SHoward Hinnant {return __test_for_eof() == __b.__test_for_eof();} 10243e519524SHoward Hinnant}; 10253e519524SHoward Hinnant 10263e519524SHoward Hinnanttemplate <class _CharT, class _Traits> 10273e519524SHoward Hinnantinline _LIBCPP_INLINE_VISIBILITY 10283e519524SHoward Hinnantbool operator==(const istreambuf_iterator<_CharT,_Traits>& __a, 10293e519524SHoward Hinnant const istreambuf_iterator<_CharT,_Traits>& __b) 10303e519524SHoward Hinnant {return __a.equal(__b);} 10313e519524SHoward Hinnant 10323e519524SHoward Hinnanttemplate <class _CharT, class _Traits> 10333e519524SHoward Hinnantinline _LIBCPP_INLINE_VISIBILITY 10343e519524SHoward Hinnantbool operator!=(const istreambuf_iterator<_CharT,_Traits>& __a, 10353e519524SHoward Hinnant const istreambuf_iterator<_CharT,_Traits>& __b) 10363e519524SHoward Hinnant {return !__a.equal(__b);} 10373e519524SHoward Hinnant 10383e519524SHoward Hinnanttemplate <class _CharT, class _Traits> 1039e2f2d1edSEric Fiselierclass _LIBCPP_TEMPLATE_VIS ostreambuf_iterator 10403e519524SHoward Hinnant : public iterator<output_iterator_tag, void, void, void, void> 10413e519524SHoward Hinnant{ 10423e519524SHoward Hinnantpublic: 10433e519524SHoward Hinnant typedef _CharT char_type; 10443e519524SHoward Hinnant typedef _Traits traits_type; 10453e519524SHoward Hinnant typedef basic_streambuf<_CharT,_Traits> streambuf_type; 10463e519524SHoward Hinnant typedef basic_ostream<_CharT,_Traits> ostream_type; 10473e519524SHoward Hinnantprivate: 10483e519524SHoward Hinnant streambuf_type* __sbuf_; 10493e519524SHoward Hinnantpublic: 10508e882dcbSHoward Hinnant _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator(ostream_type& __s) _NOEXCEPT 10513e519524SHoward Hinnant : __sbuf_(__s.rdbuf()) {} 10528e882dcbSHoward Hinnant _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator(streambuf_type* __s) _NOEXCEPT 10533e519524SHoward Hinnant : __sbuf_(__s) {} 10543e519524SHoward Hinnant _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator& operator=(_CharT __c) 10553e519524SHoward Hinnant { 10563e519524SHoward Hinnant if (__sbuf_ && traits_type::eq_int_type(__sbuf_->sputc(__c), traits_type::eof())) 10573e519524SHoward Hinnant __sbuf_ = 0; 10583e519524SHoward Hinnant return *this; 10593e519524SHoward Hinnant } 10603e519524SHoward Hinnant _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator& operator*() {return *this;} 10613e519524SHoward Hinnant _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator& operator++() {return *this;} 10623e519524SHoward Hinnant _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator& operator++(int) {return *this;} 10638e882dcbSHoward Hinnant _LIBCPP_INLINE_VISIBILITY bool failed() const _NOEXCEPT {return __sbuf_ == 0;} 106492b5940fSHoward Hinnant 1065b5c63a2eSHoward Hinnant#if !defined(__APPLE__) || \ 1066b5c63a2eSHoward Hinnant (defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && __MAC_OS_X_VERSION_MIN_REQUIRED > __MAC_10_8) || \ 1067b5c63a2eSHoward Hinnant (defined(__IPHONE_OS_VERSION_MIN_REQUIRED) && __IPHONE_OS_VERSION_MIN_REQUIRED > __IPHONE_6_0) 1068b5c63a2eSHoward Hinnant 106992b5940fSHoward Hinnant template <class _Ch, class _Tr> 107092b5940fSHoward Hinnant friend 107192b5940fSHoward Hinnant _LIBCPP_HIDDEN 107292b5940fSHoward Hinnant ostreambuf_iterator<_Ch, _Tr> 107392b5940fSHoward Hinnant __pad_and_output(ostreambuf_iterator<_Ch, _Tr> __s, 107492b5940fSHoward Hinnant const _Ch* __ob, const _Ch* __op, const _Ch* __oe, 107592b5940fSHoward Hinnant ios_base& __iob, _Ch __fl); 1076b5c63a2eSHoward Hinnant#endif 10773e519524SHoward Hinnant}; 10783e519524SHoward Hinnant 10793e519524SHoward Hinnanttemplate <class _Iter> 1080e2f2d1edSEric Fiselierclass _LIBCPP_TEMPLATE_VIS move_iterator 10813e519524SHoward Hinnant{ 10823e519524SHoward Hinnantprivate: 10833e519524SHoward Hinnant _Iter __i; 10843e519524SHoward Hinnantpublic: 10853e519524SHoward Hinnant typedef _Iter iterator_type; 10863e519524SHoward Hinnant typedef typename iterator_traits<iterator_type>::iterator_category iterator_category; 10873e519524SHoward Hinnant typedef typename iterator_traits<iterator_type>::value_type value_type; 10883e519524SHoward Hinnant typedef typename iterator_traits<iterator_type>::difference_type difference_type; 108905333fc8SMarshall Clow typedef iterator_type pointer; 1090046492b9SEric Fiselier#ifndef _LIBCPP_CXX03_LANG 1091906c5085SEric Fiselier typedef typename iterator_traits<iterator_type>::reference __reference; 1092906c5085SEric Fiselier typedef typename conditional< 1093906c5085SEric Fiselier is_reference<__reference>::value, 1094906c5085SEric Fiselier typename remove_reference<__reference>::type&&, 1095906c5085SEric Fiselier __reference 1096906c5085SEric Fiselier >::type reference; 10973e519524SHoward Hinnant#else 10983e519524SHoward Hinnant typedef typename iterator_traits<iterator_type>::reference reference; 10993e519524SHoward Hinnant#endif 11003e519524SHoward Hinnant 1101720ef472SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 1102720ef472SMarshall Clow move_iterator() : __i() {} 1103720ef472SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 1104720ef472SMarshall Clow explicit move_iterator(_Iter __x) : __i(__x) {} 1105720ef472SMarshall Clow template <class _Up> 1106720ef472SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 1107720ef472SMarshall Clow move_iterator(const move_iterator<_Up>& __u) : __i(__u.base()) {} 1108720ef472SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 _Iter base() const {return __i;} 1109720ef472SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 1110720ef472SMarshall Clow reference operator*() const { return static_cast<reference>(*__i); } 1111720ef472SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 1112720ef472SMarshall Clow pointer operator->() const { return __i;} 1113720ef472SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 1114720ef472SMarshall Clow move_iterator& operator++() {++__i; return *this;} 1115720ef472SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 1116720ef472SMarshall Clow move_iterator operator++(int) {move_iterator __tmp(*this); ++__i; return __tmp;} 1117720ef472SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 1118720ef472SMarshall Clow move_iterator& operator--() {--__i; return *this;} 1119720ef472SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 1120720ef472SMarshall Clow move_iterator operator--(int) {move_iterator __tmp(*this); --__i; return __tmp;} 1121720ef472SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 1122720ef472SMarshall Clow move_iterator operator+ (difference_type __n) const {return move_iterator(__i + __n);} 1123720ef472SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 1124720ef472SMarshall Clow move_iterator& operator+=(difference_type __n) {__i += __n; return *this;} 1125720ef472SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 1126720ef472SMarshall Clow move_iterator operator- (difference_type __n) const {return move_iterator(__i - __n);} 1127720ef472SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 1128720ef472SMarshall Clow move_iterator& operator-=(difference_type __n) {__i -= __n; return *this;} 1129720ef472SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 1130720ef472SMarshall Clow reference operator[](difference_type __n) const { return static_cast<reference>(__i[__n]); } 11313e519524SHoward Hinnant}; 11323e519524SHoward Hinnant 11333e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2> 1134720ef472SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 11353e519524SHoward Hinnantbool 11363e519524SHoward Hinnantoperator==(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y) 11373e519524SHoward Hinnant{ 11383e519524SHoward Hinnant return __x.base() == __y.base(); 11393e519524SHoward Hinnant} 11403e519524SHoward Hinnant 11413e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2> 1142720ef472SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 11433e519524SHoward Hinnantbool 11443e519524SHoward Hinnantoperator<(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y) 11453e519524SHoward Hinnant{ 11463e519524SHoward Hinnant return __x.base() < __y.base(); 11473e519524SHoward Hinnant} 11483e519524SHoward Hinnant 11493e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2> 1150720ef472SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 11513e519524SHoward Hinnantbool 11523e519524SHoward Hinnantoperator!=(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y) 11533e519524SHoward Hinnant{ 11543e519524SHoward Hinnant return __x.base() != __y.base(); 11553e519524SHoward Hinnant} 11563e519524SHoward Hinnant 11573e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2> 1158720ef472SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 11593e519524SHoward Hinnantbool 11603e519524SHoward Hinnantoperator>(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y) 11613e519524SHoward Hinnant{ 11623e519524SHoward Hinnant return __x.base() > __y.base(); 11633e519524SHoward Hinnant} 11643e519524SHoward Hinnant 11653e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2> 1166720ef472SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 11673e519524SHoward Hinnantbool 11683e519524SHoward Hinnantoperator>=(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y) 11693e519524SHoward Hinnant{ 11703e519524SHoward Hinnant return __x.base() >= __y.base(); 11713e519524SHoward Hinnant} 11723e519524SHoward Hinnant 11733e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2> 1174720ef472SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 11753e519524SHoward Hinnantbool 11763e519524SHoward Hinnantoperator<=(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y) 11773e519524SHoward Hinnant{ 11783e519524SHoward Hinnant return __x.base() <= __y.base(); 11793e519524SHoward Hinnant} 11803e519524SHoward Hinnant 11812ee83725SMarshall Clow#ifndef _LIBCPP_CXX03_LANG 1182947ce6b5SMarshall Clowtemplate <class _Iter1, class _Iter2> 1183720ef472SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 1184947ce6b5SMarshall Clowauto 1185947ce6b5SMarshall Clowoperator-(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y) 1186947ce6b5SMarshall Clow-> decltype(__x.base() - __y.base()) 1187947ce6b5SMarshall Clow{ 1188947ce6b5SMarshall Clow return __x.base() - __y.base(); 1189947ce6b5SMarshall Clow} 1190947ce6b5SMarshall Clow#else 11913e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2> 11923e519524SHoward Hinnantinline _LIBCPP_INLINE_VISIBILITY 11933e519524SHoward Hinnanttypename move_iterator<_Iter1>::difference_type 11943e519524SHoward Hinnantoperator-(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y) 11953e519524SHoward Hinnant{ 11963e519524SHoward Hinnant return __x.base() - __y.base(); 11973e519524SHoward Hinnant} 1198947ce6b5SMarshall Clow#endif 11993e519524SHoward Hinnant 12003e519524SHoward Hinnanttemplate <class _Iter> 1201720ef472SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 12023e519524SHoward Hinnantmove_iterator<_Iter> 12033e519524SHoward Hinnantoperator+(typename move_iterator<_Iter>::difference_type __n, const move_iterator<_Iter>& __x) 12043e519524SHoward Hinnant{ 12053e519524SHoward Hinnant return move_iterator<_Iter>(__x.base() + __n); 12063e519524SHoward Hinnant} 12073e519524SHoward Hinnant 12083e519524SHoward Hinnanttemplate <class _Iter> 1209720ef472SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 12103e519524SHoward Hinnantmove_iterator<_Iter> 121154c83368SMarshall Clowmake_move_iterator(_Iter __i) 12123e519524SHoward Hinnant{ 12133e519524SHoward Hinnant return move_iterator<_Iter>(__i); 12143e519524SHoward Hinnant} 12153e519524SHoward Hinnant 12163e519524SHoward Hinnant// __wrap_iter 12173e519524SHoward Hinnant 12183e519524SHoward Hinnanttemplate <class _Iter> class __wrap_iter; 12193e519524SHoward Hinnant 12203e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2> 12219cad5025SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG 12223e519524SHoward Hinnantbool 122314bd0bf0SEric Fiselieroperator==(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT_DEBUG; 12243e519524SHoward Hinnant 12253e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2> 12269cad5025SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG 12273e519524SHoward Hinnantbool 122814bd0bf0SEric Fiselieroperator<(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT_DEBUG; 12293e519524SHoward Hinnant 12303e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2> 12319cad5025SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG 12323e519524SHoward Hinnantbool 123314bd0bf0SEric Fiselieroperator!=(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT_DEBUG; 12343e519524SHoward Hinnant 12353e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2> 12369cad5025SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG 12373e519524SHoward Hinnantbool 123814bd0bf0SEric Fiselieroperator>(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT_DEBUG; 12393e519524SHoward Hinnant 12403e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2> 12419cad5025SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG 12423e519524SHoward Hinnantbool 124314bd0bf0SEric Fiselieroperator>=(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT_DEBUG; 12443e519524SHoward Hinnant 12453e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2> 12469cad5025SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG 12473e519524SHoward Hinnantbool 124814bd0bf0SEric Fiselieroperator<=(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT_DEBUG; 12493e519524SHoward Hinnant 12502ee83725SMarshall Clow#ifndef _LIBCPP_CXX03_LANG 1251947ce6b5SMarshall Clowtemplate <class _Iter1, class _Iter2> 12529cad5025SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG 1253947ce6b5SMarshall Clowauto 125414bd0bf0SEric Fiselieroperator-(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT_DEBUG 1255947ce6b5SMarshall Clow-> decltype(__x.base() - __y.base()); 1256947ce6b5SMarshall Clow#else 12573e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2> 1258aeb85680SHoward Hinnant_LIBCPP_INLINE_VISIBILITY 12593e519524SHoward Hinnanttypename __wrap_iter<_Iter1>::difference_type 126014bd0bf0SEric Fiselieroperator-(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT_DEBUG; 1261947ce6b5SMarshall Clow#endif 12623e519524SHoward Hinnant 12633e519524SHoward Hinnanttemplate <class _Iter> 12649cad5025SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG 12653e519524SHoward Hinnant__wrap_iter<_Iter> 126614bd0bf0SEric Fiselieroperator+(typename __wrap_iter<_Iter>::difference_type, __wrap_iter<_Iter>) _NOEXCEPT_DEBUG; 12673e519524SHoward Hinnant 1268aeb85680SHoward Hinnanttemplate <class _Ip, class _Op> _Op _LIBCPP_INLINE_VISIBILITY copy(_Ip, _Ip, _Op); 1269aeb85680SHoward Hinnanttemplate <class _B1, class _B2> _B2 _LIBCPP_INLINE_VISIBILITY copy_backward(_B1, _B1, _B2); 1270aeb85680SHoward Hinnanttemplate <class _Ip, class _Op> _Op _LIBCPP_INLINE_VISIBILITY move(_Ip, _Ip, _Op); 1271aeb85680SHoward Hinnanttemplate <class _B1, class _B2> _B2 _LIBCPP_INLINE_VISIBILITY move_backward(_B1, _B1, _B2); 12723e519524SHoward Hinnant 127314bd0bf0SEric Fiselier#if _LIBCPP_DEBUG_LEVEL < 2 127414bd0bf0SEric Fiselier 12753e519524SHoward Hinnanttemplate <class _Tp> 12769cad5025SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG 12773e519524SHoward Hinnanttypename enable_if 12783e519524SHoward Hinnant< 1279ca740483SHoward Hinnant is_trivially_copy_assignable<_Tp>::value, 12803e519524SHoward Hinnant _Tp* 12813e519524SHoward Hinnant>::type 12823e519524SHoward Hinnant__unwrap_iter(__wrap_iter<_Tp*>); 12833e519524SHoward Hinnant 128414bd0bf0SEric Fiselier#else 128514bd0bf0SEric Fiselier 128614bd0bf0SEric Fiseliertemplate <class _Tp> 12879cad5025SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG 128814bd0bf0SEric Fiseliertypename enable_if 128914bd0bf0SEric Fiselier< 129014bd0bf0SEric Fiselier is_trivially_copy_assignable<_Tp>::value, 129114bd0bf0SEric Fiselier __wrap_iter<_Tp*> 129214bd0bf0SEric Fiselier>::type 129314bd0bf0SEric Fiselier__unwrap_iter(__wrap_iter<_Tp*> __i); 129414bd0bf0SEric Fiselier 129514bd0bf0SEric Fiselier#endif 129614bd0bf0SEric Fiselier 12973e519524SHoward Hinnanttemplate <class _Iter> 12983e519524SHoward Hinnantclass __wrap_iter 12993e519524SHoward Hinnant{ 13003e519524SHoward Hinnantpublic: 13013e519524SHoward Hinnant typedef _Iter iterator_type; 13023e519524SHoward Hinnant typedef typename iterator_traits<iterator_type>::iterator_category iterator_category; 13033e519524SHoward Hinnant typedef typename iterator_traits<iterator_type>::value_type value_type; 13043e519524SHoward Hinnant typedef typename iterator_traits<iterator_type>::difference_type difference_type; 13053e519524SHoward Hinnant typedef typename iterator_traits<iterator_type>::pointer pointer; 13063e519524SHoward Hinnant typedef typename iterator_traits<iterator_type>::reference reference; 13073e519524SHoward Hinnantprivate: 13083e519524SHoward Hinnant iterator_type __i; 13093e519524SHoward Hinnantpublic: 13109cad5025SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG __wrap_iter() _NOEXCEPT_DEBUG 131107186a7dSMarshall Clow#if _LIBCPP_STD_VER > 11 131207186a7dSMarshall Clow : __i{} 131307186a7dSMarshall Clow#endif 1314c36bfc49SHoward Hinnant { 1315c36bfc49SHoward Hinnant#if _LIBCPP_DEBUG_LEVEL >= 2 1316c36bfc49SHoward Hinnant __get_db()->__insert_i(this); 1317c36bfc49SHoward Hinnant#endif 1318c36bfc49SHoward Hinnant } 13199cad5025SMarshall Clow template <class _Up> _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG 13209cad5025SMarshall Clow __wrap_iter(const __wrap_iter<_Up>& __u, 132114bd0bf0SEric Fiselier typename enable_if<is_convertible<_Up, iterator_type>::value>::type* = 0) _NOEXCEPT_DEBUG 1322f554add5SHoward Hinnant : __i(__u.base()) 1323f554add5SHoward Hinnant { 1324cec9af9eSHoward Hinnant#if _LIBCPP_DEBUG_LEVEL >= 2 1325f554add5SHoward Hinnant __get_db()->__iterator_copy(this, &__u); 1326f554add5SHoward Hinnant#endif 1327f554add5SHoward Hinnant } 1328cec9af9eSHoward Hinnant#if _LIBCPP_DEBUG_LEVEL >= 2 13299cad5025SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG 1330f554add5SHoward Hinnant __wrap_iter(const __wrap_iter& __x) 1331f554add5SHoward Hinnant : __i(__x.base()) 1332f554add5SHoward Hinnant { 1333f554add5SHoward Hinnant __get_db()->__iterator_copy(this, &__x); 1334f554add5SHoward Hinnant } 13359cad5025SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG 1336f554add5SHoward Hinnant __wrap_iter& operator=(const __wrap_iter& __x) 1337f554add5SHoward Hinnant { 1338f554add5SHoward Hinnant if (this != &__x) 1339f554add5SHoward Hinnant { 1340f554add5SHoward Hinnant __get_db()->__iterator_copy(this, &__x); 1341f554add5SHoward Hinnant __i = __x.__i; 1342f554add5SHoward Hinnant } 1343f554add5SHoward Hinnant return *this; 1344f554add5SHoward Hinnant } 13459cad5025SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG 1346f554add5SHoward Hinnant ~__wrap_iter() 1347f554add5SHoward Hinnant { 1348f554add5SHoward Hinnant __get_db()->__erase_i(this); 1349f554add5SHoward Hinnant } 1350f554add5SHoward Hinnant#endif 13519cad5025SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG reference operator*() const _NOEXCEPT_DEBUG 1352f554add5SHoward Hinnant { 1353cec9af9eSHoward Hinnant#if _LIBCPP_DEBUG_LEVEL >= 2 1354f554add5SHoward Hinnant _LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this), 1355f554add5SHoward Hinnant "Attempted to dereference a non-dereferenceable iterator"); 1356cec9af9eSHoward Hinnant#endif 1357f554add5SHoward Hinnant return *__i; 1358f554add5SHoward Hinnant } 13599cad5025SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG pointer operator->() const _NOEXCEPT_DEBUG 13603ec1f00bSHoward Hinnant { 13613ec1f00bSHoward Hinnant#if _LIBCPP_DEBUG_LEVEL >= 2 13623ec1f00bSHoward Hinnant _LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this), 13633ec1f00bSHoward Hinnant "Attempted to dereference a non-dereferenceable iterator"); 13643ec1f00bSHoward Hinnant#endif 136505333fc8SMarshall Clow return (pointer)_VSTD::addressof(*__i); 13663ec1f00bSHoward Hinnant } 13679cad5025SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG __wrap_iter& operator++() _NOEXCEPT_DEBUG 1368f554add5SHoward Hinnant { 1369cec9af9eSHoward Hinnant#if _LIBCPP_DEBUG_LEVEL >= 2 1370f554add5SHoward Hinnant _LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this), 1371f554add5SHoward Hinnant "Attempted to increment non-incrementable iterator"); 1372cec9af9eSHoward Hinnant#endif 1373f554add5SHoward Hinnant ++__i; 1374f554add5SHoward Hinnant return *this; 1375f554add5SHoward Hinnant } 13769cad5025SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG __wrap_iter operator++(int) _NOEXCEPT_DEBUG 1377f554add5SHoward Hinnant {__wrap_iter __tmp(*this); ++(*this); return __tmp;} 13784ce0a916SMarshall Clow 13794ce0a916SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG __wrap_iter& operator--() _NOEXCEPT_DEBUG 1380f554add5SHoward Hinnant { 1381cec9af9eSHoward Hinnant#if _LIBCPP_DEBUG_LEVEL >= 2 1382f554add5SHoward Hinnant _LIBCPP_ASSERT(__get_const_db()->__decrementable(this), 1383f554add5SHoward Hinnant "Attempted to decrement non-decrementable iterator"); 1384cec9af9eSHoward Hinnant#endif 1385f554add5SHoward Hinnant --__i; 1386f554add5SHoward Hinnant return *this; 1387f554add5SHoward Hinnant } 13889cad5025SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG __wrap_iter operator--(int) _NOEXCEPT_DEBUG 1389f554add5SHoward Hinnant {__wrap_iter __tmp(*this); --(*this); return __tmp;} 13909cad5025SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG __wrap_iter operator+ (difference_type __n) const _NOEXCEPT_DEBUG 1391f554add5SHoward Hinnant {__wrap_iter __w(*this); __w += __n; return __w;} 13929cad5025SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG __wrap_iter& operator+=(difference_type __n) _NOEXCEPT_DEBUG 1393f554add5SHoward Hinnant { 1394cec9af9eSHoward Hinnant#if _LIBCPP_DEBUG_LEVEL >= 2 1395f554add5SHoward Hinnant _LIBCPP_ASSERT(__get_const_db()->__addable(this, __n), 1396f554add5SHoward Hinnant "Attempted to add/subtract iterator outside of valid range"); 1397cec9af9eSHoward Hinnant#endif 1398f554add5SHoward Hinnant __i += __n; 1399f554add5SHoward Hinnant return *this; 1400f554add5SHoward Hinnant } 14019cad5025SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG __wrap_iter operator- (difference_type __n) const _NOEXCEPT_DEBUG 1402f554add5SHoward Hinnant {return *this + (-__n);} 14039cad5025SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG __wrap_iter& operator-=(difference_type __n) _NOEXCEPT_DEBUG 1404f554add5SHoward Hinnant {*this += -__n; return *this;} 14059cad5025SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG reference operator[](difference_type __n) const _NOEXCEPT_DEBUG 1406f554add5SHoward Hinnant { 1407cec9af9eSHoward Hinnant#if _LIBCPP_DEBUG_LEVEL >= 2 1408f554add5SHoward Hinnant _LIBCPP_ASSERT(__get_const_db()->__subscriptable(this, __n), 1409f554add5SHoward Hinnant "Attempted to subscript iterator outside of valid range"); 1410cec9af9eSHoward Hinnant#endif 1411f554add5SHoward Hinnant return __i[__n]; 1412f554add5SHoward Hinnant } 14133e519524SHoward Hinnant 14149cad5025SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG iterator_type base() const _NOEXCEPT_DEBUG {return __i;} 14153e519524SHoward Hinnant 14163e519524SHoward Hinnantprivate: 1417cec9af9eSHoward Hinnant#if _LIBCPP_DEBUG_LEVEL >= 2 14189cad5025SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG __wrap_iter(const void* __p, iterator_type __x) : __i(__x) 1419f554add5SHoward Hinnant { 1420f554add5SHoward Hinnant __get_db()->__insert_ic(this, __p); 1421f554add5SHoward Hinnant } 1422fc88dbd2SHoward Hinnant#else 14239cad5025SMarshall Clow _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG __wrap_iter(iterator_type __x) _NOEXCEPT_DEBUG : __i(__x) {} 1424f554add5SHoward Hinnant#endif 14253e519524SHoward Hinnant 14263e519524SHoward Hinnant template <class _Up> friend class __wrap_iter; 14273e519524SHoward Hinnant template <class _CharT, class _Traits, class _Alloc> friend class basic_string; 1428e2f2d1edSEric Fiselier template <class _Tp, class _Alloc> friend class _LIBCPP_TEMPLATE_VIS vector; 14299cad5025SMarshall Clow template <class _Tp, ptrdiff_t> friend class _LIBCPP_TEMPLATE_VIS span; 14303e519524SHoward Hinnant 14313e519524SHoward Hinnant template <class _Iter1, class _Iter2> 14329cad5025SMarshall Clow _LIBCPP_CONSTEXPR_IF_NODEBUG friend 14333e519524SHoward Hinnant bool 143414bd0bf0SEric Fiselier operator==(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT_DEBUG; 14353e519524SHoward Hinnant 14363e519524SHoward Hinnant template <class _Iter1, class _Iter2> 14379cad5025SMarshall Clow _LIBCPP_CONSTEXPR_IF_NODEBUG friend 14383e519524SHoward Hinnant bool 143914bd0bf0SEric Fiselier operator<(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT_DEBUG; 14403e519524SHoward Hinnant 14413e519524SHoward Hinnant template <class _Iter1, class _Iter2> 14429cad5025SMarshall Clow _LIBCPP_CONSTEXPR_IF_NODEBUG friend 14433e519524SHoward Hinnant bool 144414bd0bf0SEric Fiselier operator!=(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT_DEBUG; 14453e519524SHoward Hinnant 14463e519524SHoward Hinnant template <class _Iter1, class _Iter2> 14479cad5025SMarshall Clow _LIBCPP_CONSTEXPR_IF_NODEBUG friend 14483e519524SHoward Hinnant bool 144914bd0bf0SEric Fiselier operator>(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT_DEBUG; 14503e519524SHoward Hinnant 14513e519524SHoward Hinnant template <class _Iter1, class _Iter2> 14529cad5025SMarshall Clow _LIBCPP_CONSTEXPR_IF_NODEBUG friend 14533e519524SHoward Hinnant bool 145414bd0bf0SEric Fiselier operator>=(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT_DEBUG; 14553e519524SHoward Hinnant 14563e519524SHoward Hinnant template <class _Iter1, class _Iter2> 14579cad5025SMarshall Clow _LIBCPP_CONSTEXPR_IF_NODEBUG friend 14583e519524SHoward Hinnant bool 145914bd0bf0SEric Fiselier operator<=(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT_DEBUG; 14603e519524SHoward Hinnant 14612ee83725SMarshall Clow#ifndef _LIBCPP_CXX03_LANG 1462947ce6b5SMarshall Clow template <class _Iter1, class _Iter2> 14639cad5025SMarshall Clow _LIBCPP_CONSTEXPR_IF_NODEBUG friend 1464947ce6b5SMarshall Clow auto 146514bd0bf0SEric Fiselier operator-(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT_DEBUG 1466947ce6b5SMarshall Clow -> decltype(__x.base() - __y.base()); 1467947ce6b5SMarshall Clow#else 14683e519524SHoward Hinnant template <class _Iter1, class _Iter2> 14699cad5025SMarshall Clow _LIBCPP_CONSTEXPR_IF_NODEBUG friend 14703e519524SHoward Hinnant typename __wrap_iter<_Iter1>::difference_type 147114bd0bf0SEric Fiselier operator-(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT_DEBUG; 1472947ce6b5SMarshall Clow#endif 14733e519524SHoward Hinnant 14743e519524SHoward Hinnant template <class _Iter1> 14759cad5025SMarshall Clow _LIBCPP_CONSTEXPR_IF_NODEBUG friend 14763e519524SHoward Hinnant __wrap_iter<_Iter1> 147714bd0bf0SEric Fiselier operator+(typename __wrap_iter<_Iter1>::difference_type, __wrap_iter<_Iter1>) _NOEXCEPT_DEBUG; 14783e519524SHoward Hinnant 1479c003db1fSHoward Hinnant template <class _Ip, class _Op> friend _Op copy(_Ip, _Ip, _Op); 14803e519524SHoward Hinnant template <class _B1, class _B2> friend _B2 copy_backward(_B1, _B1, _B2); 1481c003db1fSHoward Hinnant template <class _Ip, class _Op> friend _Op move(_Ip, _Ip, _Op); 14823e519524SHoward Hinnant template <class _B1, class _B2> friend _B2 move_backward(_B1, _B1, _B2); 14833e519524SHoward Hinnant 148414bd0bf0SEric Fiselier#if _LIBCPP_DEBUG_LEVEL < 2 14853e519524SHoward Hinnant template <class _Tp> 14869cad5025SMarshall Clow _LIBCPP_CONSTEXPR_IF_NODEBUG friend 14873e519524SHoward Hinnant typename enable_if 14883e519524SHoward Hinnant < 1489ca740483SHoward Hinnant is_trivially_copy_assignable<_Tp>::value, 14903e519524SHoward Hinnant _Tp* 14913e519524SHoward Hinnant >::type 14923e519524SHoward Hinnant __unwrap_iter(__wrap_iter<_Tp*>); 149314bd0bf0SEric Fiselier#else 149414bd0bf0SEric Fiselier template <class _Tp> 14959cad5025SMarshall Clow inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG 149614bd0bf0SEric Fiselier typename enable_if 149714bd0bf0SEric Fiselier < 149814bd0bf0SEric Fiselier is_trivially_copy_assignable<_Tp>::value, 149914bd0bf0SEric Fiselier __wrap_iter<_Tp*> 150014bd0bf0SEric Fiselier >::type 150114bd0bf0SEric Fiselier __unwrap_iter(__wrap_iter<_Tp*> __i); 150214bd0bf0SEric Fiselier#endif 15033e519524SHoward Hinnant}; 15043e519524SHoward Hinnant 15053e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2> 15069cad5025SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG 15073e519524SHoward Hinnantbool 150814bd0bf0SEric Fiselieroperator==(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT_DEBUG 15093e519524SHoward Hinnant{ 15103e519524SHoward Hinnant return __x.base() == __y.base(); 15113e519524SHoward Hinnant} 15123e519524SHoward Hinnant 15133e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2> 15149cad5025SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG 15153e519524SHoward Hinnantbool 151614bd0bf0SEric Fiselieroperator<(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT_DEBUG 15173e519524SHoward Hinnant{ 1518cec9af9eSHoward Hinnant#if _LIBCPP_DEBUG_LEVEL >= 2 151942a3046eSHoward Hinnant _LIBCPP_ASSERT(__get_const_db()->__less_than_comparable(&__x, &__y), 1520f554add5SHoward Hinnant "Attempted to compare incomparable iterators"); 1521cec9af9eSHoward Hinnant#endif 15223e519524SHoward Hinnant return __x.base() < __y.base(); 15233e519524SHoward Hinnant} 15243e519524SHoward Hinnant 15253e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2> 15269cad5025SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG 15273e519524SHoward Hinnantbool 152814bd0bf0SEric Fiselieroperator!=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT_DEBUG 15293e519524SHoward Hinnant{ 1530f554add5SHoward Hinnant return !(__x == __y); 15313e519524SHoward Hinnant} 15323e519524SHoward Hinnant 15333e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2> 15349cad5025SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG 15353e519524SHoward Hinnantbool 153614bd0bf0SEric Fiselieroperator>(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT_DEBUG 15373e519524SHoward Hinnant{ 1538f554add5SHoward Hinnant return __y < __x; 15393e519524SHoward Hinnant} 15403e519524SHoward Hinnant 15413e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2> 15429cad5025SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG 15433e519524SHoward Hinnantbool 154414bd0bf0SEric Fiselieroperator>=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT_DEBUG 15453e519524SHoward Hinnant{ 1546f554add5SHoward Hinnant return !(__x < __y); 15473e519524SHoward Hinnant} 15483e519524SHoward Hinnant 15493e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2> 15509cad5025SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG 15513e519524SHoward Hinnantbool 155214bd0bf0SEric Fiselieroperator<=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT_DEBUG 15533e519524SHoward Hinnant{ 1554f554add5SHoward Hinnant return !(__y < __x); 15553e519524SHoward Hinnant} 15563e519524SHoward Hinnant 15576e551ae1SHoward Hinnanttemplate <class _Iter1> 15589cad5025SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG 15596e551ae1SHoward Hinnantbool 156014bd0bf0SEric Fiselieroperator!=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEXCEPT_DEBUG 15616e551ae1SHoward Hinnant{ 15626e551ae1SHoward Hinnant return !(__x == __y); 15636e551ae1SHoward Hinnant} 15646e551ae1SHoward Hinnant 15656e551ae1SHoward Hinnanttemplate <class _Iter1> 15669cad5025SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG 15676e551ae1SHoward Hinnantbool 156814bd0bf0SEric Fiselieroperator>(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEXCEPT_DEBUG 15696e551ae1SHoward Hinnant{ 15706e551ae1SHoward Hinnant return __y < __x; 15716e551ae1SHoward Hinnant} 15726e551ae1SHoward Hinnant 15736e551ae1SHoward Hinnanttemplate <class _Iter1> 15749cad5025SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG 15756e551ae1SHoward Hinnantbool 157614bd0bf0SEric Fiselieroperator>=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEXCEPT_DEBUG 15776e551ae1SHoward Hinnant{ 15786e551ae1SHoward Hinnant return !(__x < __y); 15796e551ae1SHoward Hinnant} 15806e551ae1SHoward Hinnant 15816e551ae1SHoward Hinnanttemplate <class _Iter1> 15829cad5025SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG 15836e551ae1SHoward Hinnantbool 158414bd0bf0SEric Fiselieroperator<=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEXCEPT_DEBUG 15856e551ae1SHoward Hinnant{ 15866e551ae1SHoward Hinnant return !(__y < __x); 15876e551ae1SHoward Hinnant} 15886e551ae1SHoward Hinnant 15892ee83725SMarshall Clow#ifndef _LIBCPP_CXX03_LANG 1590947ce6b5SMarshall Clowtemplate <class _Iter1, class _Iter2> 15919cad5025SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG 1592947ce6b5SMarshall Clowauto 159314bd0bf0SEric Fiselieroperator-(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT_DEBUG 1594947ce6b5SMarshall Clow-> decltype(__x.base() - __y.base()) 1595947ce6b5SMarshall Clow{ 1596947ce6b5SMarshall Clow#if _LIBCPP_DEBUG_LEVEL >= 2 1597947ce6b5SMarshall Clow _LIBCPP_ASSERT(__get_const_db()->__less_than_comparable(&__x, &__y), 1598947ce6b5SMarshall Clow "Attempted to subtract incompatible iterators"); 1599947ce6b5SMarshall Clow#endif 1600947ce6b5SMarshall Clow return __x.base() - __y.base(); 1601947ce6b5SMarshall Clow} 1602947ce6b5SMarshall Clow#else 16033e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2> 16049cad5025SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG 16053e519524SHoward Hinnanttypename __wrap_iter<_Iter1>::difference_type 160614bd0bf0SEric Fiselieroperator-(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT_DEBUG 16073e519524SHoward Hinnant{ 1608cec9af9eSHoward Hinnant#if _LIBCPP_DEBUG_LEVEL >= 2 160942a3046eSHoward Hinnant _LIBCPP_ASSERT(__get_const_db()->__less_than_comparable(&__x, &__y), 1610f554add5SHoward Hinnant "Attempted to subtract incompatible iterators"); 1611cec9af9eSHoward Hinnant#endif 16123e519524SHoward Hinnant return __x.base() - __y.base(); 16133e519524SHoward Hinnant} 1614947ce6b5SMarshall Clow#endif 16153e519524SHoward Hinnant 16163e519524SHoward Hinnanttemplate <class _Iter> 16179cad5025SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG 16183e519524SHoward Hinnant__wrap_iter<_Iter> 16193e519524SHoward Hinnantoperator+(typename __wrap_iter<_Iter>::difference_type __n, 162014bd0bf0SEric Fiselier __wrap_iter<_Iter> __x) _NOEXCEPT_DEBUG 16213e519524SHoward Hinnant{ 1622f554add5SHoward Hinnant __x += __n; 1623f554add5SHoward Hinnant return __x; 16243e519524SHoward Hinnant} 16253e519524SHoward Hinnant 162676b4afc0SMarshall Clowtemplate <class _Iter> 162776b4afc0SMarshall Clowstruct __libcpp_is_trivial_iterator 162876b4afc0SMarshall Clow : public _LIBCPP_BOOL_CONSTANT(is_pointer<_Iter>::value) {}; 162976b4afc0SMarshall Clow 163076b4afc0SMarshall Clowtemplate <class _Iter> 163176b4afc0SMarshall Clowstruct __libcpp_is_trivial_iterator<move_iterator<_Iter> > 163276b4afc0SMarshall Clow : public _LIBCPP_BOOL_CONSTANT(__libcpp_is_trivial_iterator<_Iter>::value) {}; 163376b4afc0SMarshall Clow 163476b4afc0SMarshall Clowtemplate <class _Iter> 163576b4afc0SMarshall Clowstruct __libcpp_is_trivial_iterator<reverse_iterator<_Iter> > 163676b4afc0SMarshall Clow : public _LIBCPP_BOOL_CONSTANT(__libcpp_is_trivial_iterator<_Iter>::value) {}; 163776b4afc0SMarshall Clow 163876b4afc0SMarshall Clowtemplate <class _Iter> 163976b4afc0SMarshall Clowstruct __libcpp_is_trivial_iterator<__wrap_iter<_Iter> > 164076b4afc0SMarshall Clow : public _LIBCPP_BOOL_CONSTANT(__libcpp_is_trivial_iterator<_Iter>::value) {}; 164176b4afc0SMarshall Clow 164276b4afc0SMarshall Clow 16433772a46aSMarshall Clowtemplate <class _Tp, size_t _Np> 16446c3f5ffbSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 16453772a46aSMarshall Clow_Tp* 16463772a46aSMarshall Clowbegin(_Tp (&__array)[_Np]) 16473772a46aSMarshall Clow{ 16483772a46aSMarshall Clow return __array; 16493772a46aSMarshall Clow} 16503772a46aSMarshall Clow 16513772a46aSMarshall Clowtemplate <class _Tp, size_t _Np> 16526c3f5ffbSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 16533772a46aSMarshall Clow_Tp* 16543772a46aSMarshall Clowend(_Tp (&__array)[_Np]) 16553772a46aSMarshall Clow{ 16563772a46aSMarshall Clow return __array + _Np; 16573772a46aSMarshall Clow} 16583772a46aSMarshall Clow 165954613ab4SEric Fiselier#if !defined(_LIBCPP_CXX03_LANG) 1660c66a611bSMarshall Clow 1661c003db1fSHoward Hinnanttemplate <class _Cp> 1662020b623aSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 16633e519524SHoward Hinnantauto 1664c003db1fSHoward Hinnantbegin(_Cp& __c) -> decltype(__c.begin()) 16653e519524SHoward Hinnant{ 16663e519524SHoward Hinnant return __c.begin(); 16673e519524SHoward Hinnant} 16683e519524SHoward Hinnant 1669c003db1fSHoward Hinnanttemplate <class _Cp> 1670020b623aSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 16713e519524SHoward Hinnantauto 1672c003db1fSHoward Hinnantbegin(const _Cp& __c) -> decltype(__c.begin()) 16733e519524SHoward Hinnant{ 16743e519524SHoward Hinnant return __c.begin(); 16753e519524SHoward Hinnant} 16763e519524SHoward Hinnant 1677c003db1fSHoward Hinnanttemplate <class _Cp> 1678020b623aSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 16793e519524SHoward Hinnantauto 1680c003db1fSHoward Hinnantend(_Cp& __c) -> decltype(__c.end()) 16813e519524SHoward Hinnant{ 16823e519524SHoward Hinnant return __c.end(); 16833e519524SHoward Hinnant} 16843e519524SHoward Hinnant 1685c003db1fSHoward Hinnanttemplate <class _Cp> 1686020b623aSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 16873e519524SHoward Hinnantauto 1688c003db1fSHoward Hinnantend(const _Cp& __c) -> decltype(__c.end()) 16893e519524SHoward Hinnant{ 16903e519524SHoward Hinnant return __c.end(); 16913e519524SHoward Hinnant} 16923e519524SHoward Hinnant 16931e548c72SMarshall Clow#if _LIBCPP_STD_VER > 11 16941e548c72SMarshall Clow 16953772a46aSMarshall Clowtemplate <class _Tp, size_t _Np> 1696020b623aSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 16973772a46aSMarshall Clowreverse_iterator<_Tp*> rbegin(_Tp (&__array)[_Np]) 16983772a46aSMarshall Clow{ 16993772a46aSMarshall Clow return reverse_iterator<_Tp*>(__array + _Np); 17003772a46aSMarshall Clow} 17013772a46aSMarshall Clow 17023772a46aSMarshall Clowtemplate <class _Tp, size_t _Np> 1703020b623aSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 17043772a46aSMarshall Clowreverse_iterator<_Tp*> rend(_Tp (&__array)[_Np]) 17053772a46aSMarshall Clow{ 17063772a46aSMarshall Clow return reverse_iterator<_Tp*>(__array); 17073772a46aSMarshall Clow} 17083772a46aSMarshall Clow 17093772a46aSMarshall Clowtemplate <class _Ep> 1710020b623aSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 17113772a46aSMarshall Clowreverse_iterator<const _Ep*> rbegin(initializer_list<_Ep> __il) 17123772a46aSMarshall Clow{ 17133772a46aSMarshall Clow return reverse_iterator<const _Ep*>(__il.end()); 17143772a46aSMarshall Clow} 17153772a46aSMarshall Clow 17163772a46aSMarshall Clowtemplate <class _Ep> 1717020b623aSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 17183772a46aSMarshall Clowreverse_iterator<const _Ep*> rend(initializer_list<_Ep> __il) 17193772a46aSMarshall Clow{ 17203772a46aSMarshall Clow return reverse_iterator<const _Ep*>(__il.begin()); 17213772a46aSMarshall Clow} 17223772a46aSMarshall Clow 17231e548c72SMarshall Clowtemplate <class _Cp> 17246c3f5ffbSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 17257725546aSMarshall Clowauto cbegin(const _Cp& __c) -> decltype(_VSTD::begin(__c)) 17261e548c72SMarshall Clow{ 17277725546aSMarshall Clow return _VSTD::begin(__c); 17281e548c72SMarshall Clow} 17291e548c72SMarshall Clow 17301e548c72SMarshall Clowtemplate <class _Cp> 17316c3f5ffbSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 17327725546aSMarshall Clowauto cend(const _Cp& __c) -> decltype(_VSTD::end(__c)) 17331e548c72SMarshall Clow{ 17347725546aSMarshall Clow return _VSTD::end(__c); 17351e548c72SMarshall Clow} 17361e548c72SMarshall Clow 17371e548c72SMarshall Clowtemplate <class _Cp> 1738020b623aSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 17391e548c72SMarshall Clowauto rbegin(_Cp& __c) -> decltype(__c.rbegin()) 17401e548c72SMarshall Clow{ 17411e548c72SMarshall Clow return __c.rbegin(); 17421e548c72SMarshall Clow} 17431e548c72SMarshall Clow 17441e548c72SMarshall Clowtemplate <class _Cp> 1745020b623aSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 17461e548c72SMarshall Clowauto rbegin(const _Cp& __c) -> decltype(__c.rbegin()) 17471e548c72SMarshall Clow{ 17481e548c72SMarshall Clow return __c.rbegin(); 17491e548c72SMarshall Clow} 17501e548c72SMarshall Clow 17511e548c72SMarshall Clowtemplate <class _Cp> 1752020b623aSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 17531e548c72SMarshall Clowauto rend(_Cp& __c) -> decltype(__c.rend()) 17541e548c72SMarshall Clow{ 17551e548c72SMarshall Clow return __c.rend(); 17561e548c72SMarshall Clow} 17571e548c72SMarshall Clow 17581e548c72SMarshall Clowtemplate <class _Cp> 1759020b623aSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 17601e548c72SMarshall Clowauto rend(const _Cp& __c) -> decltype(__c.rend()) 17611e548c72SMarshall Clow{ 17621e548c72SMarshall Clow return __c.rend(); 17631e548c72SMarshall Clow} 17641e548c72SMarshall Clow 17651e548c72SMarshall Clowtemplate <class _Cp> 1766020b623aSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 17677725546aSMarshall Clowauto crbegin(const _Cp& __c) -> decltype(_VSTD::rbegin(__c)) 17681e548c72SMarshall Clow{ 17697725546aSMarshall Clow return _VSTD::rbegin(__c); 17701e548c72SMarshall Clow} 17711e548c72SMarshall Clow 17721e548c72SMarshall Clowtemplate <class _Cp> 1773020b623aSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 17747725546aSMarshall Clowauto crend(const _Cp& __c) -> decltype(_VSTD::rend(__c)) 17751e548c72SMarshall Clow{ 17767725546aSMarshall Clow return _VSTD::rend(__c); 17771e548c72SMarshall Clow} 17781e548c72SMarshall Clow 17791e548c72SMarshall Clow#endif 17801e548c72SMarshall Clow 17811e548c72SMarshall Clow 178254613ab4SEric Fiselier#else // defined(_LIBCPP_CXX03_LANG) 17833e519524SHoward Hinnant 1784c003db1fSHoward Hinnanttemplate <class _Cp> 1785848a5374SHoward Hinnantinline _LIBCPP_INLINE_VISIBILITY 1786c003db1fSHoward Hinnanttypename _Cp::iterator 1787c003db1fSHoward Hinnantbegin(_Cp& __c) 17883e519524SHoward Hinnant{ 17893e519524SHoward Hinnant return __c.begin(); 17903e519524SHoward Hinnant} 17913e519524SHoward Hinnant 1792c003db1fSHoward Hinnanttemplate <class _Cp> 1793848a5374SHoward Hinnantinline _LIBCPP_INLINE_VISIBILITY 1794c003db1fSHoward Hinnanttypename _Cp::const_iterator 1795c003db1fSHoward Hinnantbegin(const _Cp& __c) 17963e519524SHoward Hinnant{ 17973e519524SHoward Hinnant return __c.begin(); 17983e519524SHoward Hinnant} 17993e519524SHoward Hinnant 1800c003db1fSHoward Hinnanttemplate <class _Cp> 1801848a5374SHoward Hinnantinline _LIBCPP_INLINE_VISIBILITY 1802c003db1fSHoward Hinnanttypename _Cp::iterator 1803c003db1fSHoward Hinnantend(_Cp& __c) 18043e519524SHoward Hinnant{ 18053e519524SHoward Hinnant return __c.end(); 18063e519524SHoward Hinnant} 18073e519524SHoward Hinnant 1808c003db1fSHoward Hinnanttemplate <class _Cp> 1809848a5374SHoward Hinnantinline _LIBCPP_INLINE_VISIBILITY 1810c003db1fSHoward Hinnanttypename _Cp::const_iterator 1811c003db1fSHoward Hinnantend(const _Cp& __c) 18123e519524SHoward Hinnant{ 18133e519524SHoward Hinnant return __c.end(); 18143e519524SHoward Hinnant} 18153e519524SHoward Hinnant 181654613ab4SEric Fiselier#endif // !defined(_LIBCPP_CXX03_LANG) 18173e519524SHoward Hinnant 1818ad755104SMarshall Clow#if _LIBCPP_STD_VER > 14 1819d1dcda19SMarshall Clow 1820d1dcda19SMarshall Clow// #if _LIBCPP_STD_VER > 11 1821d1dcda19SMarshall Clow// template <> 1822d1dcda19SMarshall Clow// struct _LIBCPP_TEMPLATE_VIS plus<void> 1823d1dcda19SMarshall Clow// { 1824d1dcda19SMarshall Clow// template <class _T1, class _T2> 1825d1dcda19SMarshall Clow// _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY 1826d1dcda19SMarshall Clow// auto operator()(_T1&& __t, _T2&& __u) const 1827d1dcda19SMarshall Clow// _NOEXCEPT_(noexcept(_VSTD::forward<_T1>(__t) + _VSTD::forward<_T2>(__u))) 1828d1dcda19SMarshall Clow// -> decltype (_VSTD::forward<_T1>(__t) + _VSTD::forward<_T2>(__u)) 1829d1dcda19SMarshall Clow// { return _VSTD::forward<_T1>(__t) + _VSTD::forward<_T2>(__u); } 1830d1dcda19SMarshall Clow// typedef void is_transparent; 1831d1dcda19SMarshall Clow// }; 1832d1dcda19SMarshall Clow// #endif 1833d1dcda19SMarshall Clow 183488d21343SMarshall Clowtemplate <class _Cont> 183525a7ba45SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY 1836d1dcda19SMarshall Clowconstexpr auto size(const _Cont& __c) 1837d1dcda19SMarshall Clow_NOEXCEPT_(noexcept(__c.size())) 1838d1dcda19SMarshall Clow-> decltype (__c.size()) 1839d1dcda19SMarshall Clow{ return __c.size(); } 1840ad755104SMarshall Clow 184188d21343SMarshall Clowtemplate <class _Tp, size_t _Sz> 184225a7ba45SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY 1843fd838227SEric Fiselierconstexpr size_t size(const _Tp (&)[_Sz]) noexcept { return _Sz; } 1844ad755104SMarshall Clow 184588d21343SMarshall Clowtemplate <class _Cont> 184625a7ba45SMarshall Clow_LIBCPP_NODISCARD_AFTER_CXX17 inline _LIBCPP_INLINE_VISIBILITY 1847d1dcda19SMarshall Clowconstexpr auto empty(const _Cont& __c) 1848d1dcda19SMarshall Clow_NOEXCEPT_(noexcept(__c.empty())) 1849d1dcda19SMarshall Clow-> decltype (__c.empty()) 1850d1dcda19SMarshall Clow{ return __c.empty(); } 1851ad755104SMarshall Clow 185288d21343SMarshall Clowtemplate <class _Tp, size_t _Sz> 185325a7ba45SMarshall Clow_LIBCPP_NODISCARD_AFTER_CXX17 inline _LIBCPP_INLINE_VISIBILITY 1854fd838227SEric Fiselierconstexpr bool empty(const _Tp (&)[_Sz]) noexcept { return false; } 1855ad755104SMarshall Clow 1856ad755104SMarshall Clowtemplate <class _Ep> 185725a7ba45SMarshall Clow_LIBCPP_NODISCARD_AFTER_CXX17 inline _LIBCPP_INLINE_VISIBILITY 1858ad755104SMarshall Clowconstexpr bool empty(initializer_list<_Ep> __il) noexcept { return __il.size() == 0; } 1859ad755104SMarshall Clow 186088d21343SMarshall Clowtemplate <class _Cont> constexpr 186125a7ba45SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY 1862d1dcda19SMarshall Clowauto data(_Cont& __c) 1863d1dcda19SMarshall Clow_NOEXCEPT_(noexcept(__c.data())) 1864d1dcda19SMarshall Clow-> decltype (__c.data()) 1865d1dcda19SMarshall Clow{ return __c.data(); } 1866ad755104SMarshall Clow 186788d21343SMarshall Clowtemplate <class _Cont> constexpr 186825a7ba45SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY 1869d1dcda19SMarshall Clowauto data(const _Cont& __c) 1870d1dcda19SMarshall Clow_NOEXCEPT_(noexcept(__c.data())) 1871d1dcda19SMarshall Clow-> decltype (__c.data()) 1872d1dcda19SMarshall Clow{ return __c.data(); } 1873ad755104SMarshall Clow 187488d21343SMarshall Clowtemplate <class _Tp, size_t _Sz> 187525a7ba45SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY 187688d21343SMarshall Clowconstexpr _Tp* data(_Tp (&__array)[_Sz]) noexcept { return __array; } 1877ad755104SMarshall Clow 1878ad755104SMarshall Clowtemplate <class _Ep> 187925a7ba45SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY 1880ad755104SMarshall Clowconstexpr const _Ep* data(initializer_list<_Ep> __il) noexcept { return __il.begin(); } 1881ad755104SMarshall Clow#endif 1882ad755104SMarshall Clow 1883ad755104SMarshall Clow 18843e519524SHoward Hinnant_LIBCPP_END_NAMESPACE_STD 18853e519524SHoward Hinnant 18863e519524SHoward Hinnant#endif // _LIBCPP_ITERATOR 1887