13e519524SHoward Hinnant// -*- C++ -*-
23e519524SHoward Hinnant//===-------------------------- iterator ----------------------------------===//
33e519524SHoward Hinnant//
457b08b09SChandler Carruth// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
557b08b09SChandler Carruth// See https://llvm.org/LICENSE.txt for license information.
657b08b09SChandler Carruth// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
73e519524SHoward Hinnant//
83e519524SHoward Hinnant//===----------------------------------------------------------------------===//
93e519524SHoward Hinnant
103e519524SHoward Hinnant#ifndef _LIBCPP_ITERATOR
113e519524SHoward Hinnant#define _LIBCPP_ITERATOR
123e519524SHoward Hinnant
133e519524SHoward Hinnant/*
143e519524SHoward Hinnant    iterator synopsis
153e519524SHoward Hinnant
163e519524SHoward Hinnantnamespace std
173e519524SHoward Hinnant{
183e519524SHoward Hinnant
193e519524SHoward Hinnanttemplate<class Iterator>
203e519524SHoward Hinnantstruct iterator_traits
213e519524SHoward Hinnant{
223e519524SHoward Hinnant    typedef typename Iterator::difference_type difference_type;
233e519524SHoward Hinnant    typedef typename Iterator::value_type value_type;
243e519524SHoward Hinnant    typedef typename Iterator::pointer pointer;
253e519524SHoward Hinnant    typedef typename Iterator::reference reference;
263e519524SHoward Hinnant    typedef typename Iterator::iterator_category iterator_category;
273e519524SHoward Hinnant};
283e519524SHoward Hinnant
293e519524SHoward Hinnanttemplate<class T>
303e519524SHoward Hinnantstruct iterator_traits<T*>
313e519524SHoward Hinnant{
323e519524SHoward Hinnant    typedef ptrdiff_t difference_type;
333e519524SHoward Hinnant    typedef T value_type;
343e519524SHoward Hinnant    typedef T* pointer;
353e519524SHoward Hinnant    typedef T& reference;
363e519524SHoward Hinnant    typedef random_access_iterator_tag iterator_category;
373e519524SHoward Hinnant};
383e519524SHoward Hinnant
393e519524SHoward Hinnanttemplate<class Category, class T, class Distance = ptrdiff_t,
403e519524SHoward Hinnant         class Pointer = T*, class Reference = T&>
413e519524SHoward Hinnantstruct iterator
423e519524SHoward Hinnant{
433e519524SHoward Hinnant    typedef T         value_type;
443e519524SHoward Hinnant    typedef Distance  difference_type;
453e519524SHoward Hinnant    typedef Pointer   pointer;
463e519524SHoward Hinnant    typedef Reference reference;
473e519524SHoward Hinnant    typedef Category  iterator_category;
483e519524SHoward Hinnant};
493e519524SHoward Hinnant
503e519524SHoward Hinnantstruct input_iterator_tag  {};
513e519524SHoward Hinnantstruct output_iterator_tag {};
523e519524SHoward Hinnantstruct forward_iterator_tag       : public input_iterator_tag         {};
533e519524SHoward Hinnantstruct bidirectional_iterator_tag : public forward_iterator_tag       {};
543e519524SHoward Hinnantstruct random_access_iterator_tag : public bidirectional_iterator_tag {};
553e519524SHoward Hinnant
56f51ee632SMarshall Clow// 27.4.3, iterator operations
573e519524SHoward Hinnant// extension: second argument not conforming to C++03
58f51ee632SMarshall Clowtemplate <class InputIterator>  // constexpr in C++17
59f51ee632SMarshall Clow  constexpr void advance(InputIterator& i,
603e519524SHoward Hinnant             typename iterator_traits<InputIterator>::difference_type n);
613e519524SHoward Hinnant
62f51ee632SMarshall Clowtemplate <class InputIterator>  // constexpr in C++17
63f51ee632SMarshall Clow  constexpr typename iterator_traits<InputIterator>::difference_type
643e519524SHoward Hinnant    distance(InputIterator first, InputIterator last);
653e519524SHoward Hinnant
66f51ee632SMarshall Clowtemplate <class InputIterator>  // constexpr in C++17
67f51ee632SMarshall Clow  constexpr InputIterator next(InputIterator x,
68f51ee632SMarshall Clowtypename iterator_traits<InputIterator>::difference_type n = 1);
69f51ee632SMarshall Clow
70f51ee632SMarshall Clowtemplate <class BidirectionalIterator>  // constexpr in C++17
71f51ee632SMarshall Clow  constexpr BidirectionalIterator prev(BidirectionalIterator x,
72f51ee632SMarshall Clow    typename iterator_traits<BidirectionalIterator>::difference_type n = 1);
73f51ee632SMarshall Clow
743e519524SHoward Hinnanttemplate <class Iterator>
753e519524SHoward Hinnantclass reverse_iterator
763e519524SHoward Hinnant    : public iterator<typename iterator_traits<Iterator>::iterator_category,
773e519524SHoward Hinnant                      typename iterator_traits<Iterator>::value_type,
783e519524SHoward Hinnant                      typename iterator_traits<Iterator>::difference_type,
793e519524SHoward Hinnant                      typename iterator_traits<Iterator>::pointer,
803e519524SHoward Hinnant                      typename iterator_traits<Iterator>::reference>
813e519524SHoward Hinnant{
823e519524SHoward Hinnantprotected:
833e519524SHoward Hinnant    Iterator current;
843e519524SHoward Hinnantpublic:
853e519524SHoward Hinnant    typedef Iterator                                            iterator_type;
863e519524SHoward Hinnant    typedef typename iterator_traits<Iterator>::difference_type difference_type;
873e519524SHoward Hinnant    typedef typename iterator_traits<Iterator>::reference       reference;
883e519524SHoward Hinnant    typedef typename iterator_traits<Iterator>::pointer         pointer;
893e519524SHoward Hinnant
901b8f260eSMarshall Clow    constexpr reverse_iterator();
911b8f260eSMarshall Clow    constexpr explicit reverse_iterator(Iterator x);
921b8f260eSMarshall Clow    template <class U> constexpr reverse_iterator(const reverse_iterator<U>& u);
931b8f260eSMarshall Clow    template <class U> constexpr reverse_iterator& operator=(const reverse_iterator<U>& u);
941b8f260eSMarshall Clow    constexpr Iterator base() const;
951b8f260eSMarshall Clow    constexpr reference operator*() const;
961b8f260eSMarshall Clow    constexpr pointer   operator->() const;
971b8f260eSMarshall Clow    constexpr reverse_iterator& operator++();
981b8f260eSMarshall Clow    constexpr reverse_iterator  operator++(int);
991b8f260eSMarshall Clow    constexpr reverse_iterator& operator--();
1001b8f260eSMarshall Clow    constexpr reverse_iterator  operator--(int);
1011b8f260eSMarshall Clow    constexpr reverse_iterator  operator+ (difference_type n) const;
1021b8f260eSMarshall Clow    constexpr reverse_iterator& operator+=(difference_type n);
1031b8f260eSMarshall Clow    constexpr reverse_iterator  operator- (difference_type n) const;
1041b8f260eSMarshall Clow    constexpr reverse_iterator& operator-=(difference_type n);
1051b8f260eSMarshall Clow    constexpr reference         operator[](difference_type n) const;
1063e519524SHoward Hinnant};
1073e519524SHoward Hinnant
1083e519524SHoward Hinnanttemplate <class Iterator1, class Iterator2>
1091b8f260eSMarshall Clowconstexpr bool                          // constexpr in C++17
1103e519524SHoward Hinnantoperator==(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y);
1113e519524SHoward Hinnant
1123e519524SHoward Hinnanttemplate <class Iterator1, class Iterator2>
1131b8f260eSMarshall Clowconstexpr bool                          // constexpr in C++17
1143e519524SHoward Hinnantoperator<(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y);
1153e519524SHoward Hinnant
1163e519524SHoward Hinnanttemplate <class Iterator1, class Iterator2>
1171b8f260eSMarshall Clowconstexpr bool                          // constexpr in C++17
1183e519524SHoward Hinnantoperator!=(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y);
1193e519524SHoward Hinnant
1203e519524SHoward Hinnanttemplate <class Iterator1, class Iterator2>
1211b8f260eSMarshall Clowconstexpr bool                          // constexpr in C++17
1223e519524SHoward Hinnantoperator>(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y);
1233e519524SHoward Hinnant
1243e519524SHoward Hinnanttemplate <class Iterator1, class Iterator2>
1251b8f260eSMarshall Clowconstexpr bool                          // constexpr in C++17
1263e519524SHoward Hinnantoperator>=(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y);
1273e519524SHoward Hinnant
1283e519524SHoward Hinnanttemplate <class Iterator1, class Iterator2>
1291b8f260eSMarshall Clowconstexpr bool                          // constexpr in C++17
1303e519524SHoward Hinnantoperator<=(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y);
1313e519524SHoward Hinnant
1323e519524SHoward Hinnanttemplate <class Iterator1, class Iterator2>
1331b8f260eSMarshall Clowconstexpr auto
134947ce6b5SMarshall Clowoperator-(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y)
1351b8f260eSMarshall Clow-> decltype(__y.base() - __x.base());   // constexpr in C++17
1363e519524SHoward Hinnant
1373e519524SHoward Hinnanttemplate <class Iterator>
1381b8f260eSMarshall Clowconstexpr reverse_iterator<Iterator>
1391b8f260eSMarshall Clowoperator+(typename reverse_iterator<Iterator>::difference_type n,
1401b8f260eSMarshall Clow          const reverse_iterator<Iterator>& x);   // constexpr in C++17
1413e519524SHoward Hinnant
1421b8f260eSMarshall Clowtemplate <class Iterator>
1431b8f260eSMarshall Clowconstexpr reverse_iterator<Iterator> make_reverse_iterator(Iterator i); // C++14, constexpr in C++17
1446a640a18SMarshall Clow
1453e519524SHoward Hinnanttemplate <class Container>
1463e519524SHoward Hinnantclass back_insert_iterator
1473e519524SHoward Hinnant{
1483e519524SHoward Hinnantprotected:
1493e519524SHoward Hinnant    Container* container;
1503e519524SHoward Hinnantpublic:
1513e519524SHoward Hinnant    typedef Container                   container_type;
1523e519524SHoward Hinnant    typedef void                        value_type;
1533e519524SHoward Hinnant    typedef void                        difference_type;
1548892b4eeSEric Fiselier    typedef void                        reference;
1553e519524SHoward Hinnant    typedef void                        pointer;
1563e519524SHoward Hinnant
1573e519524SHoward Hinnant    explicit back_insert_iterator(Container& x);
15803976c1bSHoward Hinnant    back_insert_iterator& operator=(const typename Container::value_type& value);
1593e519524SHoward Hinnant    back_insert_iterator& operator*();
1603e519524SHoward Hinnant    back_insert_iterator& operator++();
1613e519524SHoward Hinnant    back_insert_iterator  operator++(int);
1623e519524SHoward Hinnant};
1633e519524SHoward Hinnant
1643e519524SHoward Hinnanttemplate <class Container> back_insert_iterator<Container> back_inserter(Container& x);
1653e519524SHoward Hinnant
1663e519524SHoward Hinnanttemplate <class Container>
1673e519524SHoward Hinnantclass front_insert_iterator
1683e519524SHoward Hinnant{
1693e519524SHoward Hinnantprotected:
1703e519524SHoward Hinnant    Container* container;
1713e519524SHoward Hinnantpublic:
1723e519524SHoward Hinnant    typedef Container                    container_type;
1733e519524SHoward Hinnant    typedef void                         value_type;
1743e519524SHoward Hinnant    typedef void                         difference_type;
1758892b4eeSEric Fiselier    typedef void                         reference;
1763e519524SHoward Hinnant    typedef void                         pointer;
1773e519524SHoward Hinnant
1783e519524SHoward Hinnant    explicit front_insert_iterator(Container& x);
17903976c1bSHoward Hinnant    front_insert_iterator& operator=(const typename Container::value_type& value);
1803e519524SHoward Hinnant    front_insert_iterator& operator*();
1813e519524SHoward Hinnant    front_insert_iterator& operator++();
1823e519524SHoward Hinnant    front_insert_iterator  operator++(int);
1833e519524SHoward Hinnant};
1843e519524SHoward Hinnant
1853e519524SHoward Hinnanttemplate <class Container> front_insert_iterator<Container> front_inserter(Container& x);
1863e519524SHoward Hinnant
1873e519524SHoward Hinnanttemplate <class Container>
1883e519524SHoward Hinnantclass insert_iterator
1893e519524SHoward Hinnant{
1903e519524SHoward Hinnantprotected:
1913e519524SHoward Hinnant    Container* container;
1923e519524SHoward Hinnant    typename Container::iterator iter;
1933e519524SHoward Hinnantpublic:
1943e519524SHoward Hinnant    typedef Container              container_type;
1953e519524SHoward Hinnant    typedef void                   value_type;
1963e519524SHoward Hinnant    typedef void                   difference_type;
1978892b4eeSEric Fiselier    typedef void                   reference;
1983e519524SHoward Hinnant    typedef void                   pointer;
1993e519524SHoward Hinnant
2003e519524SHoward Hinnant    insert_iterator(Container& x, typename Container::iterator i);
20103976c1bSHoward Hinnant    insert_iterator& operator=(const typename Container::value_type& value);
2023e519524SHoward Hinnant    insert_iterator& operator*();
2033e519524SHoward Hinnant    insert_iterator& operator++();
2043e519524SHoward Hinnant    insert_iterator& operator++(int);
2053e519524SHoward Hinnant};
2063e519524SHoward Hinnant
2073e519524SHoward Hinnanttemplate <class Container, class Iterator>
2083e519524SHoward Hinnantinsert_iterator<Container> inserter(Container& x, Iterator i);
2093e519524SHoward Hinnant
210947ce6b5SMarshall Clowtemplate <class Iterator>
211947ce6b5SMarshall Clowclass move_iterator {
212947ce6b5SMarshall Clowpublic:
213947ce6b5SMarshall Clow    typedef Iterator                                              iterator_type;
214947ce6b5SMarshall Clow    typedef typename iterator_traits<Iterator>::difference_type   difference_type;
215947ce6b5SMarshall Clow    typedef Iterator                                              pointer;
216947ce6b5SMarshall Clow    typedef typename iterator_traits<Iterator>::value_type        value_type;
217947ce6b5SMarshall Clow    typedef typename iterator_traits<Iterator>::iterator_category iterator_category;
218947ce6b5SMarshall Clow    typedef value_type&&                                          reference;
219947ce6b5SMarshall Clow
220720ef472SMarshall Clow    constexpr move_iterator();  // all the constexprs are in C++17
221720ef472SMarshall Clow    constexpr explicit move_iterator(Iterator i);
222720ef472SMarshall Clow    template <class U>
223720ef472SMarshall Clow      constexpr move_iterator(const move_iterator<U>& u);
224720ef472SMarshall Clow    template <class U>
225720ef472SMarshall Clow      constexpr move_iterator& operator=(const move_iterator<U>& u);
226720ef472SMarshall Clow    constexpr iterator_type base() const;
227720ef472SMarshall Clow    constexpr reference operator*() const;
228720ef472SMarshall Clow    constexpr pointer operator->() const;
229720ef472SMarshall Clow    constexpr move_iterator& operator++();
230720ef472SMarshall Clow    constexpr move_iterator operator++(int);
231720ef472SMarshall Clow    constexpr move_iterator& operator--();
232720ef472SMarshall Clow    constexpr move_iterator operator--(int);
233720ef472SMarshall Clow    constexpr move_iterator operator+(difference_type n) const;
234720ef472SMarshall Clow    constexpr move_iterator& operator+=(difference_type n);
235720ef472SMarshall Clow    constexpr move_iterator operator-(difference_type n) const;
236720ef472SMarshall Clow    constexpr move_iterator& operator-=(difference_type n);
237720ef472SMarshall Clow    constexpr unspecified operator[](difference_type n) const;
238947ce6b5SMarshall Clowprivate:
239947ce6b5SMarshall Clow    Iterator current; // exposition only
240947ce6b5SMarshall Clow};
241947ce6b5SMarshall Clow
242947ce6b5SMarshall Clowtemplate <class Iterator1, class Iterator2>
243720ef472SMarshall Clowconstexpr bool   // constexpr in C++17
244947ce6b5SMarshall Clowoperator==(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y);
245947ce6b5SMarshall Clow
246947ce6b5SMarshall Clowtemplate <class Iterator1, class Iterator2>
247720ef472SMarshall Clowconstexpr bool   // constexpr in C++17
248947ce6b5SMarshall Clowoperator!=(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y);
249947ce6b5SMarshall Clow
250947ce6b5SMarshall Clowtemplate <class Iterator1, class Iterator2>
251720ef472SMarshall Clowconstexpr bool   // constexpr in C++17
252947ce6b5SMarshall Clowoperator<(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y);
253947ce6b5SMarshall Clow
254947ce6b5SMarshall Clowtemplate <class Iterator1, class Iterator2>
255720ef472SMarshall Clowconstexpr bool   // constexpr in C++17
256947ce6b5SMarshall Clowoperator<=(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y);
257947ce6b5SMarshall Clow
258947ce6b5SMarshall Clowtemplate <class Iterator1, class Iterator2>
259720ef472SMarshall Clowconstexpr bool   // constexpr in C++17
260947ce6b5SMarshall Clowoperator>(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y);
261947ce6b5SMarshall Clow
262947ce6b5SMarshall Clowtemplate <class Iterator1, class Iterator2>
263720ef472SMarshall Clowconstexpr bool   // constexpr in C++17
264947ce6b5SMarshall Clowoperator>=(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y);
265947ce6b5SMarshall Clow
266947ce6b5SMarshall Clowtemplate <class Iterator1, class Iterator2>
267720ef472SMarshall Clowconstexpr auto   // constexpr in C++17
268947ce6b5SMarshall Clowoperator-(const move_iterator<Iterator1>& x,
269947ce6b5SMarshall Clow          const move_iterator<Iterator2>& y) -> decltype(x.base() - y.base());
270947ce6b5SMarshall Clow
271947ce6b5SMarshall Clowtemplate <class Iterator>
272720ef472SMarshall Clowconstexpr move_iterator<Iterator> operator+(   // constexpr in C++17
273720ef472SMarshall Clow            typename move_iterator<Iterator>::difference_type n,
274947ce6b5SMarshall Clow            const move_iterator<Iterator>& x);
275947ce6b5SMarshall Clow
276720ef472SMarshall Clowtemplate <class Iterator>   // constexpr in C++17
277720ef472SMarshall Clowconstexpr  move_iterator<Iterator> make_move_iterator(const Iterator& i);
278947ce6b5SMarshall Clow
279947ce6b5SMarshall Clow
2803e519524SHoward Hinnanttemplate <class T, class charT = char, class traits = char_traits<charT>, class Distance = ptrdiff_t>
2813e519524SHoward Hinnantclass istream_iterator
2823e519524SHoward Hinnant    : public iterator<input_iterator_tag, T, Distance, const T*, const T&>
2833e519524SHoward Hinnant{
2843e519524SHoward Hinnantpublic:
2853e519524SHoward Hinnant    typedef charT char_type;
2863e519524SHoward Hinnant    typedef traits traits_type;
2873e519524SHoward Hinnant    typedef basic_istream<charT,traits> istream_type;
2883e519524SHoward Hinnant
28960d5e0e0SMarshall Clow    constexpr istream_iterator();
2903e519524SHoward Hinnant    istream_iterator(istream_type& s);
2913e519524SHoward Hinnant    istream_iterator(const istream_iterator& x);
2923e519524SHoward Hinnant    ~istream_iterator();
2933e519524SHoward Hinnant
2943e519524SHoward Hinnant    const T& operator*() const;
2953e519524SHoward Hinnant    const T* operator->() const;
2963e519524SHoward Hinnant    istream_iterator& operator++();
2973e519524SHoward Hinnant    istream_iterator  operator++(int);
2983e519524SHoward Hinnant};
2993e519524SHoward Hinnant
3003e519524SHoward Hinnanttemplate <class T, class charT, class traits, class Distance>
3013e519524SHoward Hinnantbool operator==(const istream_iterator<T,charT,traits,Distance>& x,
3023e519524SHoward Hinnant                const istream_iterator<T,charT,traits,Distance>& y);
3033e519524SHoward Hinnanttemplate <class T, class charT, class traits, class Distance>
3043e519524SHoward Hinnantbool operator!=(const istream_iterator<T,charT,traits,Distance>& x,
3053e519524SHoward Hinnant                const istream_iterator<T,charT,traits,Distance>& y);
3063e519524SHoward Hinnant
3073e519524SHoward Hinnanttemplate <class T, class charT = char, class traits = char_traits<charT> >
3083e519524SHoward Hinnantclass ostream_iterator
3093e519524SHoward Hinnant    : public iterator<output_iterator_tag, void, void, void ,void>
3103e519524SHoward Hinnant{
3113e519524SHoward Hinnantpublic:
3123e519524SHoward Hinnant    typedef charT char_type;
3133e519524SHoward Hinnant    typedef traits traits_type;
3143e519524SHoward Hinnant    typedef basic_ostream<charT,traits> ostream_type;
3153e519524SHoward Hinnant
3163e519524SHoward Hinnant    ostream_iterator(ostream_type& s);
3173e519524SHoward Hinnant    ostream_iterator(ostream_type& s, const charT* delimiter);
3183e519524SHoward Hinnant    ostream_iterator(const ostream_iterator& x);
3193e519524SHoward Hinnant    ~ostream_iterator();
3203e519524SHoward Hinnant    ostream_iterator& operator=(const T& value);
3213e519524SHoward Hinnant
3223e519524SHoward Hinnant    ostream_iterator& operator*();
3233e519524SHoward Hinnant    ostream_iterator& operator++();
3243e519524SHoward Hinnant    ostream_iterator& operator++(int);
3253e519524SHoward Hinnant};
3263e519524SHoward Hinnant
3273e519524SHoward Hinnanttemplate<class charT, class traits = char_traits<charT> >
3283e519524SHoward Hinnantclass istreambuf_iterator
3293e519524SHoward Hinnant    : public iterator<input_iterator_tag, charT,
3303e519524SHoward Hinnant                      typename traits::off_type, unspecified,
3313e519524SHoward Hinnant                      charT>
3323e519524SHoward Hinnant{
3333e519524SHoward Hinnantpublic:
3343e519524SHoward Hinnant    typedef charT                         char_type;
3353e519524SHoward Hinnant    typedef traits                        traits_type;
3363e519524SHoward Hinnant    typedef typename traits::int_type     int_type;
3373e519524SHoward Hinnant    typedef basic_streambuf<charT,traits> streambuf_type;
3383e519524SHoward Hinnant    typedef basic_istream<charT,traits>   istream_type;
3393e519524SHoward Hinnant
3408e882dcbSHoward Hinnant    istreambuf_iterator() noexcept;
3418e882dcbSHoward Hinnant    istreambuf_iterator(istream_type& s) noexcept;
3428e882dcbSHoward Hinnant    istreambuf_iterator(streambuf_type* s) noexcept;
3438e882dcbSHoward Hinnant    istreambuf_iterator(a-private-type) noexcept;
3443e519524SHoward Hinnant
3453e519524SHoward Hinnant    charT                operator*() const;
3463e519524SHoward Hinnant    pointer operator->() const;
3473e519524SHoward Hinnant    istreambuf_iterator& operator++();
3483e519524SHoward Hinnant    a-private-type       operator++(int);
3493e519524SHoward Hinnant
3503e519524SHoward Hinnant    bool equal(const istreambuf_iterator& b) const;
3513e519524SHoward Hinnant};
3523e519524SHoward Hinnant
3533e519524SHoward Hinnanttemplate <class charT, class traits>
3543e519524SHoward Hinnantbool operator==(const istreambuf_iterator<charT,traits>& a,
3553e519524SHoward Hinnant                const istreambuf_iterator<charT,traits>& b);
3563e519524SHoward Hinnanttemplate <class charT, class traits>
3573e519524SHoward Hinnantbool operator!=(const istreambuf_iterator<charT,traits>& a,
3583e519524SHoward Hinnant                const istreambuf_iterator<charT,traits>& b);
3593e519524SHoward Hinnant
3603e519524SHoward Hinnanttemplate <class charT, class traits = char_traits<charT> >
3613e519524SHoward Hinnantclass ostreambuf_iterator
3623e519524SHoward Hinnant    : public iterator<output_iterator_tag, void, void, void, void>
3633e519524SHoward Hinnant{
3643e519524SHoward Hinnantpublic:
3653e519524SHoward Hinnant    typedef charT                         char_type;
3663e519524SHoward Hinnant    typedef traits                        traits_type;
3673e519524SHoward Hinnant    typedef basic_streambuf<charT,traits> streambuf_type;
3683e519524SHoward Hinnant    typedef basic_ostream<charT,traits>   ostream_type;
3693e519524SHoward Hinnant
3708e882dcbSHoward Hinnant    ostreambuf_iterator(ostream_type& s) noexcept;
3718e882dcbSHoward Hinnant    ostreambuf_iterator(streambuf_type* s) noexcept;
3723e519524SHoward Hinnant    ostreambuf_iterator& operator=(charT c);
3733e519524SHoward Hinnant    ostreambuf_iterator& operator*();
3743e519524SHoward Hinnant    ostreambuf_iterator& operator++();
3753e519524SHoward Hinnant    ostreambuf_iterator& operator++(int);
3768e882dcbSHoward Hinnant    bool failed() const noexcept;
3773e519524SHoward Hinnant};
3783e519524SHoward Hinnant
379020b623aSMarshall Clowtemplate <class C> constexpr auto begin(C& c) -> decltype(c.begin());
380020b623aSMarshall Clowtemplate <class C> constexpr auto begin(const C& c) -> decltype(c.begin());
381020b623aSMarshall Clowtemplate <class C> constexpr auto end(C& c) -> decltype(c.end());
382020b623aSMarshall Clowtemplate <class C> constexpr auto end(const C& c) -> decltype(c.end());
383020b623aSMarshall Clowtemplate <class T, size_t N> constexpr T* begin(T (&array)[N]);
384020b623aSMarshall Clowtemplate <class T, size_t N> constexpr T* end(T (&array)[N]);
3853e519524SHoward Hinnant
386020b623aSMarshall Clowtemplate <class C> auto constexpr cbegin(const C& c) -> decltype(std::begin(c));        // C++14
387020b623aSMarshall Clowtemplate <class C> auto constexpr cend(const C& c) -> decltype(std::end(c));            // C++14
388020b623aSMarshall Clowtemplate <class C> auto constexpr rbegin(C& c) -> decltype(c.rbegin());                 // C++14
389020b623aSMarshall Clowtemplate <class C> auto constexpr rbegin(const C& c) -> decltype(c.rbegin());           // C++14
390020b623aSMarshall Clowtemplate <class C> auto constexpr rend(C& c) -> decltype(c.rend());                     // C++14
391020b623aSMarshall Clowtemplate <class C> constexpr auto rend(const C& c) -> decltype(c.rend());               // C++14
392020b623aSMarshall Clowtemplate <class E> reverse_iterator<const E*> constexpr rbegin(initializer_list<E> il); // C++14
393020b623aSMarshall Clowtemplate <class E> reverse_iterator<const E*> constexpr rend(initializer_list<E> il);   // C++14
394020b623aSMarshall Clowtemplate <class T, size_t N> reverse_iterator<T*> constexpr rbegin(T (&array)[N]);      // C++14
395020b623aSMarshall Clowtemplate <class T, size_t N> reverse_iterator<T*> constexpr rend(T (&array)[N]);        // C++14
396020b623aSMarshall Clowtemplate <class C> constexpr auto crbegin(const C& c) -> decltype(std::rbegin(c));      // C++14
397020b623aSMarshall Clowtemplate <class C> constexpr auto crend(const C& c) -> decltype(std::rend(c));          // C++14
3981e548c72SMarshall Clow
399ad755104SMarshall Clow// 24.8, container access:
400ad755104SMarshall Clowtemplate <class C> constexpr auto size(const C& c) -> decltype(c.size());         // C++17
401ad755104SMarshall Clowtemplate <class T, size_t N> constexpr size_t size(const T (&array)[N]) noexcept; // C++17
4027d3986eaSMarshall Clow
4037d3986eaSMarshall Clowtemplate <class C> constexpr auto ssize(const C& c)
4047d3986eaSMarshall Clow    -> common_type_t<ptrdiff_t, make_signed_t<decltype(c.size())>>;				       // C++20
4057d3986eaSMarshall Clowtemplate <class T, ptrdiff_t> constexpr ptrdiff_t ssize(const T (&array)[N]) noexcept; // C++20
4067d3986eaSMarshall Clow
407ad755104SMarshall Clowtemplate <class C> constexpr auto empty(const C& c) -> decltype(c.empty());       // C++17
408ad755104SMarshall Clowtemplate <class T, size_t N> constexpr bool empty(const T (&array)[N]) noexcept;  // C++17
409ad755104SMarshall Clowtemplate <class E> constexpr bool empty(initializer_list<E> il) noexcept;         // C++17
410ad755104SMarshall Clowtemplate <class C> constexpr auto data(C& c) -> decltype(c.data());               // C++17
411ad755104SMarshall Clowtemplate <class C> constexpr auto data(const C& c) -> decltype(c.data());         // C++17
412ad755104SMarshall Clowtemplate <class T, size_t N> constexpr T* data(T (&array)[N]) noexcept;           // C++17
413ad755104SMarshall Clowtemplate <class E> constexpr const E* data(initializer_list<E> il) noexcept;      // C++17
414ad755104SMarshall Clow
4153e519524SHoward Hinnant}  // std
4163e519524SHoward Hinnant
4173e519524SHoward Hinnant*/
4183e519524SHoward Hinnant
4193e519524SHoward Hinnant#include <__config>
42039c193b1SEric Fiselier#include <iosfwd> // for forward declarations of vector and string.
421c204c130SMarshall Clow#include <__functional_base>
4223e519524SHoward Hinnant#include <type_traits>
4233e519524SHoward Hinnant#include <cstddef>
4241e548c72SMarshall Clow#include <initializer_list>
425f56972e2SMarshall Clow#include <version>
426b56e8587SMarshall Clow#ifdef __APPLE__
427b5c63a2eSHoward Hinnant#include <Availability.h>
428b5c63a2eSHoward Hinnant#endif
429b5c63a2eSHoward Hinnant
43042a3046eSHoward Hinnant#include <__debug>
4313e519524SHoward Hinnant
432073458b1SHoward Hinnant#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
4333e519524SHoward Hinnant#pragma GCC system_header
434073458b1SHoward Hinnant#endif
4353e519524SHoward Hinnant
4363e519524SHoward Hinnant_LIBCPP_BEGIN_NAMESPACE_STD
4373e519524SHoward Hinnant
438e2f2d1edSEric Fiselierstruct _LIBCPP_TEMPLATE_VIS input_iterator_tag {};
439e2f2d1edSEric Fiselierstruct _LIBCPP_TEMPLATE_VIS output_iterator_tag {};
440e2f2d1edSEric Fiselierstruct _LIBCPP_TEMPLATE_VIS forward_iterator_tag       : public input_iterator_tag {};
441e2f2d1edSEric Fiselierstruct _LIBCPP_TEMPLATE_VIS bidirectional_iterator_tag : public forward_iterator_tag {};
442e2f2d1edSEric Fiselierstruct _LIBCPP_TEMPLATE_VIS random_access_iterator_tag : public bidirectional_iterator_tag {};
4433e519524SHoward Hinnant
4443e519524SHoward Hinnanttemplate <class _Tp>
445d4fa0381SMarshall Clowstruct __has_iterator_typedefs
446d4fa0381SMarshall Clow{
447d4fa0381SMarshall Clowprivate:
448d4fa0381SMarshall Clow    struct __two {char __lx; char __lxx;};
449d4fa0381SMarshall Clow    template <class _Up> static __two __test(...);
450d4fa0381SMarshall Clow    template <class _Up> static char __test(typename std::__void_t<typename _Up::iterator_category>::type* = 0,
451d4fa0381SMarshall Clow    										typename std::__void_t<typename _Up::difference_type>::type* = 0,
452d4fa0381SMarshall Clow    										typename std::__void_t<typename _Up::value_type>::type* = 0,
453d4fa0381SMarshall Clow    										typename std::__void_t<typename _Up::reference>::type* = 0,
454d4fa0381SMarshall Clow    										typename std::__void_t<typename _Up::pointer>::type* = 0
455d4fa0381SMarshall Clow    										);
456d4fa0381SMarshall Clowpublic:
457d4fa0381SMarshall Clow    static const bool value = sizeof(__test<_Tp>(0,0,0,0,0)) == 1;
458d4fa0381SMarshall Clow};
459d4fa0381SMarshall Clow
460d4fa0381SMarshall Clow
461d4fa0381SMarshall Clowtemplate <class _Tp>
4623e519524SHoward Hinnantstruct __has_iterator_category
4633e519524SHoward Hinnant{
4643e519524SHoward Hinnantprivate:
46554d333a6SHoward Hinnant    struct __two {char __lx; char __lxx;};
4663e519524SHoward Hinnant    template <class _Up> static __two __test(...);
4673e519524SHoward Hinnant    template <class _Up> static char __test(typename _Up::iterator_category* = 0);
4683e519524SHoward Hinnantpublic:
4693e519524SHoward Hinnant    static const bool value = sizeof(__test<_Tp>(0)) == 1;
4703e519524SHoward Hinnant};
4713e519524SHoward Hinnant
4720724bf67SMarshall Clowtemplate <class _Iter, bool> struct __iterator_traits_impl {};
4733e519524SHoward Hinnant
4743e519524SHoward Hinnanttemplate <class _Iter>
4750724bf67SMarshall Clowstruct __iterator_traits_impl<_Iter, true>
4763e519524SHoward Hinnant{
4773e519524SHoward Hinnant    typedef typename _Iter::difference_type   difference_type;
4783e519524SHoward Hinnant    typedef typename _Iter::value_type        value_type;
4793e519524SHoward Hinnant    typedef typename _Iter::pointer           pointer;
4803e519524SHoward Hinnant    typedef typename _Iter::reference         reference;
4813e519524SHoward Hinnant    typedef typename _Iter::iterator_category iterator_category;
4823e519524SHoward Hinnant};
4833e519524SHoward Hinnant
4843e519524SHoward Hinnanttemplate <class _Iter, bool> struct __iterator_traits {};
4853e519524SHoward Hinnant
4863e519524SHoward Hinnanttemplate <class _Iter>
4873e519524SHoward Hinnantstruct __iterator_traits<_Iter, true>
4880724bf67SMarshall Clow    :  __iterator_traits_impl
4893e519524SHoward Hinnant      <
4903e519524SHoward Hinnant        _Iter,
4913e519524SHoward Hinnant        is_convertible<typename _Iter::iterator_category, input_iterator_tag>::value ||
4923e519524SHoward Hinnant        is_convertible<typename _Iter::iterator_category, output_iterator_tag>::value
4933e519524SHoward Hinnant      >
4943e519524SHoward Hinnant{};
4953e519524SHoward Hinnant
4963e519524SHoward Hinnant// iterator_traits<Iterator> will only have the nested types if Iterator::iterator_category
4973e519524SHoward Hinnant//    exists.  Else iterator_traits<Iterator> will be an empty class.  This is a
4983e519524SHoward Hinnant//    conforming extension which allows some programs to compile and behave as
4993e519524SHoward Hinnant//    the client expects instead of failing at compile time.
5003e519524SHoward Hinnant
5013e519524SHoward Hinnanttemplate <class _Iter>
502e2f2d1edSEric Fiselierstruct _LIBCPP_TEMPLATE_VIS iterator_traits
503d4fa0381SMarshall Clow    : __iterator_traits<_Iter, __has_iterator_typedefs<_Iter>::value> {};
5043e519524SHoward Hinnant
5053e519524SHoward Hinnanttemplate<class _Tp>
506e2f2d1edSEric Fiselierstruct _LIBCPP_TEMPLATE_VIS iterator_traits<_Tp*>
5073e519524SHoward Hinnant{
5083e519524SHoward Hinnant    typedef ptrdiff_t difference_type;
509ffcfd923SMarshall Clow    typedef typename remove_cv<_Tp>::type value_type;
5103e519524SHoward Hinnant    typedef _Tp* pointer;
5113e519524SHoward Hinnant    typedef _Tp& reference;
5123e519524SHoward Hinnant    typedef random_access_iterator_tag iterator_category;
5133e519524SHoward Hinnant};
5143e519524SHoward Hinnant
5153e519524SHoward Hinnanttemplate <class _Tp, class _Up, bool = __has_iterator_category<iterator_traits<_Tp> >::value>
5163e519524SHoward Hinnantstruct __has_iterator_category_convertible_to
5173e519524SHoward Hinnant    : public integral_constant<bool, is_convertible<typename iterator_traits<_Tp>::iterator_category, _Up>::value>
5183e519524SHoward Hinnant{};
5193e519524SHoward Hinnant
5203e519524SHoward Hinnanttemplate <class _Tp, class _Up>
5213e519524SHoward Hinnantstruct __has_iterator_category_convertible_to<_Tp, _Up, false> : public false_type {};
5223e519524SHoward Hinnant
5233e519524SHoward Hinnanttemplate <class _Tp>
5243e519524SHoward Hinnantstruct __is_input_iterator : public __has_iterator_category_convertible_to<_Tp, input_iterator_tag> {};
5253e519524SHoward Hinnant
5263e519524SHoward Hinnanttemplate <class _Tp>
5273e519524SHoward Hinnantstruct __is_forward_iterator : public __has_iterator_category_convertible_to<_Tp, forward_iterator_tag> {};
5283e519524SHoward Hinnant
5293e519524SHoward Hinnanttemplate <class _Tp>
5303e519524SHoward Hinnantstruct __is_bidirectional_iterator : public __has_iterator_category_convertible_to<_Tp, bidirectional_iterator_tag> {};
5313e519524SHoward Hinnant
5323e519524SHoward Hinnanttemplate <class _Tp>
5333e519524SHoward Hinnantstruct __is_random_access_iterator : public __has_iterator_category_convertible_to<_Tp, random_access_iterator_tag> {};
5343e519524SHoward Hinnant
53576b4afc0SMarshall Clowtemplate <class _Tp>
53676b4afc0SMarshall Clowstruct __is_exactly_input_iterator
53776b4afc0SMarshall Clow    : public integral_constant<bool,
53876b4afc0SMarshall Clow         __has_iterator_category_convertible_to<_Tp, input_iterator_tag>::value &&
53976b4afc0SMarshall Clow        !__has_iterator_category_convertible_to<_Tp, forward_iterator_tag>::value> {};
54076b4afc0SMarshall Clow
541*f2f7d72fSLouis Dionne#ifndef _LIBCPP_HAS_NO_DEDUCTION_GUIDES
542*f2f7d72fSLouis Dionnetemplate<class _InputIterator>
543*f2f7d72fSLouis Dionneusing __iter_value_type = typename iterator_traits<_InputIterator>::value_type;
544*f2f7d72fSLouis Dionne
545*f2f7d72fSLouis Dionnetemplate<class _InputIterator>
546*f2f7d72fSLouis Dionneusing __iter_key_type = remove_const_t<typename iterator_traits<_InputIterator>::value_type::first_type>;
547*f2f7d72fSLouis Dionne
548*f2f7d72fSLouis Dionnetemplate<class _InputIterator>
549*f2f7d72fSLouis Dionneusing __iter_mapped_type = typename iterator_traits<_InputIterator>::value_type::second_type;
550*f2f7d72fSLouis Dionne
551*f2f7d72fSLouis Dionnetemplate<class _InputIterator>
552*f2f7d72fSLouis Dionneusing __iter_to_alloc_type = pair<
553*f2f7d72fSLouis Dionne    add_const_t<typename iterator_traits<_InputIterator>::value_type::first_type>,
554*f2f7d72fSLouis Dionne    typename iterator_traits<_InputIterator>::value_type::second_type>;
555*f2f7d72fSLouis Dionne#endif
556*f2f7d72fSLouis Dionne
5573e519524SHoward Hinnanttemplate<class _Category, class _Tp, class _Distance = ptrdiff_t,
5583e519524SHoward Hinnant         class _Pointer = _Tp*, class _Reference = _Tp&>
559e2f2d1edSEric Fiselierstruct _LIBCPP_TEMPLATE_VIS iterator
5603e519524SHoward Hinnant{
5613e519524SHoward Hinnant    typedef _Tp        value_type;
5623e519524SHoward Hinnant    typedef _Distance  difference_type;
5633e519524SHoward Hinnant    typedef _Pointer   pointer;
5643e519524SHoward Hinnant    typedef _Reference reference;
5653e519524SHoward Hinnant    typedef _Category  iterator_category;
5663e519524SHoward Hinnant};
5673e519524SHoward Hinnant
5683e519524SHoward Hinnanttemplate <class _InputIter>
569f51ee632SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
5703e519524SHoward Hinnantvoid __advance(_InputIter& __i,
5713e519524SHoward Hinnant             typename iterator_traits<_InputIter>::difference_type __n, input_iterator_tag)
5723e519524SHoward Hinnant{
5733e519524SHoward Hinnant    for (; __n > 0; --__n)
5743e519524SHoward Hinnant        ++__i;
5753e519524SHoward Hinnant}
5763e519524SHoward Hinnant
5773e519524SHoward Hinnanttemplate <class _BiDirIter>
578f51ee632SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
5793e519524SHoward Hinnantvoid __advance(_BiDirIter& __i,
5803e519524SHoward Hinnant             typename iterator_traits<_BiDirIter>::difference_type __n, bidirectional_iterator_tag)
5813e519524SHoward Hinnant{
5823e519524SHoward Hinnant    if (__n >= 0)
5833e519524SHoward Hinnant        for (; __n > 0; --__n)
5843e519524SHoward Hinnant            ++__i;
5853e519524SHoward Hinnant    else
5863e519524SHoward Hinnant        for (; __n < 0; ++__n)
5873e519524SHoward Hinnant            --__i;
5883e519524SHoward Hinnant}
5893e519524SHoward Hinnant
5903e519524SHoward Hinnanttemplate <class _RandIter>
591f51ee632SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
5923e519524SHoward Hinnantvoid __advance(_RandIter& __i,
5933e519524SHoward Hinnant             typename iterator_traits<_RandIter>::difference_type __n, random_access_iterator_tag)
5943e519524SHoward Hinnant{
5953e519524SHoward Hinnant   __i += __n;
5963e519524SHoward Hinnant}
5973e519524SHoward Hinnant
5983e519524SHoward Hinnanttemplate <class _InputIter>
599f51ee632SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
6003e519524SHoward Hinnantvoid advance(_InputIter& __i,
6013e519524SHoward Hinnant             typename iterator_traits<_InputIter>::difference_type __n)
6023e519524SHoward Hinnant{
603e1cd11d8SMarshall Clow    _LIBCPP_ASSERT(__n >= 0 || __is_bidirectional_iterator<_InputIter>::value,
604e1cd11d8SMarshall Clow                       "Attempt to advance(it, -n) on a non-bidi iterator");
6053e519524SHoward Hinnant    __advance(__i, __n, typename iterator_traits<_InputIter>::iterator_category());
6063e519524SHoward Hinnant}
6073e519524SHoward Hinnant
6083e519524SHoward Hinnanttemplate <class _InputIter>
609f51ee632SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
6103e519524SHoward Hinnanttypename iterator_traits<_InputIter>::difference_type
6113e519524SHoward Hinnant__distance(_InputIter __first, _InputIter __last, input_iterator_tag)
6123e519524SHoward Hinnant{
6133e519524SHoward Hinnant    typename iterator_traits<_InputIter>::difference_type __r(0);
6143e519524SHoward Hinnant    for (; __first != __last; ++__first)
6153e519524SHoward Hinnant        ++__r;
6163e519524SHoward Hinnant    return __r;
6173e519524SHoward Hinnant}
6183e519524SHoward Hinnant
6193e519524SHoward Hinnanttemplate <class _RandIter>
620f51ee632SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
6213e519524SHoward Hinnanttypename iterator_traits<_RandIter>::difference_type
6223e519524SHoward Hinnant__distance(_RandIter __first, _RandIter __last, random_access_iterator_tag)
6233e519524SHoward Hinnant{
6243e519524SHoward Hinnant    return __last - __first;
6253e519524SHoward Hinnant}
6263e519524SHoward Hinnant
6273e519524SHoward Hinnanttemplate <class _InputIter>
628f51ee632SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
6293e519524SHoward Hinnanttypename iterator_traits<_InputIter>::difference_type
6303e519524SHoward Hinnantdistance(_InputIter __first, _InputIter __last)
6313e519524SHoward Hinnant{
6323e519524SHoward Hinnant    return __distance(__first, __last, typename iterator_traits<_InputIter>::iterator_category());
6333e519524SHoward Hinnant}
6343e519524SHoward Hinnant
635e5f1288fSMarshall Clowtemplate <class _InputIter>
636f51ee632SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
6373e2ef408SRachel Craiktypename enable_if
6383e2ef408SRachel Craik<
6393e2ef408SRachel Craik    __is_input_iterator<_InputIter>::value,
640e5f1288fSMarshall Clow    _InputIter
6413e2ef408SRachel Craik>::type
642e5f1288fSMarshall Clownext(_InputIter __x,
6433e2ef408SRachel Craik     typename iterator_traits<_InputIter>::difference_type __n = 1)
6443e519524SHoward Hinnant{
645e1cd11d8SMarshall Clow    _LIBCPP_ASSERT(__n >= 0 || __is_bidirectional_iterator<_InputIter>::value,
646e1cd11d8SMarshall Clow                       "Attempt to next(it, -n) on a non-bidi iterator");
647e1cd11d8SMarshall Clow
648ce48a113SHoward Hinnant    _VSTD::advance(__x, __n);
6493e519524SHoward Hinnant    return __x;
6503e519524SHoward Hinnant}
6513e519524SHoward Hinnant
652e1cd11d8SMarshall Clowtemplate <class _InputIter>
653f51ee632SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
6543e2ef408SRachel Craiktypename enable_if
6553e2ef408SRachel Craik<
656e1cd11d8SMarshall Clow    __is_input_iterator<_InputIter>::value,
657e1cd11d8SMarshall Clow    _InputIter
6583e2ef408SRachel Craik>::type
659e1cd11d8SMarshall Clowprev(_InputIter __x,
660e1cd11d8SMarshall Clow     typename iterator_traits<_InputIter>::difference_type __n = 1)
6613e519524SHoward Hinnant{
662e1cd11d8SMarshall Clow    _LIBCPP_ASSERT(__n <= 0 || __is_bidirectional_iterator<_InputIter>::value,
663e1cd11d8SMarshall Clow                       "Attempt to prev(it, +n) on a non-bidi iterator");
664ce48a113SHoward Hinnant    _VSTD::advance(__x, -__n);
6653e519524SHoward Hinnant    return __x;
6663e519524SHoward Hinnant}
6673e519524SHoward Hinnant
668e02ed1c2SEric Fiselier
669e02ed1c2SEric Fiseliertemplate <class _Tp, class = void>
670e02ed1c2SEric Fiselierstruct __is_stashing_iterator : false_type {};
671e02ed1c2SEric Fiselier
672e02ed1c2SEric Fiseliertemplate <class _Tp>
673e02ed1c2SEric Fiselierstruct __is_stashing_iterator<_Tp, typename __void_t<typename _Tp::__stashing_iterator_tag>::type>
674e02ed1c2SEric Fiselier  : true_type {};
675e02ed1c2SEric Fiselier
6763e519524SHoward Hinnanttemplate <class _Iter>
677e2f2d1edSEric Fiselierclass _LIBCPP_TEMPLATE_VIS reverse_iterator
6783e519524SHoward Hinnant    : public iterator<typename iterator_traits<_Iter>::iterator_category,
6793e519524SHoward Hinnant                      typename iterator_traits<_Iter>::value_type,
6803e519524SHoward Hinnant                      typename iterator_traits<_Iter>::difference_type,
6813e519524SHoward Hinnant                      typename iterator_traits<_Iter>::pointer,
6823e519524SHoward Hinnant                      typename iterator_traits<_Iter>::reference>
6833e519524SHoward Hinnant{
6843b83496dSMarshall Clowprivate:
6851b8f260eSMarshall Clow    /*mutable*/ _Iter __t;  // no longer used as of LWG #2360, not removed due to ABI break
686e02ed1c2SEric Fiselier
687e02ed1c2SEric Fiselier    static_assert(!__is_stashing_iterator<_Iter>::value,
688e02ed1c2SEric Fiselier      "The specified iterator type cannot be used with reverse_iterator; "
689e02ed1c2SEric Fiselier      "Using stashing iterators with reverse_iterator causes undefined behavior");
690e02ed1c2SEric Fiselier
691b2d74f29SMarshall Clowprotected:
692b2d74f29SMarshall Clow    _Iter current;
6933e519524SHoward Hinnantpublic:
6943e519524SHoward Hinnant    typedef _Iter                                            iterator_type;
6953e519524SHoward Hinnant    typedef typename iterator_traits<_Iter>::difference_type difference_type;
6963e519524SHoward Hinnant    typedef typename iterator_traits<_Iter>::reference       reference;
6973e519524SHoward Hinnant    typedef typename iterator_traits<_Iter>::pointer         pointer;
6983e519524SHoward Hinnant
6991b8f260eSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
7001b8f260eSMarshall Clow    reverse_iterator() : __t(), current() {}
7011b8f260eSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
7021b8f260eSMarshall Clow    explicit reverse_iterator(_Iter __x) : __t(__x), current(__x) {}
7031b8f260eSMarshall Clow    template <class _Up>
7041b8f260eSMarshall Clow        _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
7051b8f260eSMarshall Clow        reverse_iterator(const reverse_iterator<_Up>& __u) : __t(__u.base()), current(__u.base()) {}
7061b8f260eSMarshall Clow    template <class _Up>
7071b8f260eSMarshall Clow        _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
7081b8f260eSMarshall Clow        reverse_iterator& operator=(const reverse_iterator<_Up>& __u)
7091b8f260eSMarshall Clow            { __t = current = __u.base(); return *this; }
7101b8f260eSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
7111b8f260eSMarshall Clow    _Iter base() const {return current;}
7121b8f260eSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
7131b8f260eSMarshall Clow    reference operator*() const {_Iter __tmp = current; return *--__tmp;}
7141b8f260eSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
7151b8f260eSMarshall Clow    pointer  operator->() const {return _VSTD::addressof(operator*());}
7161b8f260eSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
7171b8f260eSMarshall Clow    reverse_iterator& operator++() {--current; return *this;}
7181b8f260eSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
7191b8f260eSMarshall Clow    reverse_iterator  operator++(int) {reverse_iterator __tmp(*this); --current; return __tmp;}
7201b8f260eSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
7211b8f260eSMarshall Clow    reverse_iterator& operator--() {++current; return *this;}
7221b8f260eSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
7231b8f260eSMarshall Clow    reverse_iterator  operator--(int) {reverse_iterator __tmp(*this); ++current; return __tmp;}
7241b8f260eSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
7251b8f260eSMarshall Clow    reverse_iterator  operator+ (difference_type __n) const {return reverse_iterator(current - __n);}
7261b8f260eSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
7271b8f260eSMarshall Clow    reverse_iterator& operator+=(difference_type __n) {current -= __n; return *this;}
7281b8f260eSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
7291b8f260eSMarshall Clow    reverse_iterator  operator- (difference_type __n) const {return reverse_iterator(current + __n);}
7301b8f260eSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
7311b8f260eSMarshall Clow    reverse_iterator& operator-=(difference_type __n) {current += __n; return *this;}
7321b8f260eSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
7331b8f260eSMarshall Clow    reference         operator[](difference_type __n) const {return *(*this + __n);}
7343e519524SHoward Hinnant};
7353e519524SHoward Hinnant
7363e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2>
7371b8f260eSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
7383e519524SHoward Hinnantbool
7393e519524SHoward Hinnantoperator==(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y)
7403e519524SHoward Hinnant{
7413e519524SHoward Hinnant    return __x.base() == __y.base();
7423e519524SHoward Hinnant}
7433e519524SHoward Hinnant
7443e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2>
7451b8f260eSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
7463e519524SHoward Hinnantbool
7473e519524SHoward Hinnantoperator<(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y)
7483e519524SHoward Hinnant{
7493e519524SHoward Hinnant    return __x.base() > __y.base();
7503e519524SHoward Hinnant}
7513e519524SHoward Hinnant
7523e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2>
7531b8f260eSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
7543e519524SHoward Hinnantbool
7553e519524SHoward Hinnantoperator!=(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y)
7563e519524SHoward Hinnant{
7573e519524SHoward Hinnant    return __x.base() != __y.base();
7583e519524SHoward Hinnant}
7593e519524SHoward Hinnant
7603e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2>
7611b8f260eSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
7623e519524SHoward Hinnantbool
7633e519524SHoward Hinnantoperator>(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y)
7643e519524SHoward Hinnant{
7653e519524SHoward Hinnant    return __x.base() < __y.base();
7663e519524SHoward Hinnant}
7673e519524SHoward Hinnant
7683e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2>
7691b8f260eSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
7703e519524SHoward Hinnantbool
7713e519524SHoward Hinnantoperator>=(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y)
7723e519524SHoward Hinnant{
7733e519524SHoward Hinnant    return __x.base() <= __y.base();
7743e519524SHoward Hinnant}
7753e519524SHoward Hinnant
7763e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2>
7771b8f260eSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
7783e519524SHoward Hinnantbool
7793e519524SHoward Hinnantoperator<=(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y)
7803e519524SHoward Hinnant{
7813e519524SHoward Hinnant    return __x.base() >= __y.base();
7823e519524SHoward Hinnant}
7833e519524SHoward Hinnant
7842ee83725SMarshall Clow#ifndef _LIBCPP_CXX03_LANG
785947ce6b5SMarshall Clowtemplate <class _Iter1, class _Iter2>
7861b8f260eSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
787947ce6b5SMarshall Clowauto
788947ce6b5SMarshall Clowoperator-(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y)
789947ce6b5SMarshall Clow-> decltype(__y.base() - __x.base())
790947ce6b5SMarshall Clow{
791947ce6b5SMarshall Clow    return __y.base() - __x.base();
792947ce6b5SMarshall Clow}
793947ce6b5SMarshall Clow#else
7943e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2>
7953e519524SHoward Hinnantinline _LIBCPP_INLINE_VISIBILITY
7963e519524SHoward Hinnanttypename reverse_iterator<_Iter1>::difference_type
7973e519524SHoward Hinnantoperator-(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y)
7983e519524SHoward Hinnant{
7993e519524SHoward Hinnant    return __y.base() - __x.base();
8003e519524SHoward Hinnant}
801947ce6b5SMarshall Clow#endif
8023e519524SHoward Hinnant
8033e519524SHoward Hinnanttemplate <class _Iter>
8041b8f260eSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
8053e519524SHoward Hinnantreverse_iterator<_Iter>
8063e519524SHoward Hinnantoperator+(typename reverse_iterator<_Iter>::difference_type __n, const reverse_iterator<_Iter>& __x)
8073e519524SHoward Hinnant{
8083e519524SHoward Hinnant    return reverse_iterator<_Iter>(__x.base() - __n);
8093e519524SHoward Hinnant}
8103e519524SHoward Hinnant
8116a640a18SMarshall Clow#if _LIBCPP_STD_VER > 11
8126a640a18SMarshall Clowtemplate <class _Iter>
8131b8f260eSMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
8146a640a18SMarshall Clowreverse_iterator<_Iter> make_reverse_iterator(_Iter __i)
8156a640a18SMarshall Clow{
8166a640a18SMarshall Clow    return reverse_iterator<_Iter>(__i);
8176a640a18SMarshall Clow}
8186a640a18SMarshall Clow#endif
8196a640a18SMarshall Clow
8203e519524SHoward Hinnanttemplate <class _Container>
821e2f2d1edSEric Fiselierclass _LIBCPP_TEMPLATE_VIS back_insert_iterator
8223e519524SHoward Hinnant    : public iterator<output_iterator_tag,
8233e519524SHoward Hinnant                      void,
8243e519524SHoward Hinnant                      void,
8253e519524SHoward Hinnant                      void,
8268892b4eeSEric Fiselier                      void>
8273e519524SHoward Hinnant{
8283e519524SHoward Hinnantprotected:
8293e519524SHoward Hinnant    _Container* container;
8303e519524SHoward Hinnantpublic:
8313e519524SHoward Hinnant    typedef _Container container_type;
8323e519524SHoward Hinnant
833f519be34SMarshall Clow    _LIBCPP_INLINE_VISIBILITY explicit back_insert_iterator(_Container& __x) : container(_VSTD::addressof(__x)) {}
834e4383379SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY back_insert_iterator& operator=(const typename _Container::value_type& __value_)
835e4383379SHoward Hinnant        {container->push_back(__value_); return *this;}
836046492b9SEric Fiselier#ifndef _LIBCPP_CXX03_LANG
837e4383379SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY back_insert_iterator& operator=(typename _Container::value_type&& __value_)
838e4383379SHoward Hinnant        {container->push_back(_VSTD::move(__value_)); return *this;}
839046492b9SEric Fiselier#endif  // _LIBCPP_CXX03_LANG
8403e519524SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY back_insert_iterator& operator*()     {return *this;}
8413e519524SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY back_insert_iterator& operator++()    {return *this;}
8423e519524SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY back_insert_iterator  operator++(int) {return *this;}
8433e519524SHoward Hinnant};
8443e519524SHoward Hinnant
8453e519524SHoward Hinnanttemplate <class _Container>
8463e519524SHoward Hinnantinline _LIBCPP_INLINE_VISIBILITY
8473e519524SHoward Hinnantback_insert_iterator<_Container>
8483e519524SHoward Hinnantback_inserter(_Container& __x)
8493e519524SHoward Hinnant{
8503e519524SHoward Hinnant    return back_insert_iterator<_Container>(__x);
8513e519524SHoward Hinnant}
8523e519524SHoward Hinnant
8533e519524SHoward Hinnanttemplate <class _Container>
854e2f2d1edSEric Fiselierclass _LIBCPP_TEMPLATE_VIS front_insert_iterator
8553e519524SHoward Hinnant    : public iterator<output_iterator_tag,
8563e519524SHoward Hinnant                      void,
8573e519524SHoward Hinnant                      void,
8583e519524SHoward Hinnant                      void,
8598892b4eeSEric Fiselier                      void>
8603e519524SHoward Hinnant{
8613e519524SHoward Hinnantprotected:
8623e519524SHoward Hinnant    _Container* container;
8633e519524SHoward Hinnantpublic:
8643e519524SHoward Hinnant    typedef _Container container_type;
8653e519524SHoward Hinnant
866f519be34SMarshall Clow    _LIBCPP_INLINE_VISIBILITY explicit front_insert_iterator(_Container& __x) : container(_VSTD::addressof(__x)) {}
867e4383379SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY front_insert_iterator& operator=(const typename _Container::value_type& __value_)
868e4383379SHoward Hinnant        {container->push_front(__value_); return *this;}
869046492b9SEric Fiselier#ifndef _LIBCPP_CXX03_LANG
870e4383379SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY front_insert_iterator& operator=(typename _Container::value_type&& __value_)
871e4383379SHoward Hinnant        {container->push_front(_VSTD::move(__value_)); return *this;}
872046492b9SEric Fiselier#endif  // _LIBCPP_CXX03_LANG
8733e519524SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY front_insert_iterator& operator*()     {return *this;}
8743e519524SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY front_insert_iterator& operator++()    {return *this;}
8753e519524SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY front_insert_iterator  operator++(int) {return *this;}
8763e519524SHoward Hinnant};
8773e519524SHoward Hinnant
8783e519524SHoward Hinnanttemplate <class _Container>
8793e519524SHoward Hinnantinline _LIBCPP_INLINE_VISIBILITY
8803e519524SHoward Hinnantfront_insert_iterator<_Container>
8813e519524SHoward Hinnantfront_inserter(_Container& __x)
8823e519524SHoward Hinnant{
8833e519524SHoward Hinnant    return front_insert_iterator<_Container>(__x);
8843e519524SHoward Hinnant}
8853e519524SHoward Hinnant
8863e519524SHoward Hinnanttemplate <class _Container>
887e2f2d1edSEric Fiselierclass _LIBCPP_TEMPLATE_VIS insert_iterator
8883e519524SHoward Hinnant    : public iterator<output_iterator_tag,
8893e519524SHoward Hinnant                      void,
8903e519524SHoward Hinnant                      void,
8913e519524SHoward Hinnant                      void,
8928892b4eeSEric Fiselier                      void>
8933e519524SHoward Hinnant{
8943e519524SHoward Hinnantprotected:
8953e519524SHoward Hinnant    _Container* container;
8963e519524SHoward Hinnant    typename _Container::iterator iter;
8973e519524SHoward Hinnantpublic:
8983e519524SHoward Hinnant    typedef _Container container_type;
8993e519524SHoward Hinnant
9003e519524SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY insert_iterator(_Container& __x, typename _Container::iterator __i)
901f519be34SMarshall Clow        : container(_VSTD::addressof(__x)), iter(__i) {}
902e4383379SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY insert_iterator& operator=(const typename _Container::value_type& __value_)
903e4383379SHoward Hinnant        {iter = container->insert(iter, __value_); ++iter; return *this;}
904046492b9SEric Fiselier#ifndef _LIBCPP_CXX03_LANG
905e4383379SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY insert_iterator& operator=(typename _Container::value_type&& __value_)
906e4383379SHoward Hinnant        {iter = container->insert(iter, _VSTD::move(__value_)); ++iter; return *this;}
907046492b9SEric Fiselier#endif  // _LIBCPP_CXX03_LANG
9083e519524SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY insert_iterator& operator*()        {return *this;}
9093e519524SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY insert_iterator& operator++()       {return *this;}
9103e519524SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY insert_iterator& operator++(int)    {return *this;}
9113e519524SHoward Hinnant};
9123e519524SHoward Hinnant
9133e519524SHoward Hinnanttemplate <class _Container>
9143e519524SHoward Hinnantinline _LIBCPP_INLINE_VISIBILITY
9153e519524SHoward Hinnantinsert_iterator<_Container>
9163e519524SHoward Hinnantinserter(_Container& __x, typename _Container::iterator __i)
9173e519524SHoward Hinnant{
9183e519524SHoward Hinnant    return insert_iterator<_Container>(__x, __i);
9193e519524SHoward Hinnant}
9203e519524SHoward Hinnant
9213e519524SHoward Hinnanttemplate <class _Tp, class _CharT = char,
9223e519524SHoward Hinnant          class _Traits = char_traits<_CharT>, class _Distance = ptrdiff_t>
923e2f2d1edSEric Fiselierclass _LIBCPP_TEMPLATE_VIS istream_iterator
9243e519524SHoward Hinnant    : public iterator<input_iterator_tag, _Tp, _Distance, const _Tp*, const _Tp&>
9253e519524SHoward Hinnant{
9263e519524SHoward Hinnantpublic:
9273e519524SHoward Hinnant    typedef _CharT char_type;
9283e519524SHoward Hinnant    typedef _Traits traits_type;
9293e519524SHoward Hinnant    typedef basic_istream<_CharT,_Traits> istream_type;
9303e519524SHoward Hinnantprivate:
9313e519524SHoward Hinnant    istream_type* __in_stream_;
9323e519524SHoward Hinnant    _Tp __value_;
9333e519524SHoward Hinnantpublic:
93460d5e0e0SMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR istream_iterator() : __in_stream_(0), __value_() {}
935bc6a7df0SMarshall Clow    _LIBCPP_INLINE_VISIBILITY istream_iterator(istream_type& __s) : __in_stream_(_VSTD::addressof(__s))
9363e519524SHoward Hinnant        {
9373e519524SHoward Hinnant            if (!(*__in_stream_ >> __value_))
9383e519524SHoward Hinnant                __in_stream_ = 0;
9393e519524SHoward Hinnant        }
9403e519524SHoward Hinnant
9413e519524SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY const _Tp& operator*() const {return __value_;}
942bc6a7df0SMarshall Clow    _LIBCPP_INLINE_VISIBILITY const _Tp* operator->() const {return _VSTD::addressof((operator*()));}
9433e519524SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY istream_iterator& operator++()
9443e519524SHoward Hinnant        {
9453e519524SHoward Hinnant            if (!(*__in_stream_ >> __value_))
9463e519524SHoward Hinnant                __in_stream_ = 0;
9473e519524SHoward Hinnant            return *this;
9483e519524SHoward Hinnant        }
9493e519524SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY istream_iterator  operator++(int)
9503e519524SHoward Hinnant        {istream_iterator __t(*this); ++(*this); return __t;}
9513e519524SHoward Hinnant
9526f56d3eeSRoger Ferrer Ibanez    template <class _Up, class _CharU, class _TraitsU, class _DistanceU>
9533e519524SHoward Hinnant    friend _LIBCPP_INLINE_VISIBILITY
9546f56d3eeSRoger Ferrer Ibanez    bool
9556f56d3eeSRoger Ferrer Ibanez    operator==(const istream_iterator<_Up, _CharU, _TraitsU, _DistanceU>& __x,
9566f56d3eeSRoger Ferrer Ibanez               const istream_iterator<_Up, _CharU, _TraitsU, _DistanceU>& __y);
9573e519524SHoward Hinnant
9586f56d3eeSRoger Ferrer Ibanez    template <class _Up, class _CharU, class _TraitsU, class _DistanceU>
9593e519524SHoward Hinnant    friend _LIBCPP_INLINE_VISIBILITY
9606f56d3eeSRoger Ferrer Ibanez    bool
9616f56d3eeSRoger Ferrer Ibanez    operator==(const istream_iterator<_Up, _CharU, _TraitsU, _DistanceU>& __x,
9626f56d3eeSRoger Ferrer Ibanez               const istream_iterator<_Up, _CharU, _TraitsU, _DistanceU>& __y);
9633e519524SHoward Hinnant};
9643e519524SHoward Hinnant
9656f56d3eeSRoger Ferrer Ibaneztemplate <class _Tp, class _CharT, class _Traits, class _Distance>
9666f56d3eeSRoger Ferrer Ibanezinline _LIBCPP_INLINE_VISIBILITY
9676f56d3eeSRoger Ferrer Ibanezbool
9686f56d3eeSRoger Ferrer Ibanezoperator==(const istream_iterator<_Tp, _CharT, _Traits, _Distance>& __x,
9696f56d3eeSRoger Ferrer Ibanez           const istream_iterator<_Tp, _CharT, _Traits, _Distance>& __y)
9706f56d3eeSRoger Ferrer Ibanez{
9716f56d3eeSRoger Ferrer Ibanez    return __x.__in_stream_ == __y.__in_stream_;
9726f56d3eeSRoger Ferrer Ibanez}
9736f56d3eeSRoger Ferrer Ibanez
9746f56d3eeSRoger Ferrer Ibaneztemplate <class _Tp, class _CharT, class _Traits, class _Distance>
9756f56d3eeSRoger Ferrer Ibanezinline _LIBCPP_INLINE_VISIBILITY
9766f56d3eeSRoger Ferrer Ibanezbool
9776f56d3eeSRoger Ferrer Ibanezoperator!=(const istream_iterator<_Tp, _CharT, _Traits, _Distance>& __x,
9786f56d3eeSRoger Ferrer Ibanez           const istream_iterator<_Tp, _CharT, _Traits, _Distance>& __y)
9796f56d3eeSRoger Ferrer Ibanez{
9806f56d3eeSRoger Ferrer Ibanez    return !(__x == __y);
9816f56d3eeSRoger Ferrer Ibanez}
9826f56d3eeSRoger Ferrer Ibanez
9833e519524SHoward Hinnanttemplate <class _Tp, class _CharT = char, class _Traits = char_traits<_CharT> >
984e2f2d1edSEric Fiselierclass _LIBCPP_TEMPLATE_VIS ostream_iterator
9853e519524SHoward Hinnant    : public iterator<output_iterator_tag, void, void, void, void>
9863e519524SHoward Hinnant{
9873e519524SHoward Hinnantpublic:
9883e519524SHoward Hinnant    typedef _CharT char_type;
9893e519524SHoward Hinnant    typedef _Traits traits_type;
9903e519524SHoward Hinnant    typedef basic_ostream<_CharT,_Traits> ostream_type;
9913e519524SHoward Hinnantprivate:
9923e519524SHoward Hinnant    ostream_type* __out_stream_;
9933e519524SHoward Hinnant    const char_type* __delim_;
9943e519524SHoward Hinnantpublic:
995853042cfSMarshall Clow    _LIBCPP_INLINE_VISIBILITY ostream_iterator(ostream_type& __s) _NOEXCEPT
996bc6a7df0SMarshall Clow        : __out_stream_(_VSTD::addressof(__s)), __delim_(0) {}
997853042cfSMarshall Clow    _LIBCPP_INLINE_VISIBILITY ostream_iterator(ostream_type& __s, const _CharT* __delimiter) _NOEXCEPT
998bc6a7df0SMarshall Clow        : __out_stream_(_VSTD::addressof(__s)), __delim_(__delimiter) {}
999e4383379SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY ostream_iterator& operator=(const _Tp& __value_)
10003e519524SHoward Hinnant        {
1001e4383379SHoward Hinnant            *__out_stream_ << __value_;
10023e519524SHoward Hinnant            if (__delim_)
10033e519524SHoward Hinnant                *__out_stream_ << __delim_;
10043e519524SHoward Hinnant            return *this;
10053e519524SHoward Hinnant        }
10063e519524SHoward Hinnant
10073e519524SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY ostream_iterator& operator*()     {return *this;}
10083e519524SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY ostream_iterator& operator++()    {return *this;}
10093e519524SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY ostream_iterator& operator++(int) {return *this;}
10103e519524SHoward Hinnant};
10113e519524SHoward Hinnant
10123e519524SHoward Hinnanttemplate<class _CharT, class _Traits>
1013e2f2d1edSEric Fiselierclass _LIBCPP_TEMPLATE_VIS istreambuf_iterator
10143e519524SHoward Hinnant    : public iterator<input_iterator_tag, _CharT,
10153e519524SHoward Hinnant                      typename _Traits::off_type, _CharT*,
10163e519524SHoward Hinnant                      _CharT>
10173e519524SHoward Hinnant{
10183e519524SHoward Hinnantpublic:
10193e519524SHoward Hinnant    typedef _CharT                          char_type;
10203e519524SHoward Hinnant    typedef _Traits                         traits_type;
10213e519524SHoward Hinnant    typedef typename _Traits::int_type      int_type;
10223e519524SHoward Hinnant    typedef basic_streambuf<_CharT,_Traits> streambuf_type;
10233e519524SHoward Hinnant    typedef basic_istream<_CharT,_Traits>   istream_type;
10243e519524SHoward Hinnantprivate:
1025dfdf5085SHoward Hinnant    mutable streambuf_type* __sbuf_;
10263e519524SHoward Hinnant
10273e519524SHoward Hinnant    class __proxy
10283e519524SHoward Hinnant    {
10293e519524SHoward Hinnant        char_type __keep_;
10303e519524SHoward Hinnant        streambuf_type* __sbuf_;
10313e519524SHoward Hinnant        _LIBCPP_INLINE_VISIBILITY __proxy(char_type __c, streambuf_type* __s)
10323e519524SHoward Hinnant            : __keep_(__c), __sbuf_(__s) {}
10333e519524SHoward Hinnant        friend class istreambuf_iterator;
10343e519524SHoward Hinnant    public:
10353e519524SHoward Hinnant        _LIBCPP_INLINE_VISIBILITY char_type operator*() const {return __keep_;}
10363e519524SHoward Hinnant    };
10373e519524SHoward Hinnant
1038848a5374SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY
1039dfdf5085SHoward Hinnant    bool __test_for_eof() const
10403e519524SHoward Hinnant    {
10413e519524SHoward Hinnant        if (__sbuf_ && traits_type::eq_int_type(__sbuf_->sgetc(), traits_type::eof()))
10423e519524SHoward Hinnant            __sbuf_ = 0;
1043dfdf5085SHoward Hinnant        return __sbuf_ == 0;
10443e519524SHoward Hinnant    }
10453e519524SHoward Hinnantpublic:
1046dfdf5085SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR istreambuf_iterator() _NOEXCEPT : __sbuf_(0) {}
10478e882dcbSHoward Hinnant    _LIBCPP_INLINE_VISIBILITY istreambuf_iterator(istream_type& __s) _NOEXCEPT
1048a96d7458SHoward Hinnant        : __sbuf_(__s.rdbuf()) {}
10498e882dcbSHoward Hinnant    _LIBCPP_INLINE_VISIBILITY istreambuf_iterator(streambuf_type* __s) _NOEXCEPT
1050a96d7458SHoward Hinnant        : __sbuf_(__s) {}
10518e882dcbSHoward Hinnant    _LIBCPP_INLINE_VISIBILITY istreambuf_iterator(const __proxy& __p) _NOEXCEPT
10523e519524SHoward Hinnant        : __sbuf_(__p.__sbuf_) {}
10533e519524SHoward Hinnant
1054c206366fSHoward Hinnant    _LIBCPP_INLINE_VISIBILITY char_type  operator*() const
1055c206366fSHoward Hinnant        {return static_cast<char_type>(__sbuf_->sgetc());}
10563e519524SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY istreambuf_iterator& operator++()
10573e519524SHoward Hinnant        {
1058dfdf5085SHoward Hinnant            __sbuf_->sbumpc();
10593e519524SHoward Hinnant            return *this;
10603e519524SHoward Hinnant        }
10613e519524SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY __proxy              operator++(int)
10623e519524SHoward Hinnant        {
1063dfdf5085SHoward Hinnant            return __proxy(__sbuf_->sbumpc(), __sbuf_);
10643e519524SHoward Hinnant        }
10653e519524SHoward Hinnant
10663e519524SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY bool equal(const istreambuf_iterator& __b) const
1067dfdf5085SHoward Hinnant        {return __test_for_eof() == __b.__test_for_eof();}
10683e519524SHoward Hinnant};
10693e519524SHoward Hinnant
10703e519524SHoward Hinnanttemplate <class _CharT, class _Traits>
10713e519524SHoward Hinnantinline _LIBCPP_INLINE_VISIBILITY
10723e519524SHoward Hinnantbool operator==(const istreambuf_iterator<_CharT,_Traits>& __a,
10733e519524SHoward Hinnant                const istreambuf_iterator<_CharT,_Traits>& __b)
10743e519524SHoward Hinnant                {return __a.equal(__b);}
10753e519524SHoward Hinnant
10763e519524SHoward Hinnanttemplate <class _CharT, class _Traits>
10773e519524SHoward Hinnantinline _LIBCPP_INLINE_VISIBILITY
10783e519524SHoward Hinnantbool operator!=(const istreambuf_iterator<_CharT,_Traits>& __a,
10793e519524SHoward Hinnant                const istreambuf_iterator<_CharT,_Traits>& __b)
10803e519524SHoward Hinnant                {return !__a.equal(__b);}
10813e519524SHoward Hinnant
10823e519524SHoward Hinnanttemplate <class _CharT, class _Traits>
1083e2f2d1edSEric Fiselierclass _LIBCPP_TEMPLATE_VIS ostreambuf_iterator
10843e519524SHoward Hinnant    : public iterator<output_iterator_tag, void, void, void, void>
10853e519524SHoward Hinnant{
10863e519524SHoward Hinnantpublic:
10873e519524SHoward Hinnant    typedef _CharT                          char_type;
10883e519524SHoward Hinnant    typedef _Traits                         traits_type;
10893e519524SHoward Hinnant    typedef basic_streambuf<_CharT,_Traits> streambuf_type;
10903e519524SHoward Hinnant    typedef basic_ostream<_CharT,_Traits>   ostream_type;
10913e519524SHoward Hinnantprivate:
10923e519524SHoward Hinnant    streambuf_type* __sbuf_;
10933e519524SHoward Hinnantpublic:
10948e882dcbSHoward Hinnant    _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator(ostream_type& __s) _NOEXCEPT
10953e519524SHoward Hinnant        : __sbuf_(__s.rdbuf()) {}
10968e882dcbSHoward Hinnant    _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator(streambuf_type* __s) _NOEXCEPT
10973e519524SHoward Hinnant        : __sbuf_(__s) {}
10983e519524SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator& operator=(_CharT __c)
10993e519524SHoward Hinnant        {
11003e519524SHoward Hinnant            if (__sbuf_ && traits_type::eq_int_type(__sbuf_->sputc(__c), traits_type::eof()))
11013e519524SHoward Hinnant                __sbuf_ = 0;
11023e519524SHoward Hinnant            return *this;
11033e519524SHoward Hinnant        }
11043e519524SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator& operator*()     {return *this;}
11053e519524SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator& operator++()    {return *this;}
11063e519524SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator& operator++(int) {return *this;}
11078e882dcbSHoward Hinnant    _LIBCPP_INLINE_VISIBILITY bool failed() const _NOEXCEPT {return __sbuf_ == 0;}
110892b5940fSHoward Hinnant
110992b5940fSHoward Hinnant    template <class _Ch, class _Tr>
111092b5940fSHoward Hinnant    friend
111192b5940fSHoward Hinnant    _LIBCPP_HIDDEN
111292b5940fSHoward Hinnant    ostreambuf_iterator<_Ch, _Tr>
111392b5940fSHoward Hinnant    __pad_and_output(ostreambuf_iterator<_Ch, _Tr> __s,
111492b5940fSHoward Hinnant                     const _Ch* __ob, const _Ch* __op, const _Ch* __oe,
111592b5940fSHoward Hinnant                     ios_base& __iob, _Ch __fl);
11163e519524SHoward Hinnant};
11173e519524SHoward Hinnant
11183e519524SHoward Hinnanttemplate <class _Iter>
1119e2f2d1edSEric Fiselierclass _LIBCPP_TEMPLATE_VIS move_iterator
11203e519524SHoward Hinnant{
11213e519524SHoward Hinnantprivate:
11223e519524SHoward Hinnant    _Iter __i;
11233e519524SHoward Hinnantpublic:
11243e519524SHoward Hinnant    typedef _Iter                                            iterator_type;
11253e519524SHoward Hinnant    typedef typename iterator_traits<iterator_type>::iterator_category iterator_category;
11263e519524SHoward Hinnant    typedef typename iterator_traits<iterator_type>::value_type value_type;
11273e519524SHoward Hinnant    typedef typename iterator_traits<iterator_type>::difference_type difference_type;
112805333fc8SMarshall Clow    typedef iterator_type pointer;
1129046492b9SEric Fiselier#ifndef _LIBCPP_CXX03_LANG
1130906c5085SEric Fiselier    typedef typename iterator_traits<iterator_type>::reference __reference;
1131906c5085SEric Fiselier    typedef typename conditional<
1132906c5085SEric Fiselier            is_reference<__reference>::value,
1133906c5085SEric Fiselier            typename remove_reference<__reference>::type&&,
1134906c5085SEric Fiselier            __reference
1135906c5085SEric Fiselier        >::type reference;
11363e519524SHoward Hinnant#else
11373e519524SHoward Hinnant    typedef typename iterator_traits<iterator_type>::reference reference;
11383e519524SHoward Hinnant#endif
11393e519524SHoward Hinnant
1140720ef472SMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
1141720ef472SMarshall Clow    move_iterator() : __i() {}
1142720ef472SMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
1143720ef472SMarshall Clow    explicit move_iterator(_Iter __x) : __i(__x) {}
1144720ef472SMarshall Clow    template <class _Up>
1145720ef472SMarshall Clow      _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
1146720ef472SMarshall Clow      move_iterator(const move_iterator<_Up>& __u) : __i(__u.base()) {}
1147720ef472SMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 _Iter base() const {return __i;}
1148720ef472SMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
1149720ef472SMarshall Clow    reference operator*() const { return static_cast<reference>(*__i); }
1150720ef472SMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
1151720ef472SMarshall Clow    pointer  operator->() const { return __i;}
1152720ef472SMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
1153720ef472SMarshall Clow    move_iterator& operator++() {++__i; return *this;}
1154720ef472SMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
1155720ef472SMarshall Clow    move_iterator  operator++(int) {move_iterator __tmp(*this); ++__i; return __tmp;}
1156720ef472SMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
1157720ef472SMarshall Clow    move_iterator& operator--() {--__i; return *this;}
1158720ef472SMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
1159720ef472SMarshall Clow    move_iterator  operator--(int) {move_iterator __tmp(*this); --__i; return __tmp;}
1160720ef472SMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
1161720ef472SMarshall Clow    move_iterator  operator+ (difference_type __n) const {return move_iterator(__i + __n);}
1162720ef472SMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
1163720ef472SMarshall Clow    move_iterator& operator+=(difference_type __n) {__i += __n; return *this;}
1164720ef472SMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
1165720ef472SMarshall Clow    move_iterator  operator- (difference_type __n) const {return move_iterator(__i - __n);}
1166720ef472SMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
1167720ef472SMarshall Clow    move_iterator& operator-=(difference_type __n) {__i -= __n; return *this;}
1168720ef472SMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
1169720ef472SMarshall Clow    reference operator[](difference_type __n) const { return static_cast<reference>(__i[__n]); }
11703e519524SHoward Hinnant};
11713e519524SHoward Hinnant
11723e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2>
1173720ef472SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
11743e519524SHoward Hinnantbool
11753e519524SHoward Hinnantoperator==(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y)
11763e519524SHoward Hinnant{
11773e519524SHoward Hinnant    return __x.base() == __y.base();
11783e519524SHoward Hinnant}
11793e519524SHoward Hinnant
11803e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2>
1181720ef472SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
11823e519524SHoward Hinnantbool
11833e519524SHoward Hinnantoperator<(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y)
11843e519524SHoward Hinnant{
11853e519524SHoward Hinnant    return __x.base() < __y.base();
11863e519524SHoward Hinnant}
11873e519524SHoward Hinnant
11883e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2>
1189720ef472SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
11903e519524SHoward Hinnantbool
11913e519524SHoward Hinnantoperator!=(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y)
11923e519524SHoward Hinnant{
11933e519524SHoward Hinnant    return __x.base() != __y.base();
11943e519524SHoward Hinnant}
11953e519524SHoward Hinnant
11963e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2>
1197720ef472SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
11983e519524SHoward Hinnantbool
11993e519524SHoward Hinnantoperator>(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y)
12003e519524SHoward Hinnant{
12013e519524SHoward Hinnant    return __x.base() > __y.base();
12023e519524SHoward Hinnant}
12033e519524SHoward Hinnant
12043e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2>
1205720ef472SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
12063e519524SHoward Hinnantbool
12073e519524SHoward Hinnantoperator>=(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y)
12083e519524SHoward Hinnant{
12093e519524SHoward Hinnant    return __x.base() >= __y.base();
12103e519524SHoward Hinnant}
12113e519524SHoward Hinnant
12123e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2>
1213720ef472SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
12143e519524SHoward Hinnantbool
12153e519524SHoward Hinnantoperator<=(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y)
12163e519524SHoward Hinnant{
12173e519524SHoward Hinnant    return __x.base() <= __y.base();
12183e519524SHoward Hinnant}
12193e519524SHoward Hinnant
12202ee83725SMarshall Clow#ifndef _LIBCPP_CXX03_LANG
1221947ce6b5SMarshall Clowtemplate <class _Iter1, class _Iter2>
1222720ef472SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
1223947ce6b5SMarshall Clowauto
1224947ce6b5SMarshall Clowoperator-(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y)
1225947ce6b5SMarshall Clow-> decltype(__x.base() - __y.base())
1226947ce6b5SMarshall Clow{
1227947ce6b5SMarshall Clow    return __x.base() - __y.base();
1228947ce6b5SMarshall Clow}
1229947ce6b5SMarshall Clow#else
12303e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2>
12313e519524SHoward Hinnantinline _LIBCPP_INLINE_VISIBILITY
12323e519524SHoward Hinnanttypename move_iterator<_Iter1>::difference_type
12333e519524SHoward Hinnantoperator-(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y)
12343e519524SHoward Hinnant{
12353e519524SHoward Hinnant    return __x.base() - __y.base();
12363e519524SHoward Hinnant}
1237947ce6b5SMarshall Clow#endif
12383e519524SHoward Hinnant
12393e519524SHoward Hinnanttemplate <class _Iter>
1240720ef472SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
12413e519524SHoward Hinnantmove_iterator<_Iter>
12423e519524SHoward Hinnantoperator+(typename move_iterator<_Iter>::difference_type __n, const move_iterator<_Iter>& __x)
12433e519524SHoward Hinnant{
12443e519524SHoward Hinnant    return move_iterator<_Iter>(__x.base() + __n);
12453e519524SHoward Hinnant}
12463e519524SHoward Hinnant
12473e519524SHoward Hinnanttemplate <class _Iter>
1248720ef472SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
12493e519524SHoward Hinnantmove_iterator<_Iter>
125054c83368SMarshall Clowmake_move_iterator(_Iter __i)
12513e519524SHoward Hinnant{
12523e519524SHoward Hinnant    return move_iterator<_Iter>(__i);
12533e519524SHoward Hinnant}
12543e519524SHoward Hinnant
12553e519524SHoward Hinnant// __wrap_iter
12563e519524SHoward Hinnant
12573e519524SHoward Hinnanttemplate <class _Iter> class __wrap_iter;
12583e519524SHoward Hinnant
12593e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2>
12609cad5025SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG
12613e519524SHoward Hinnantbool
126261b302f9SEric Fiselieroperator==(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
12633e519524SHoward Hinnant
12643e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2>
12659cad5025SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG
12663e519524SHoward Hinnantbool
126761b302f9SEric Fiselieroperator<(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
12683e519524SHoward Hinnant
12693e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2>
12709cad5025SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG
12713e519524SHoward Hinnantbool
127261b302f9SEric Fiselieroperator!=(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
12733e519524SHoward Hinnant
12743e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2>
12759cad5025SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG
12763e519524SHoward Hinnantbool
127761b302f9SEric Fiselieroperator>(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
12783e519524SHoward Hinnant
12793e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2>
12809cad5025SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG
12813e519524SHoward Hinnantbool
128261b302f9SEric Fiselieroperator>=(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
12833e519524SHoward Hinnant
12843e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2>
12859cad5025SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG
12863e519524SHoward Hinnantbool
128761b302f9SEric Fiselieroperator<=(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
12883e519524SHoward Hinnant
12892ee83725SMarshall Clow#ifndef _LIBCPP_CXX03_LANG
1290947ce6b5SMarshall Clowtemplate <class _Iter1, class _Iter2>
12919cad5025SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG
1292947ce6b5SMarshall Clowauto
129361b302f9SEric Fiselieroperator-(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT
1294947ce6b5SMarshall Clow-> decltype(__x.base() - __y.base());
1295947ce6b5SMarshall Clow#else
12963e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2>
1297aeb85680SHoward Hinnant_LIBCPP_INLINE_VISIBILITY
12983e519524SHoward Hinnanttypename __wrap_iter<_Iter1>::difference_type
129961b302f9SEric Fiselieroperator-(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
1300947ce6b5SMarshall Clow#endif
13013e519524SHoward Hinnant
13023e519524SHoward Hinnanttemplate <class _Iter>
13039cad5025SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG
13043e519524SHoward Hinnant__wrap_iter<_Iter>
130561b302f9SEric Fiselieroperator+(typename __wrap_iter<_Iter>::difference_type, __wrap_iter<_Iter>) _NOEXCEPT;
13063e519524SHoward Hinnant
1307aeb85680SHoward Hinnanttemplate <class _Ip, class _Op> _Op _LIBCPP_INLINE_VISIBILITY copy(_Ip, _Ip, _Op);
1308aeb85680SHoward Hinnanttemplate <class _B1, class _B2> _B2 _LIBCPP_INLINE_VISIBILITY copy_backward(_B1, _B1, _B2);
1309aeb85680SHoward Hinnanttemplate <class _Ip, class _Op> _Op _LIBCPP_INLINE_VISIBILITY move(_Ip, _Ip, _Op);
1310aeb85680SHoward Hinnanttemplate <class _B1, class _B2> _B2 _LIBCPP_INLINE_VISIBILITY move_backward(_B1, _B1, _B2);
13113e519524SHoward Hinnant
131214bd0bf0SEric Fiselier#if _LIBCPP_DEBUG_LEVEL < 2
131314bd0bf0SEric Fiselier
13143e519524SHoward Hinnanttemplate <class _Tp>
13159cad5025SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG
13163e519524SHoward Hinnanttypename enable_if
13173e519524SHoward Hinnant<
1318ca740483SHoward Hinnant    is_trivially_copy_assignable<_Tp>::value,
13193e519524SHoward Hinnant    _Tp*
13203e519524SHoward Hinnant>::type
13213e519524SHoward Hinnant__unwrap_iter(__wrap_iter<_Tp*>);
13223e519524SHoward Hinnant
132314bd0bf0SEric Fiselier#else
132414bd0bf0SEric Fiselier
132514bd0bf0SEric Fiseliertemplate <class _Tp>
13269cad5025SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG
132714bd0bf0SEric Fiseliertypename enable_if
132814bd0bf0SEric Fiselier<
132914bd0bf0SEric Fiselier    is_trivially_copy_assignable<_Tp>::value,
133014bd0bf0SEric Fiselier    __wrap_iter<_Tp*>
133114bd0bf0SEric Fiselier>::type
133214bd0bf0SEric Fiselier__unwrap_iter(__wrap_iter<_Tp*> __i);
133314bd0bf0SEric Fiselier
133414bd0bf0SEric Fiselier#endif
133514bd0bf0SEric Fiselier
13363e519524SHoward Hinnanttemplate <class _Iter>
13373e519524SHoward Hinnantclass __wrap_iter
13383e519524SHoward Hinnant{
13393e519524SHoward Hinnantpublic:
13403e519524SHoward Hinnant    typedef _Iter                                                      iterator_type;
13413e519524SHoward Hinnant    typedef typename iterator_traits<iterator_type>::iterator_category iterator_category;
13423e519524SHoward Hinnant    typedef typename iterator_traits<iterator_type>::value_type        value_type;
13433e519524SHoward Hinnant    typedef typename iterator_traits<iterator_type>::difference_type   difference_type;
13443e519524SHoward Hinnant    typedef typename iterator_traits<iterator_type>::pointer           pointer;
13453e519524SHoward Hinnant    typedef typename iterator_traits<iterator_type>::reference         reference;
13463e519524SHoward Hinnantprivate:
13473e519524SHoward Hinnant    iterator_type __i;
13483e519524SHoward Hinnantpublic:
134961b302f9SEric Fiselier    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG __wrap_iter() _NOEXCEPT
135007186a7dSMarshall Clow#if _LIBCPP_STD_VER > 11
135107186a7dSMarshall Clow                : __i{}
135207186a7dSMarshall Clow#endif
1353c36bfc49SHoward Hinnant    {
1354c36bfc49SHoward Hinnant#if _LIBCPP_DEBUG_LEVEL >= 2
1355c36bfc49SHoward Hinnant        __get_db()->__insert_i(this);
1356c36bfc49SHoward Hinnant#endif
1357c36bfc49SHoward Hinnant    }
13589cad5025SMarshall Clow    template <class _Up> _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG
13599cad5025SMarshall Clow        __wrap_iter(const __wrap_iter<_Up>& __u,
136061b302f9SEric Fiselier            typename enable_if<is_convertible<_Up, iterator_type>::value>::type* = 0) _NOEXCEPT
1361f554add5SHoward Hinnant            : __i(__u.base())
1362f554add5SHoward Hinnant    {
1363cec9af9eSHoward Hinnant#if _LIBCPP_DEBUG_LEVEL >= 2
1364f554add5SHoward Hinnant        __get_db()->__iterator_copy(this, &__u);
1365f554add5SHoward Hinnant#endif
1366f554add5SHoward Hinnant    }
1367cec9af9eSHoward Hinnant#if _LIBCPP_DEBUG_LEVEL >= 2
13689cad5025SMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG
1369f554add5SHoward Hinnant    __wrap_iter(const __wrap_iter& __x)
1370f554add5SHoward Hinnant        : __i(__x.base())
1371f554add5SHoward Hinnant    {
1372f554add5SHoward Hinnant        __get_db()->__iterator_copy(this, &__x);
1373f554add5SHoward Hinnant    }
13749cad5025SMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG
1375f554add5SHoward Hinnant    __wrap_iter& operator=(const __wrap_iter& __x)
1376f554add5SHoward Hinnant    {
1377f554add5SHoward Hinnant        if (this != &__x)
1378f554add5SHoward Hinnant        {
1379f554add5SHoward Hinnant            __get_db()->__iterator_copy(this, &__x);
1380f554add5SHoward Hinnant            __i = __x.__i;
1381f554add5SHoward Hinnant        }
1382f554add5SHoward Hinnant        return *this;
1383f554add5SHoward Hinnant    }
13849cad5025SMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG
1385f554add5SHoward Hinnant    ~__wrap_iter()
1386f554add5SHoward Hinnant    {
1387f554add5SHoward Hinnant        __get_db()->__erase_i(this);
1388f554add5SHoward Hinnant    }
1389f554add5SHoward Hinnant#endif
139061b302f9SEric Fiselier    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG reference operator*() const _NOEXCEPT
1391f554add5SHoward Hinnant    {
1392cec9af9eSHoward Hinnant#if _LIBCPP_DEBUG_LEVEL >= 2
1393f554add5SHoward Hinnant        _LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this),
1394f554add5SHoward Hinnant                       "Attempted to dereference a non-dereferenceable iterator");
1395cec9af9eSHoward Hinnant#endif
1396f554add5SHoward Hinnant        return *__i;
1397f554add5SHoward Hinnant    }
139861b302f9SEric Fiselier    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG pointer  operator->() const _NOEXCEPT
13993ec1f00bSHoward Hinnant    {
14003ec1f00bSHoward Hinnant#if _LIBCPP_DEBUG_LEVEL >= 2
14013ec1f00bSHoward Hinnant        _LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this),
14023ec1f00bSHoward Hinnant                       "Attempted to dereference a non-dereferenceable iterator");
14033ec1f00bSHoward Hinnant#endif
140405333fc8SMarshall Clow        return (pointer)_VSTD::addressof(*__i);
14053ec1f00bSHoward Hinnant    }
140661b302f9SEric Fiselier    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG __wrap_iter& operator++() _NOEXCEPT
1407f554add5SHoward Hinnant    {
1408cec9af9eSHoward Hinnant#if _LIBCPP_DEBUG_LEVEL >= 2
1409f554add5SHoward Hinnant        _LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this),
1410f554add5SHoward Hinnant                       "Attempted to increment non-incrementable iterator");
1411cec9af9eSHoward Hinnant#endif
1412f554add5SHoward Hinnant        ++__i;
1413f554add5SHoward Hinnant        return *this;
1414f554add5SHoward Hinnant    }
141561b302f9SEric Fiselier    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG __wrap_iter  operator++(int) _NOEXCEPT
1416f554add5SHoward Hinnant        {__wrap_iter __tmp(*this); ++(*this); return __tmp;}
14174ce0a916SMarshall Clow
141861b302f9SEric Fiselier    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG __wrap_iter& operator--() _NOEXCEPT
1419f554add5SHoward Hinnant    {
1420cec9af9eSHoward Hinnant#if _LIBCPP_DEBUG_LEVEL >= 2
1421f554add5SHoward Hinnant        _LIBCPP_ASSERT(__get_const_db()->__decrementable(this),
1422f554add5SHoward Hinnant                       "Attempted to decrement non-decrementable iterator");
1423cec9af9eSHoward Hinnant#endif
1424f554add5SHoward Hinnant        --__i;
1425f554add5SHoward Hinnant        return *this;
1426f554add5SHoward Hinnant    }
142761b302f9SEric Fiselier    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG __wrap_iter  operator--(int) _NOEXCEPT
1428f554add5SHoward Hinnant        {__wrap_iter __tmp(*this); --(*this); return __tmp;}
142961b302f9SEric Fiselier    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG __wrap_iter  operator+ (difference_type __n) const _NOEXCEPT
1430f554add5SHoward Hinnant        {__wrap_iter __w(*this); __w += __n; return __w;}
143161b302f9SEric Fiselier    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG __wrap_iter& operator+=(difference_type __n) _NOEXCEPT
1432f554add5SHoward Hinnant    {
1433cec9af9eSHoward Hinnant#if _LIBCPP_DEBUG_LEVEL >= 2
1434f554add5SHoward Hinnant        _LIBCPP_ASSERT(__get_const_db()->__addable(this, __n),
1435f554add5SHoward Hinnant                   "Attempted to add/subtract iterator outside of valid range");
1436cec9af9eSHoward Hinnant#endif
1437f554add5SHoward Hinnant        __i += __n;
1438f554add5SHoward Hinnant        return *this;
1439f554add5SHoward Hinnant    }
144061b302f9SEric Fiselier    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG __wrap_iter  operator- (difference_type __n) const _NOEXCEPT
1441f554add5SHoward Hinnant        {return *this + (-__n);}
144261b302f9SEric Fiselier    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG __wrap_iter& operator-=(difference_type __n) _NOEXCEPT
1443f554add5SHoward Hinnant        {*this += -__n; return *this;}
144461b302f9SEric Fiselier    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG reference    operator[](difference_type __n) const _NOEXCEPT
1445f554add5SHoward Hinnant    {
1446cec9af9eSHoward Hinnant#if _LIBCPP_DEBUG_LEVEL >= 2
1447f554add5SHoward Hinnant        _LIBCPP_ASSERT(__get_const_db()->__subscriptable(this, __n),
1448f554add5SHoward Hinnant                   "Attempted to subscript iterator outside of valid range");
1449cec9af9eSHoward Hinnant#endif
1450f554add5SHoward Hinnant        return __i[__n];
1451f554add5SHoward Hinnant    }
14523e519524SHoward Hinnant
145361b302f9SEric Fiselier    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG iterator_type base() const _NOEXCEPT {return __i;}
14543e519524SHoward Hinnant
14553e519524SHoward Hinnantprivate:
1456cec9af9eSHoward Hinnant#if _LIBCPP_DEBUG_LEVEL >= 2
14579cad5025SMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG __wrap_iter(const void* __p, iterator_type __x) : __i(__x)
1458f554add5SHoward Hinnant    {
1459f554add5SHoward Hinnant        __get_db()->__insert_ic(this, __p);
1460f554add5SHoward Hinnant    }
1461fc88dbd2SHoward Hinnant#else
146261b302f9SEric Fiselier    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG __wrap_iter(iterator_type __x) _NOEXCEPT : __i(__x) {}
1463f554add5SHoward Hinnant#endif
14643e519524SHoward Hinnant
14653e519524SHoward Hinnant    template <class _Up> friend class __wrap_iter;
14663e519524SHoward Hinnant    template <class _CharT, class _Traits, class _Alloc> friend class basic_string;
1467e2f2d1edSEric Fiselier    template <class _Tp, class _Alloc> friend class _LIBCPP_TEMPLATE_VIS vector;
14687ad06a93SMarshall Clow    template <class _Tp, size_t> friend class _LIBCPP_TEMPLATE_VIS span;
14693e519524SHoward Hinnant
14703e519524SHoward Hinnant    template <class _Iter1, class _Iter2>
14719cad5025SMarshall Clow    _LIBCPP_CONSTEXPR_IF_NODEBUG friend
14723e519524SHoward Hinnant    bool
147361b302f9SEric Fiselier    operator==(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
14743e519524SHoward Hinnant
14753e519524SHoward Hinnant    template <class _Iter1, class _Iter2>
14769cad5025SMarshall Clow    _LIBCPP_CONSTEXPR_IF_NODEBUG friend
14773e519524SHoward Hinnant    bool
147861b302f9SEric Fiselier    operator<(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
14793e519524SHoward Hinnant
14803e519524SHoward Hinnant    template <class _Iter1, class _Iter2>
14819cad5025SMarshall Clow    _LIBCPP_CONSTEXPR_IF_NODEBUG friend
14823e519524SHoward Hinnant    bool
148361b302f9SEric Fiselier    operator!=(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
14843e519524SHoward Hinnant
14853e519524SHoward Hinnant    template <class _Iter1, class _Iter2>
14869cad5025SMarshall Clow    _LIBCPP_CONSTEXPR_IF_NODEBUG friend
14873e519524SHoward Hinnant    bool
148861b302f9SEric Fiselier    operator>(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
14893e519524SHoward Hinnant
14903e519524SHoward Hinnant    template <class _Iter1, class _Iter2>
14919cad5025SMarshall Clow    _LIBCPP_CONSTEXPR_IF_NODEBUG friend
14923e519524SHoward Hinnant    bool
149361b302f9SEric Fiselier    operator>=(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
14943e519524SHoward Hinnant
14953e519524SHoward Hinnant    template <class _Iter1, class _Iter2>
14969cad5025SMarshall Clow    _LIBCPP_CONSTEXPR_IF_NODEBUG friend
14973e519524SHoward Hinnant    bool
149861b302f9SEric Fiselier    operator<=(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
14993e519524SHoward Hinnant
15002ee83725SMarshall Clow#ifndef _LIBCPP_CXX03_LANG
1501947ce6b5SMarshall Clow    template <class _Iter1, class _Iter2>
15029cad5025SMarshall Clow    _LIBCPP_CONSTEXPR_IF_NODEBUG friend
1503947ce6b5SMarshall Clow    auto
150461b302f9SEric Fiselier    operator-(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT
1505947ce6b5SMarshall Clow    -> decltype(__x.base() - __y.base());
1506947ce6b5SMarshall Clow#else
15073e519524SHoward Hinnant    template <class _Iter1, class _Iter2>
15089cad5025SMarshall Clow    _LIBCPP_CONSTEXPR_IF_NODEBUG friend
15093e519524SHoward Hinnant    typename __wrap_iter<_Iter1>::difference_type
151061b302f9SEric Fiselier    operator-(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
1511947ce6b5SMarshall Clow#endif
15123e519524SHoward Hinnant
15133e519524SHoward Hinnant    template <class _Iter1>
15149cad5025SMarshall Clow    _LIBCPP_CONSTEXPR_IF_NODEBUG friend
15153e519524SHoward Hinnant    __wrap_iter<_Iter1>
151661b302f9SEric Fiselier    operator+(typename __wrap_iter<_Iter1>::difference_type, __wrap_iter<_Iter1>) _NOEXCEPT;
15173e519524SHoward Hinnant
1518c003db1fSHoward Hinnant    template <class _Ip, class _Op> friend _Op copy(_Ip, _Ip, _Op);
15193e519524SHoward Hinnant    template <class _B1, class _B2> friend _B2 copy_backward(_B1, _B1, _B2);
1520c003db1fSHoward Hinnant    template <class _Ip, class _Op> friend _Op move(_Ip, _Ip, _Op);
15213e519524SHoward Hinnant    template <class _B1, class _B2> friend _B2 move_backward(_B1, _B1, _B2);
15223e519524SHoward Hinnant
152314bd0bf0SEric Fiselier#if _LIBCPP_DEBUG_LEVEL < 2
15243e519524SHoward Hinnant    template <class _Tp>
15259cad5025SMarshall Clow    _LIBCPP_CONSTEXPR_IF_NODEBUG friend
15263e519524SHoward Hinnant    typename enable_if
15273e519524SHoward Hinnant    <
1528ca740483SHoward Hinnant        is_trivially_copy_assignable<_Tp>::value,
15293e519524SHoward Hinnant        _Tp*
15303e519524SHoward Hinnant    >::type
15313e519524SHoward Hinnant    __unwrap_iter(__wrap_iter<_Tp*>);
153214bd0bf0SEric Fiselier#else
153314bd0bf0SEric Fiselier  template <class _Tp>
15349cad5025SMarshall Clow  inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG
153514bd0bf0SEric Fiselier  typename enable_if
153614bd0bf0SEric Fiselier  <
153714bd0bf0SEric Fiselier      is_trivially_copy_assignable<_Tp>::value,
153814bd0bf0SEric Fiselier      __wrap_iter<_Tp*>
153914bd0bf0SEric Fiselier  >::type
154014bd0bf0SEric Fiselier  __unwrap_iter(__wrap_iter<_Tp*> __i);
154114bd0bf0SEric Fiselier#endif
15423e519524SHoward Hinnant};
15433e519524SHoward Hinnant
15443e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2>
15459cad5025SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG
15463e519524SHoward Hinnantbool
154761b302f9SEric Fiselieroperator==(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT
15483e519524SHoward Hinnant{
15493e519524SHoward Hinnant    return __x.base() == __y.base();
15503e519524SHoward Hinnant}
15513e519524SHoward Hinnant
15523e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2>
15539cad5025SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG
15543e519524SHoward Hinnantbool
155561b302f9SEric Fiselieroperator<(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT
15563e519524SHoward Hinnant{
1557cec9af9eSHoward Hinnant#if _LIBCPP_DEBUG_LEVEL >= 2
155842a3046eSHoward Hinnant    _LIBCPP_ASSERT(__get_const_db()->__less_than_comparable(&__x, &__y),
1559f554add5SHoward Hinnant                   "Attempted to compare incomparable iterators");
1560cec9af9eSHoward Hinnant#endif
15613e519524SHoward Hinnant    return __x.base() < __y.base();
15623e519524SHoward Hinnant}
15633e519524SHoward Hinnant
15643e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2>
15659cad5025SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG
15663e519524SHoward Hinnantbool
156761b302f9SEric Fiselieroperator!=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT
15683e519524SHoward Hinnant{
1569f554add5SHoward Hinnant    return !(__x == __y);
15703e519524SHoward Hinnant}
15713e519524SHoward Hinnant
15723e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2>
15739cad5025SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG
15743e519524SHoward Hinnantbool
157561b302f9SEric Fiselieroperator>(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT
15763e519524SHoward Hinnant{
1577f554add5SHoward Hinnant    return __y < __x;
15783e519524SHoward Hinnant}
15793e519524SHoward Hinnant
15803e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2>
15819cad5025SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG
15823e519524SHoward Hinnantbool
158361b302f9SEric Fiselieroperator>=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT
15843e519524SHoward Hinnant{
1585f554add5SHoward Hinnant    return !(__x < __y);
15863e519524SHoward Hinnant}
15873e519524SHoward Hinnant
15883e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2>
15899cad5025SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG
15903e519524SHoward Hinnantbool
159161b302f9SEric Fiselieroperator<=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT
15923e519524SHoward Hinnant{
1593f554add5SHoward Hinnant    return !(__y < __x);
15943e519524SHoward Hinnant}
15953e519524SHoward Hinnant
15966e551ae1SHoward Hinnanttemplate <class _Iter1>
15979cad5025SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG
15986e551ae1SHoward Hinnantbool
159961b302f9SEric Fiselieroperator!=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEXCEPT
16006e551ae1SHoward Hinnant{
16016e551ae1SHoward Hinnant    return !(__x == __y);
16026e551ae1SHoward Hinnant}
16036e551ae1SHoward Hinnant
16046e551ae1SHoward Hinnanttemplate <class _Iter1>
16059cad5025SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG
16066e551ae1SHoward Hinnantbool
160761b302f9SEric Fiselieroperator>(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEXCEPT
16086e551ae1SHoward Hinnant{
16096e551ae1SHoward Hinnant    return __y < __x;
16106e551ae1SHoward Hinnant}
16116e551ae1SHoward Hinnant
16126e551ae1SHoward Hinnanttemplate <class _Iter1>
16139cad5025SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG
16146e551ae1SHoward Hinnantbool
161561b302f9SEric Fiselieroperator>=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEXCEPT
16166e551ae1SHoward Hinnant{
16176e551ae1SHoward Hinnant    return !(__x < __y);
16186e551ae1SHoward Hinnant}
16196e551ae1SHoward Hinnant
16206e551ae1SHoward Hinnanttemplate <class _Iter1>
16219cad5025SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG
16226e551ae1SHoward Hinnantbool
162361b302f9SEric Fiselieroperator<=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEXCEPT
16246e551ae1SHoward Hinnant{
16256e551ae1SHoward Hinnant    return !(__y < __x);
16266e551ae1SHoward Hinnant}
16276e551ae1SHoward Hinnant
16282ee83725SMarshall Clow#ifndef _LIBCPP_CXX03_LANG
1629947ce6b5SMarshall Clowtemplate <class _Iter1, class _Iter2>
16309cad5025SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG
1631947ce6b5SMarshall Clowauto
163261b302f9SEric Fiselieroperator-(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT
1633947ce6b5SMarshall Clow-> decltype(__x.base() - __y.base())
1634947ce6b5SMarshall Clow{
1635947ce6b5SMarshall Clow#if _LIBCPP_DEBUG_LEVEL >= 2
1636947ce6b5SMarshall Clow    _LIBCPP_ASSERT(__get_const_db()->__less_than_comparable(&__x, &__y),
1637947ce6b5SMarshall Clow                   "Attempted to subtract incompatible iterators");
1638947ce6b5SMarshall Clow#endif
1639947ce6b5SMarshall Clow    return __x.base() - __y.base();
1640947ce6b5SMarshall Clow}
1641947ce6b5SMarshall Clow#else
16423e519524SHoward Hinnanttemplate <class _Iter1, class _Iter2>
16439cad5025SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG
16443e519524SHoward Hinnanttypename __wrap_iter<_Iter1>::difference_type
164561b302f9SEric Fiselieroperator-(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT
16463e519524SHoward Hinnant{
1647cec9af9eSHoward Hinnant#if _LIBCPP_DEBUG_LEVEL >= 2
164842a3046eSHoward Hinnant    _LIBCPP_ASSERT(__get_const_db()->__less_than_comparable(&__x, &__y),
1649f554add5SHoward Hinnant                   "Attempted to subtract incompatible iterators");
1650cec9af9eSHoward Hinnant#endif
16513e519524SHoward Hinnant    return __x.base() - __y.base();
16523e519524SHoward Hinnant}
1653947ce6b5SMarshall Clow#endif
16543e519524SHoward Hinnant
16553e519524SHoward Hinnanttemplate <class _Iter>
16569cad5025SMarshall Clowinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_IF_NODEBUG
16573e519524SHoward Hinnant__wrap_iter<_Iter>
16583e519524SHoward Hinnantoperator+(typename __wrap_iter<_Iter>::difference_type __n,
165961b302f9SEric Fiselier          __wrap_iter<_Iter> __x) _NOEXCEPT
16603e519524SHoward Hinnant{
1661f554add5SHoward Hinnant    __x += __n;
1662f554add5SHoward Hinnant    return __x;
16633e519524SHoward Hinnant}
16643e519524SHoward Hinnant
166576b4afc0SMarshall Clowtemplate <class _Iter>
166676b4afc0SMarshall Clowstruct __libcpp_is_trivial_iterator
166776b4afc0SMarshall Clow    : public _LIBCPP_BOOL_CONSTANT(is_pointer<_Iter>::value) {};
166876b4afc0SMarshall Clow
166976b4afc0SMarshall Clowtemplate <class _Iter>
167076b4afc0SMarshall Clowstruct __libcpp_is_trivial_iterator<move_iterator<_Iter> >
167176b4afc0SMarshall Clow    : public _LIBCPP_BOOL_CONSTANT(__libcpp_is_trivial_iterator<_Iter>::value) {};
167276b4afc0SMarshall Clow
167376b4afc0SMarshall Clowtemplate <class _Iter>
167476b4afc0SMarshall Clowstruct __libcpp_is_trivial_iterator<reverse_iterator<_Iter> >
167576b4afc0SMarshall Clow    : public _LIBCPP_BOOL_CONSTANT(__libcpp_is_trivial_iterator<_Iter>::value) {};
167676b4afc0SMarshall Clow
167776b4afc0SMarshall Clowtemplate <class _Iter>
167876b4afc0SMarshall Clowstruct __libcpp_is_trivial_iterator<__wrap_iter<_Iter> >
167976b4afc0SMarshall Clow    : public _LIBCPP_BOOL_CONSTANT(__libcpp_is_trivial_iterator<_Iter>::value) {};
168076b4afc0SMarshall Clow
168176b4afc0SMarshall Clow
16823772a46aSMarshall Clowtemplate <class _Tp, size_t _Np>
16832ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
16843772a46aSMarshall Clow_Tp*
16853772a46aSMarshall Clowbegin(_Tp (&__array)[_Np])
16863772a46aSMarshall Clow{
16873772a46aSMarshall Clow    return __array;
16883772a46aSMarshall Clow}
16893772a46aSMarshall Clow
16903772a46aSMarshall Clowtemplate <class _Tp, size_t _Np>
16912ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
16923772a46aSMarshall Clow_Tp*
16933772a46aSMarshall Clowend(_Tp (&__array)[_Np])
16943772a46aSMarshall Clow{
16953772a46aSMarshall Clow    return __array + _Np;
16963772a46aSMarshall Clow}
16973772a46aSMarshall Clow
169854613ab4SEric Fiselier#if !defined(_LIBCPP_CXX03_LANG)
1699c66a611bSMarshall Clow
1700c003db1fSHoward Hinnanttemplate <class _Cp>
17012ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
17023e519524SHoward Hinnantauto
1703c003db1fSHoward Hinnantbegin(_Cp& __c) -> decltype(__c.begin())
17043e519524SHoward Hinnant{
17053e519524SHoward Hinnant    return __c.begin();
17063e519524SHoward Hinnant}
17073e519524SHoward Hinnant
1708c003db1fSHoward Hinnanttemplate <class _Cp>
17092ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
17103e519524SHoward Hinnantauto
1711c003db1fSHoward Hinnantbegin(const _Cp& __c) -> decltype(__c.begin())
17123e519524SHoward Hinnant{
17133e519524SHoward Hinnant    return __c.begin();
17143e519524SHoward Hinnant}
17153e519524SHoward Hinnant
1716c003db1fSHoward Hinnanttemplate <class _Cp>
17172ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
17183e519524SHoward Hinnantauto
1719c003db1fSHoward Hinnantend(_Cp& __c) -> decltype(__c.end())
17203e519524SHoward Hinnant{
17213e519524SHoward Hinnant    return __c.end();
17223e519524SHoward Hinnant}
17233e519524SHoward Hinnant
1724c003db1fSHoward Hinnanttemplate <class _Cp>
17252ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
17263e519524SHoward Hinnantauto
1727c003db1fSHoward Hinnantend(const _Cp& __c) -> decltype(__c.end())
17283e519524SHoward Hinnant{
17293e519524SHoward Hinnant    return __c.end();
17303e519524SHoward Hinnant}
17313e519524SHoward Hinnant
17321e548c72SMarshall Clow#if _LIBCPP_STD_VER > 11
17331e548c72SMarshall Clow
17343772a46aSMarshall Clowtemplate <class _Tp, size_t _Np>
17352ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
17363772a46aSMarshall Clowreverse_iterator<_Tp*> rbegin(_Tp (&__array)[_Np])
17373772a46aSMarshall Clow{
17383772a46aSMarshall Clow    return reverse_iterator<_Tp*>(__array + _Np);
17393772a46aSMarshall Clow}
17403772a46aSMarshall Clow
17413772a46aSMarshall Clowtemplate <class _Tp, size_t _Np>
17422ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
17433772a46aSMarshall Clowreverse_iterator<_Tp*> rend(_Tp (&__array)[_Np])
17443772a46aSMarshall Clow{
17453772a46aSMarshall Clow    return reverse_iterator<_Tp*>(__array);
17463772a46aSMarshall Clow}
17473772a46aSMarshall Clow
17483772a46aSMarshall Clowtemplate <class _Ep>
17492ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
17503772a46aSMarshall Clowreverse_iterator<const _Ep*> rbegin(initializer_list<_Ep> __il)
17513772a46aSMarshall Clow{
17523772a46aSMarshall Clow    return reverse_iterator<const _Ep*>(__il.end());
17533772a46aSMarshall Clow}
17543772a46aSMarshall Clow
17553772a46aSMarshall Clowtemplate <class _Ep>
17562ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
17573772a46aSMarshall Clowreverse_iterator<const _Ep*> rend(initializer_list<_Ep> __il)
17583772a46aSMarshall Clow{
17593772a46aSMarshall Clow    return reverse_iterator<const _Ep*>(__il.begin());
17603772a46aSMarshall Clow}
17613772a46aSMarshall Clow
17621e548c72SMarshall Clowtemplate <class _Cp>
17632ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
17647725546aSMarshall Clowauto cbegin(const _Cp& __c) -> decltype(_VSTD::begin(__c))
17651e548c72SMarshall Clow{
17667725546aSMarshall Clow    return _VSTD::begin(__c);
17671e548c72SMarshall Clow}
17681e548c72SMarshall Clow
17691e548c72SMarshall Clowtemplate <class _Cp>
17702ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
17717725546aSMarshall Clowauto cend(const _Cp& __c) -> decltype(_VSTD::end(__c))
17721e548c72SMarshall Clow{
17737725546aSMarshall Clow    return _VSTD::end(__c);
17741e548c72SMarshall Clow}
17751e548c72SMarshall Clow
17761e548c72SMarshall Clowtemplate <class _Cp>
17772ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
17781e548c72SMarshall Clowauto rbegin(_Cp& __c) -> decltype(__c.rbegin())
17791e548c72SMarshall Clow{
17801e548c72SMarshall Clow    return __c.rbegin();
17811e548c72SMarshall Clow}
17821e548c72SMarshall Clow
17831e548c72SMarshall Clowtemplate <class _Cp>
17842ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
17851e548c72SMarshall Clowauto rbegin(const _Cp& __c) -> decltype(__c.rbegin())
17861e548c72SMarshall Clow{
17871e548c72SMarshall Clow    return __c.rbegin();
17881e548c72SMarshall Clow}
17891e548c72SMarshall Clow
17901e548c72SMarshall Clowtemplate <class _Cp>
17912ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
17921e548c72SMarshall Clowauto rend(_Cp& __c) -> decltype(__c.rend())
17931e548c72SMarshall Clow{
17941e548c72SMarshall Clow    return __c.rend();
17951e548c72SMarshall Clow}
17961e548c72SMarshall Clow
17971e548c72SMarshall Clowtemplate <class _Cp>
17982ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
17991e548c72SMarshall Clowauto rend(const _Cp& __c) -> decltype(__c.rend())
18001e548c72SMarshall Clow{
18011e548c72SMarshall Clow    return __c.rend();
18021e548c72SMarshall Clow}
18031e548c72SMarshall Clow
18041e548c72SMarshall Clowtemplate <class _Cp>
18052ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
18067725546aSMarshall Clowauto crbegin(const _Cp& __c) -> decltype(_VSTD::rbegin(__c))
18071e548c72SMarshall Clow{
18087725546aSMarshall Clow    return _VSTD::rbegin(__c);
18091e548c72SMarshall Clow}
18101e548c72SMarshall Clow
18111e548c72SMarshall Clowtemplate <class _Cp>
18122ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
18137725546aSMarshall Clowauto crend(const _Cp& __c) -> decltype(_VSTD::rend(__c))
18141e548c72SMarshall Clow{
18157725546aSMarshall Clow    return _VSTD::rend(__c);
18161e548c72SMarshall Clow}
18171e548c72SMarshall Clow
18181e548c72SMarshall Clow#endif
18191e548c72SMarshall Clow
18201e548c72SMarshall Clow
182154613ab4SEric Fiselier#else  // defined(_LIBCPP_CXX03_LANG)
18223e519524SHoward Hinnant
1823c003db1fSHoward Hinnanttemplate <class _Cp>
18242ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY
1825c003db1fSHoward Hinnanttypename _Cp::iterator
1826c003db1fSHoward Hinnantbegin(_Cp& __c)
18273e519524SHoward Hinnant{
18283e519524SHoward Hinnant    return __c.begin();
18293e519524SHoward Hinnant}
18303e519524SHoward Hinnant
1831c003db1fSHoward Hinnanttemplate <class _Cp>
18322ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY
1833c003db1fSHoward Hinnanttypename _Cp::const_iterator
1834c003db1fSHoward Hinnantbegin(const _Cp& __c)
18353e519524SHoward Hinnant{
18363e519524SHoward Hinnant    return __c.begin();
18373e519524SHoward Hinnant}
18383e519524SHoward Hinnant
1839c003db1fSHoward Hinnanttemplate <class _Cp>
18402ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY
1841c003db1fSHoward Hinnanttypename _Cp::iterator
1842c003db1fSHoward Hinnantend(_Cp& __c)
18433e519524SHoward Hinnant{
18443e519524SHoward Hinnant    return __c.end();
18453e519524SHoward Hinnant}
18463e519524SHoward Hinnant
1847c003db1fSHoward Hinnanttemplate <class _Cp>
18482ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY
1849c003db1fSHoward Hinnanttypename _Cp::const_iterator
1850c003db1fSHoward Hinnantend(const _Cp& __c)
18513e519524SHoward Hinnant{
18523e519524SHoward Hinnant    return __c.end();
18533e519524SHoward Hinnant}
18543e519524SHoward Hinnant
185554613ab4SEric Fiselier#endif  // !defined(_LIBCPP_CXX03_LANG)
18563e519524SHoward Hinnant
1857ad755104SMarshall Clow#if _LIBCPP_STD_VER > 14
1858d1dcda19SMarshall Clow
1859d1dcda19SMarshall Clow// #if _LIBCPP_STD_VER > 11
1860d1dcda19SMarshall Clow// template <>
1861d1dcda19SMarshall Clow// struct _LIBCPP_TEMPLATE_VIS plus<void>
1862d1dcda19SMarshall Clow// {
1863d1dcda19SMarshall Clow//     template <class _T1, class _T2>
1864d1dcda19SMarshall Clow//     _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY
1865d1dcda19SMarshall Clow//     auto operator()(_T1&& __t, _T2&& __u) const
1866d1dcda19SMarshall Clow//     _NOEXCEPT_(noexcept(_VSTD::forward<_T1>(__t) + _VSTD::forward<_T2>(__u)))
1867d1dcda19SMarshall Clow//     -> decltype        (_VSTD::forward<_T1>(__t) + _VSTD::forward<_T2>(__u))
1868d1dcda19SMarshall Clow//         { return        _VSTD::forward<_T1>(__t) + _VSTD::forward<_T2>(__u); }
1869d1dcda19SMarshall Clow//     typedef void is_transparent;
1870d1dcda19SMarshall Clow// };
1871d1dcda19SMarshall Clow// #endif
1872d1dcda19SMarshall Clow
187388d21343SMarshall Clowtemplate <class _Cont>
18742ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY
1875d1dcda19SMarshall Clowconstexpr auto size(const _Cont& __c)
1876d1dcda19SMarshall Clow_NOEXCEPT_(noexcept(__c.size()))
1877d1dcda19SMarshall Clow-> decltype        (__c.size())
1878d1dcda19SMarshall Clow{ return            __c.size(); }
1879ad755104SMarshall Clow
188088d21343SMarshall Clowtemplate <class _Tp, size_t _Sz>
18812ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY
1882fd838227SEric Fiselierconstexpr size_t size(const _Tp (&)[_Sz]) noexcept { return _Sz; }
1883ad755104SMarshall Clow
18847d3986eaSMarshall Clow#if _LIBCPP_STD_VER > 17
18857d3986eaSMarshall Clowtemplate <class _Cont>
18862ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY
18877d3986eaSMarshall Clowconstexpr auto ssize(const _Cont& __c)
18887d3986eaSMarshall Clow_NOEXCEPT_(noexcept(static_cast<common_type_t<ptrdiff_t, make_signed_t<decltype(__c.size())>>>(__c.size())))
18897d3986eaSMarshall Clow->                              common_type_t<ptrdiff_t, make_signed_t<decltype(__c.size())>>
18907d3986eaSMarshall Clow{ return            static_cast<common_type_t<ptrdiff_t, make_signed_t<decltype(__c.size())>>>(__c.size()); }
18917d3986eaSMarshall Clow
18927d3986eaSMarshall Clowtemplate <class _Tp, ptrdiff_t _Sz>
18932ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY
18947d3986eaSMarshall Clowconstexpr ptrdiff_t ssize(const _Tp (&)[_Sz]) noexcept { return _Sz; }
18957d3986eaSMarshall Clow#endif
18967d3986eaSMarshall Clow
189788d21343SMarshall Clowtemplate <class _Cont>
18982ffa1705SMarshall Clow_LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_INLINE_VISIBILITY
1899d1dcda19SMarshall Clowconstexpr auto empty(const _Cont& __c)
1900d1dcda19SMarshall Clow_NOEXCEPT_(noexcept(__c.empty()))
1901d1dcda19SMarshall Clow-> decltype        (__c.empty())
1902d1dcda19SMarshall Clow{ return            __c.empty(); }
1903ad755104SMarshall Clow
190488d21343SMarshall Clowtemplate <class _Tp, size_t _Sz>
19052ffa1705SMarshall Clow_LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_INLINE_VISIBILITY
1906fd838227SEric Fiselierconstexpr bool empty(const _Tp (&)[_Sz]) noexcept { return false; }
1907ad755104SMarshall Clow
1908ad755104SMarshall Clowtemplate <class _Ep>
19092ffa1705SMarshall Clow_LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_INLINE_VISIBILITY
1910ad755104SMarshall Clowconstexpr bool empty(initializer_list<_Ep> __il) noexcept { return __il.size() == 0; }
1911ad755104SMarshall Clow
191288d21343SMarshall Clowtemplate <class _Cont> constexpr
19132ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY
1914d1dcda19SMarshall Clowauto data(_Cont& __c)
1915d1dcda19SMarshall Clow_NOEXCEPT_(noexcept(__c.data()))
1916d1dcda19SMarshall Clow-> decltype        (__c.data())
1917d1dcda19SMarshall Clow{ return            __c.data(); }
1918ad755104SMarshall Clow
191988d21343SMarshall Clowtemplate <class _Cont> constexpr
19202ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY
1921d1dcda19SMarshall Clowauto data(const _Cont& __c)
1922d1dcda19SMarshall Clow_NOEXCEPT_(noexcept(__c.data()))
1923d1dcda19SMarshall Clow-> decltype        (__c.data())
1924d1dcda19SMarshall Clow{ return            __c.data(); }
1925ad755104SMarshall Clow
192688d21343SMarshall Clowtemplate <class _Tp, size_t _Sz>
19272ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY
192888d21343SMarshall Clowconstexpr _Tp* data(_Tp (&__array)[_Sz]) noexcept { return __array; }
1929ad755104SMarshall Clow
1930ad755104SMarshall Clowtemplate <class _Ep>
19312ffa1705SMarshall Clow_LIBCPP_INLINE_VISIBILITY
1932ad755104SMarshall Clowconstexpr const _Ep* data(initializer_list<_Ep> __il) noexcept { return __il.begin(); }
1933ad755104SMarshall Clow#endif
1934ad755104SMarshall Clow
1935ad755104SMarshall Clow
19363e519524SHoward Hinnant_LIBCPP_END_NAMESPACE_STD
19373e519524SHoward Hinnant
19383e519524SHoward Hinnant#endif  // _LIBCPP_ITERATOR
1939