12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772 |
- // -*- C++ -*-
- //===-------------------------- iterator ----------------------------------===//
- //
- // The LLVM Compiler Infrastructure
- //
- // This file is dual licensed under the MIT and the University of Illinois Open
- // Source Licenses. See LICENSE.TXT for details.
- //
- //===----------------------------------------------------------------------===//
- #ifndef _LIBCPP_ITERATOR
- #define _LIBCPP_ITERATOR
- /*
- iterator synopsis
- namespace std
- {
- template<class Iterator>
- struct iterator_traits
- {
- typedef typename Iterator::difference_type difference_type;
- typedef typename Iterator::value_type value_type;
- typedef typename Iterator::pointer pointer;
- typedef typename Iterator::reference reference;
- typedef typename Iterator::iterator_category iterator_category;
- };
- template<class T>
- struct iterator_traits<T*>
- {
- typedef ptrdiff_t difference_type;
- typedef T value_type;
- typedef T* pointer;
- typedef T& reference;
- typedef random_access_iterator_tag iterator_category;
- };
- template<class T>
- struct iterator_traits<const T*>
- {
- typedef ptrdiff_t difference_type;
- typedef T value_type;
- typedef const T* pointer;
- typedef const T& reference;
- typedef random_access_iterator_tag iterator_category;
- };
- template<class Category, class T, class Distance = ptrdiff_t,
- class Pointer = T*, class Reference = T&>
- struct iterator
- {
- typedef T value_type;
- typedef Distance difference_type;
- typedef Pointer pointer;
- typedef Reference reference;
- typedef Category iterator_category;
- };
- struct input_iterator_tag {};
- struct output_iterator_tag {};
- struct forward_iterator_tag : public input_iterator_tag {};
- struct bidirectional_iterator_tag : public forward_iterator_tag {};
- struct random_access_iterator_tag : public bidirectional_iterator_tag {};
- // extension: second argument not conforming to C++03
- template <class InputIterator>
- void advance(InputIterator& i,
- typename iterator_traits<InputIterator>::difference_type n);
- template <class InputIterator>
- typename iterator_traits<InputIterator>::difference_type
- distance(InputIterator first, InputIterator last);
- template <class Iterator>
- class reverse_iterator
- : public iterator<typename iterator_traits<Iterator>::iterator_category,
- typename iterator_traits<Iterator>::value_type,
- typename iterator_traits<Iterator>::difference_type,
- typename iterator_traits<Iterator>::pointer,
- typename iterator_traits<Iterator>::reference>
- {
- protected:
- Iterator current;
- public:
- typedef Iterator iterator_type;
- typedef typename iterator_traits<Iterator>::difference_type difference_type;
- typedef typename iterator_traits<Iterator>::reference reference;
- typedef typename iterator_traits<Iterator>::pointer pointer;
- reverse_iterator();
- explicit reverse_iterator(Iterator x);
- template <class U> reverse_iterator(const reverse_iterator<U>& u);
- Iterator base() const;
- reference operator*() const;
- pointer operator->() const;
- reverse_iterator& operator++();
- reverse_iterator operator++(int);
- reverse_iterator& operator--();
- reverse_iterator operator--(int);
- reverse_iterator operator+ (difference_type n) const;
- reverse_iterator& operator+=(difference_type n);
- reverse_iterator operator- (difference_type n) const;
- reverse_iterator& operator-=(difference_type n);
- reference operator[](difference_type n) const;
- };
- template <class Iterator1, class Iterator2>
- bool
- operator==(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y);
- template <class Iterator1, class Iterator2>
- bool
- operator<(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y);
- template <class Iterator1, class Iterator2>
- bool
- operator!=(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y);
- template <class Iterator1, class Iterator2>
- bool
- operator>(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y);
- template <class Iterator1, class Iterator2>
- bool
- operator>=(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y);
- template <class Iterator1, class Iterator2>
- bool
- operator<=(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y);
- template <class Iterator1, class Iterator2>
- auto
- operator-(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y)
- -> decltype(__y.base() - __x.base());
- template <class Iterator>
- reverse_iterator<Iterator>
- operator+(typename reverse_iterator<Iterator>::difference_type n, const reverse_iterator<Iterator>& x);
- template <class Iterator> reverse_iterator<Iterator> make_reverse_iterator(Iterator i); // C++14
- template <class Container>
- class back_insert_iterator
- {
- protected:
- Container* container;
- public:
- typedef Container container_type;
- typedef void value_type;
- typedef void difference_type;
- typedef void reference;
- typedef void pointer;
- explicit back_insert_iterator(Container& x);
- back_insert_iterator& operator=(const typename Container::value_type& value);
- back_insert_iterator& operator*();
- back_insert_iterator& operator++();
- back_insert_iterator operator++(int);
- };
- template <class Container> back_insert_iterator<Container> back_inserter(Container& x);
- template <class Container>
- class front_insert_iterator
- {
- protected:
- Container* container;
- public:
- typedef Container container_type;
- typedef void value_type;
- typedef void difference_type;
- typedef void reference;
- typedef void pointer;
- explicit front_insert_iterator(Container& x);
- front_insert_iterator& operator=(const typename Container::value_type& value);
- front_insert_iterator& operator*();
- front_insert_iterator& operator++();
- front_insert_iterator operator++(int);
- };
- template <class Container> front_insert_iterator<Container> front_inserter(Container& x);
- template <class Container>
- class insert_iterator
- {
- protected:
- Container* container;
- typename Container::iterator iter;
- public:
- typedef Container container_type;
- typedef void value_type;
- typedef void difference_type;
- typedef void reference;
- typedef void pointer;
- insert_iterator(Container& x, typename Container::iterator i);
- insert_iterator& operator=(const typename Container::value_type& value);
- insert_iterator& operator*();
- insert_iterator& operator++();
- insert_iterator& operator++(int);
- };
- template <class Container, class Iterator>
- insert_iterator<Container> inserter(Container& x, Iterator i);
- template <class Iterator>
- class move_iterator {
- public:
- typedef Iterator iterator_type;
- typedef typename iterator_traits<Iterator>::difference_type difference_type;
- typedef Iterator pointer;
- typedef typename iterator_traits<Iterator>::value_type value_type;
- typedef typename iterator_traits<Iterator>::iterator_category iterator_category;
- typedef value_type&& reference;
-
- move_iterator();
- explicit move_iterator(Iterator i);
- template <class U> move_iterator(const move_iterator<U>& u);
- template <class U> move_iterator& operator=(const move_iterator<U>& u);
- iterator_type base() const;
- reference operator*() const;
- pointer operator->() const;
- move_iterator& operator++();
- move_iterator operator++(int);
- move_iterator& operator--();
- move_iterator operator--(int);
- move_iterator operator+(difference_type n) const;
- move_iterator& operator+=(difference_type n);
- move_iterator operator-(difference_type n) const;
- move_iterator& operator-=(difference_type n);
- unspecified operator[](difference_type n) const;
- private:
- Iterator current; // exposition only
- };
- template <class Iterator1, class Iterator2>
- bool
- operator==(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y);
- template <class Iterator1, class Iterator2>
- bool
- operator!=(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y);
- template <class Iterator1, class Iterator2>
- bool
- operator<(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y);
- template <class Iterator1, class Iterator2>
- bool
- operator<=(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y);
- template <class Iterator1, class Iterator2>
- bool
- operator>(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y);
- template <class Iterator1, class Iterator2>
- bool
- operator>=(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y);
- template <class Iterator1, class Iterator2>
- auto
- operator-(const move_iterator<Iterator1>& x,
- const move_iterator<Iterator2>& y) -> decltype(x.base() - y.base());
- template <class Iterator>
- move_iterator<Iterator> operator+(typename move_iterator<Iterator>::difference_type n,
- const move_iterator<Iterator>& x);
- template <class Iterator>
- move_iterator<Iterator> make_move_iterator(const Iterator& i);
- template <class T, class charT = char, class traits = char_traits<charT>, class Distance = ptrdiff_t>
- class istream_iterator
- : public iterator<input_iterator_tag, T, Distance, const T*, const T&>
- {
- public:
- typedef charT char_type;
- typedef traits traits_type;
- typedef basic_istream<charT,traits> istream_type;
- constexpr istream_iterator();
- istream_iterator(istream_type& s);
- istream_iterator(const istream_iterator& x);
- ~istream_iterator();
- const T& operator*() const;
- const T* operator->() const;
- istream_iterator& operator++();
- istream_iterator operator++(int);
- };
- template <class T, class charT, class traits, class Distance>
- bool operator==(const istream_iterator<T,charT,traits,Distance>& x,
- const istream_iterator<T,charT,traits,Distance>& y);
- template <class T, class charT, class traits, class Distance>
- bool operator!=(const istream_iterator<T,charT,traits,Distance>& x,
- const istream_iterator<T,charT,traits,Distance>& y);
- template <class T, class charT = char, class traits = char_traits<charT> >
- class ostream_iterator
- : public iterator<output_iterator_tag, void, void, void ,void>
- {
- public:
- typedef charT char_type;
- typedef traits traits_type;
- typedef basic_ostream<charT,traits> ostream_type;
- ostream_iterator(ostream_type& s);
- ostream_iterator(ostream_type& s, const charT* delimiter);
- ostream_iterator(const ostream_iterator& x);
- ~ostream_iterator();
- ostream_iterator& operator=(const T& value);
- ostream_iterator& operator*();
- ostream_iterator& operator++();
- ostream_iterator& operator++(int);
- };
- template<class charT, class traits = char_traits<charT> >
- class istreambuf_iterator
- : public iterator<input_iterator_tag, charT,
- typename traits::off_type, unspecified,
- charT>
- {
- public:
- typedef charT char_type;
- typedef traits traits_type;
- typedef typename traits::int_type int_type;
- typedef basic_streambuf<charT,traits> streambuf_type;
- typedef basic_istream<charT,traits> istream_type;
- istreambuf_iterator() noexcept;
- istreambuf_iterator(istream_type& s) noexcept;
- istreambuf_iterator(streambuf_type* s) noexcept;
- istreambuf_iterator(a-private-type) noexcept;
- charT operator*() const;
- pointer operator->() const;
- istreambuf_iterator& operator++();
- a-private-type operator++(int);
- bool equal(const istreambuf_iterator& b) const;
- };
- template <class charT, class traits>
- bool operator==(const istreambuf_iterator<charT,traits>& a,
- const istreambuf_iterator<charT,traits>& b);
- template <class charT, class traits>
- bool operator!=(const istreambuf_iterator<charT,traits>& a,
- const istreambuf_iterator<charT,traits>& b);
- template <class charT, class traits = char_traits<charT> >
- class ostreambuf_iterator
- : public iterator<output_iterator_tag, void, void, void, void>
- {
- public:
- typedef charT char_type;
- typedef traits traits_type;
- typedef basic_streambuf<charT,traits> streambuf_type;
- typedef basic_ostream<charT,traits> ostream_type;
- ostreambuf_iterator(ostream_type& s) noexcept;
- ostreambuf_iterator(streambuf_type* s) noexcept;
- ostreambuf_iterator& operator=(charT c);
- ostreambuf_iterator& operator*();
- ostreambuf_iterator& operator++();
- ostreambuf_iterator& operator++(int);
- bool failed() const noexcept;
- };
- template <class C> auto begin(C& c) -> decltype(c.begin());
- template <class C> auto begin(const C& c) -> decltype(c.begin());
- template <class C> auto end(C& c) -> decltype(c.end());
- template <class C> auto end(const C& c) -> decltype(c.end());
- template <class T, size_t N> T* begin(T (&array)[N]);
- template <class T, size_t N> T* end(T (&array)[N]);
- template <class C> auto cbegin(const C& c) -> decltype(std::begin(c)); // C++14
- template <class C> auto cend(const C& c) -> decltype(std::end(c)); // C++14
- template <class C> auto rbegin(C& c) -> decltype(c.rbegin()); // C++14
- template <class C> auto rbegin(const C& c) -> decltype(c.rbegin()); // C++14
- template <class C> auto rend(C& c) -> decltype(c.rend()); // C++14
- template <class C> auto rend(const C& c) -> decltype(c.rend()); // C++14
- template <class E> reverse_iterator<const E*> rbegin(initializer_list<E> il); // C++14
- template <class E> reverse_iterator<const E*> rend(initializer_list<E> il); // C++14
- template <class T, size_t N> reverse_iterator<T*> rbegin(T (&array)[N]); // C++14
- template <class T, size_t N> reverse_iterator<T*> rend(T (&array)[N]); // C++14
- template <class C> auto crbegin(const C& c) -> decltype(std::rbegin(c)); // C++14
- template <class C> auto crend(const C& c) -> decltype(std::rend(c)); // C++14
- // 24.8, container access:
- template <class C> constexpr auto size(const C& c) -> decltype(c.size()); // C++17
- template <class T, size_t N> constexpr size_t size(const T (&array)[N]) noexcept; // C++17
- template <class C> constexpr auto empty(const C& c) -> decltype(c.empty()); // C++17
- template <class T, size_t N> constexpr bool empty(const T (&array)[N]) noexcept; // C++17
- template <class E> constexpr bool empty(initializer_list<E> il) noexcept; // C++17
- template <class C> constexpr auto data(C& c) -> decltype(c.data()); // C++17
- template <class C> constexpr auto data(const C& c) -> decltype(c.data()); // C++17
- template <class T, size_t N> constexpr T* data(T (&array)[N]) noexcept; // C++17
- template <class E> constexpr const E* data(initializer_list<E> il) noexcept; // C++17
- } // std
- */
- #include <__config>
- #include <iosfwd> // for forward declarations of vector and string.
- #include <__functional_base>
- #include <type_traits>
- #include <cstddef>
- #include <initializer_list>
- #ifdef __APPLE__
- #include <Availability.h>
- #endif
- #include <__debug>
- #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
- #pragma GCC system_header
- #endif
- _LIBCPP_BEGIN_NAMESPACE_STD
- struct _LIBCPP_TYPE_VIS_ONLY input_iterator_tag {};
- struct _LIBCPP_TYPE_VIS_ONLY output_iterator_tag {};
- struct _LIBCPP_TYPE_VIS_ONLY forward_iterator_tag : public input_iterator_tag {};
- struct _LIBCPP_TYPE_VIS_ONLY bidirectional_iterator_tag : public forward_iterator_tag {};
- struct _LIBCPP_TYPE_VIS_ONLY random_access_iterator_tag : public bidirectional_iterator_tag {};
- template <class _Tp>
- struct __has_iterator_category
- {
- private:
- struct __two {char __lx; char __lxx;};
- template <class _Up> static __two __test(...);
- template <class _Up> static char __test(typename _Up::iterator_category* = 0);
- public:
- static const bool value = sizeof(__test<_Tp>(0)) == 1;
- };
- template <class _Iter, bool> struct __iterator_traits_impl {};
- template <class _Iter>
- struct __iterator_traits_impl<_Iter, true>
- {
- typedef typename _Iter::difference_type difference_type;
- typedef typename _Iter::value_type value_type;
- typedef typename _Iter::pointer pointer;
- typedef typename _Iter::reference reference;
- typedef typename _Iter::iterator_category iterator_category;
- };
- template <class _Iter, bool> struct __iterator_traits {};
- template <class _Iter>
- struct __iterator_traits<_Iter, true>
- : __iterator_traits_impl
- <
- _Iter,
- is_convertible<typename _Iter::iterator_category, input_iterator_tag>::value ||
- is_convertible<typename _Iter::iterator_category, output_iterator_tag>::value
- >
- {};
- // iterator_traits<Iterator> will only have the nested types if Iterator::iterator_category
- // exists. Else iterator_traits<Iterator> will be an empty class. This is a
- // conforming extension which allows some programs to compile and behave as
- // the client expects instead of failing at compile time.
- template <class _Iter>
- struct _LIBCPP_TYPE_VIS_ONLY iterator_traits
- : __iterator_traits<_Iter, __has_iterator_category<_Iter>::value> {};
- template<class _Tp>
- struct _LIBCPP_TYPE_VIS_ONLY iterator_traits<_Tp*>
- {
- typedef ptrdiff_t difference_type;
- typedef typename remove_const<_Tp>::type value_type;
- typedef _Tp* pointer;
- typedef _Tp& reference;
- typedef random_access_iterator_tag iterator_category;
- };
- template <class _Tp, class _Up, bool = __has_iterator_category<iterator_traits<_Tp> >::value>
- struct __has_iterator_category_convertible_to
- : public integral_constant<bool, is_convertible<typename iterator_traits<_Tp>::iterator_category, _Up>::value>
- {};
- template <class _Tp, class _Up>
- struct __has_iterator_category_convertible_to<_Tp, _Up, false> : public false_type {};
- template <class _Tp>
- struct __is_input_iterator : public __has_iterator_category_convertible_to<_Tp, input_iterator_tag> {};
- template <class _Tp>
- struct __is_forward_iterator : public __has_iterator_category_convertible_to<_Tp, forward_iterator_tag> {};
- template <class _Tp>
- struct __is_bidirectional_iterator : public __has_iterator_category_convertible_to<_Tp, bidirectional_iterator_tag> {};
- template <class _Tp>
- struct __is_random_access_iterator : public __has_iterator_category_convertible_to<_Tp, random_access_iterator_tag> {};
- template <class _Tp>
- struct __is_exactly_input_iterator
- : public integral_constant<bool,
- __has_iterator_category_convertible_to<_Tp, input_iterator_tag>::value &&
- !__has_iterator_category_convertible_to<_Tp, forward_iterator_tag>::value> {};
- template<class _Category, class _Tp, class _Distance = ptrdiff_t,
- class _Pointer = _Tp*, class _Reference = _Tp&>
- struct _LIBCPP_TYPE_VIS_ONLY iterator
- {
- typedef _Tp value_type;
- typedef _Distance difference_type;
- typedef _Pointer pointer;
- typedef _Reference reference;
- typedef _Category iterator_category;
- };
- template <class _InputIter>
- inline _LIBCPP_INLINE_VISIBILITY
- void __advance(_InputIter& __i,
- typename iterator_traits<_InputIter>::difference_type __n, input_iterator_tag)
- {
- for (; __n > 0; --__n)
- ++__i;
- }
- template <class _BiDirIter>
- inline _LIBCPP_INLINE_VISIBILITY
- void __advance(_BiDirIter& __i,
- typename iterator_traits<_BiDirIter>::difference_type __n, bidirectional_iterator_tag)
- {
- if (__n >= 0)
- for (; __n > 0; --__n)
- ++__i;
- else
- for (; __n < 0; ++__n)
- --__i;
- }
- template <class _RandIter>
- inline _LIBCPP_INLINE_VISIBILITY
- void __advance(_RandIter& __i,
- typename iterator_traits<_RandIter>::difference_type __n, random_access_iterator_tag)
- {
- __i += __n;
- }
- template <class _InputIter>
- inline _LIBCPP_INLINE_VISIBILITY
- void advance(_InputIter& __i,
- typename iterator_traits<_InputIter>::difference_type __n)
- {
- __advance(__i, __n, typename iterator_traits<_InputIter>::iterator_category());
- }
- template <class _InputIter>
- inline _LIBCPP_INLINE_VISIBILITY
- typename iterator_traits<_InputIter>::difference_type
- __distance(_InputIter __first, _InputIter __last, input_iterator_tag)
- {
- typename iterator_traits<_InputIter>::difference_type __r(0);
- for (; __first != __last; ++__first)
- ++__r;
- return __r;
- }
- template <class _RandIter>
- inline _LIBCPP_INLINE_VISIBILITY
- typename iterator_traits<_RandIter>::difference_type
- __distance(_RandIter __first, _RandIter __last, random_access_iterator_tag)
- {
- return __last - __first;
- }
- template <class _InputIter>
- inline _LIBCPP_INLINE_VISIBILITY
- typename iterator_traits<_InputIter>::difference_type
- distance(_InputIter __first, _InputIter __last)
- {
- return __distance(__first, __last, typename iterator_traits<_InputIter>::iterator_category());
- }
- template <class _InputIter>
- inline _LIBCPP_INLINE_VISIBILITY
- _InputIter
- next(_InputIter __x,
- typename iterator_traits<_InputIter>::difference_type __n = 1,
- typename enable_if<__is_input_iterator<_InputIter>::value>::type* = 0)
- {
- _VSTD::advance(__x, __n);
- return __x;
- }
- template <class _BidiretionalIter>
- inline _LIBCPP_INLINE_VISIBILITY
- _BidiretionalIter
- prev(_BidiretionalIter __x,
- typename iterator_traits<_BidiretionalIter>::difference_type __n = 1,
- typename enable_if<__is_bidirectional_iterator<_BidiretionalIter>::value>::type* = 0)
- {
- _VSTD::advance(__x, -__n);
- return __x;
- }
- template <class _Iter>
- class _LIBCPP_TYPE_VIS_ONLY reverse_iterator
- : public iterator<typename iterator_traits<_Iter>::iterator_category,
- typename iterator_traits<_Iter>::value_type,
- typename iterator_traits<_Iter>::difference_type,
- typename iterator_traits<_Iter>::pointer,
- typename iterator_traits<_Iter>::reference>
- {
- private:
- #if !defined(_LIBCPP_SGX_CONFIG)
- mutable _Iter __t; // no longer used as of LWG #2360, not removed due to ABI break
- #endif // !defined(_LIBCPP_SGX_CONFIG)
- protected:
- _Iter current;
- public:
- typedef _Iter iterator_type;
- typedef typename iterator_traits<_Iter>::difference_type difference_type;
- typedef typename iterator_traits<_Iter>::reference reference;
- typedef typename iterator_traits<_Iter>::pointer pointer;
- _LIBCPP_INLINE_VISIBILITY reverse_iterator() : current() {}
- #if !defined(_LIBCPP_SGX_CONFIG)
- _LIBCPP_INLINE_VISIBILITY explicit reverse_iterator(_Iter __x) : __t(__x), current(__x) {}
- #else
- _LIBCPP_INLINE_VISIBILITY explicit reverse_iterator(_Iter __x) : current(__x) {}
- #endif // !defined(_LIBCPP_SGX_CONFIG)
- template <class _Up> _LIBCPP_INLINE_VISIBILITY reverse_iterator(const reverse_iterator<_Up>& __u)
- #if !defined(_LIBCPP_SGX_CONFIG)
- : __t(__u.base()), current(__u.base()) {}
- #else
- : current(__u.base()) {}
- #endif // !defined(_LIBCPP_SGX_CONFIG)
- _LIBCPP_INLINE_VISIBILITY _Iter base() const {return current;}
- _LIBCPP_INLINE_VISIBILITY reference operator*() const {_Iter __tmp = current; return *--__tmp;}
- _LIBCPP_INLINE_VISIBILITY pointer operator->() const {return _VSTD::addressof(operator*());}
- _LIBCPP_INLINE_VISIBILITY reverse_iterator& operator++() {--current; return *this;}
- _LIBCPP_INLINE_VISIBILITY reverse_iterator operator++(int)
- {reverse_iterator __tmp(*this); --current; return __tmp;}
- _LIBCPP_INLINE_VISIBILITY reverse_iterator& operator--() {++current; return *this;}
- _LIBCPP_INLINE_VISIBILITY reverse_iterator operator--(int)
- {reverse_iterator __tmp(*this); ++current; return __tmp;}
- _LIBCPP_INLINE_VISIBILITY reverse_iterator operator+ (difference_type __n) const
- {return reverse_iterator(current - __n);}
- _LIBCPP_INLINE_VISIBILITY reverse_iterator& operator+=(difference_type __n)
- {current -= __n; return *this;}
- _LIBCPP_INLINE_VISIBILITY reverse_iterator operator- (difference_type __n) const
- {return reverse_iterator(current + __n);}
- _LIBCPP_INLINE_VISIBILITY reverse_iterator& operator-=(difference_type __n)
- {current += __n; return *this;}
- _LIBCPP_INLINE_VISIBILITY reference operator[](difference_type __n) const
- {return *(*this + __n);}
- };
- template <class _Iter1, class _Iter2>
- inline _LIBCPP_INLINE_VISIBILITY
- bool
- operator==(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y)
- {
- return __x.base() == __y.base();
- }
- template <class _Iter1, class _Iter2>
- inline _LIBCPP_INLINE_VISIBILITY
- bool
- operator<(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y)
- {
- return __x.base() > __y.base();
- }
- template <class _Iter1, class _Iter2>
- inline _LIBCPP_INLINE_VISIBILITY
- bool
- operator!=(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y)
- {
- return __x.base() != __y.base();
- }
- template <class _Iter1, class _Iter2>
- inline _LIBCPP_INLINE_VISIBILITY
- bool
- operator>(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y)
- {
- return __x.base() < __y.base();
- }
- template <class _Iter1, class _Iter2>
- inline _LIBCPP_INLINE_VISIBILITY
- bool
- operator>=(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y)
- {
- return __x.base() <= __y.base();
- }
- template <class _Iter1, class _Iter2>
- inline _LIBCPP_INLINE_VISIBILITY
- bool
- operator<=(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y)
- {
- return __x.base() >= __y.base();
- }
- #ifndef _LIBCPP_CXX03_LANG
- template <class _Iter1, class _Iter2>
- inline _LIBCPP_INLINE_VISIBILITY
- auto
- operator-(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y)
- -> decltype(__y.base() - __x.base())
- {
- return __y.base() - __x.base();
- }
- #else
- template <class _Iter1, class _Iter2>
- inline _LIBCPP_INLINE_VISIBILITY
- typename reverse_iterator<_Iter1>::difference_type
- operator-(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y)
- {
- return __y.base() - __x.base();
- }
- #endif
- template <class _Iter>
- inline _LIBCPP_INLINE_VISIBILITY
- reverse_iterator<_Iter>
- operator+(typename reverse_iterator<_Iter>::difference_type __n, const reverse_iterator<_Iter>& __x)
- {
- return reverse_iterator<_Iter>(__x.base() - __n);
- }
- #if _LIBCPP_STD_VER > 11
- template <class _Iter>
- inline _LIBCPP_INLINE_VISIBILITY
- reverse_iterator<_Iter> make_reverse_iterator(_Iter __i)
- {
- return reverse_iterator<_Iter>(__i);
- }
- #endif
- template <class _Container>
- class _LIBCPP_TYPE_VIS_ONLY back_insert_iterator
- : public iterator<output_iterator_tag,
- void,
- void,
- void,
- void>
- {
- protected:
- _Container* container;
- public:
- typedef _Container container_type;
- _LIBCPP_INLINE_VISIBILITY explicit back_insert_iterator(_Container& __x) : container(_VSTD::addressof(__x)) {}
- _LIBCPP_INLINE_VISIBILITY back_insert_iterator& operator=(const typename _Container::value_type& __value_)
- {container->push_back(__value_); return *this;}
- #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
- _LIBCPP_INLINE_VISIBILITY back_insert_iterator& operator=(typename _Container::value_type&& __value_)
- {container->push_back(_VSTD::move(__value_)); return *this;}
- #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
- _LIBCPP_INLINE_VISIBILITY back_insert_iterator& operator*() {return *this;}
- _LIBCPP_INLINE_VISIBILITY back_insert_iterator& operator++() {return *this;}
- _LIBCPP_INLINE_VISIBILITY back_insert_iterator operator++(int) {return *this;}
- };
- template <class _Container>
- inline _LIBCPP_INLINE_VISIBILITY
- back_insert_iterator<_Container>
- back_inserter(_Container& __x)
- {
- return back_insert_iterator<_Container>(__x);
- }
- template <class _Container>
- class _LIBCPP_TYPE_VIS_ONLY front_insert_iterator
- : public iterator<output_iterator_tag,
- void,
- void,
- void,
- void>
- {
- protected:
- _Container* container;
- public:
- typedef _Container container_type;
- _LIBCPP_INLINE_VISIBILITY explicit front_insert_iterator(_Container& __x) : container(_VSTD::addressof(__x)) {}
- _LIBCPP_INLINE_VISIBILITY front_insert_iterator& operator=(const typename _Container::value_type& __value_)
- {container->push_front(__value_); return *this;}
- #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
- _LIBCPP_INLINE_VISIBILITY front_insert_iterator& operator=(typename _Container::value_type&& __value_)
- {container->push_front(_VSTD::move(__value_)); return *this;}
- #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
- _LIBCPP_INLINE_VISIBILITY front_insert_iterator& operator*() {return *this;}
- _LIBCPP_INLINE_VISIBILITY front_insert_iterator& operator++() {return *this;}
- _LIBCPP_INLINE_VISIBILITY front_insert_iterator operator++(int) {return *this;}
- };
- template <class _Container>
- inline _LIBCPP_INLINE_VISIBILITY
- front_insert_iterator<_Container>
- front_inserter(_Container& __x)
- {
- return front_insert_iterator<_Container>(__x);
- }
- template <class _Container>
- class _LIBCPP_TYPE_VIS_ONLY insert_iterator
- : public iterator<output_iterator_tag,
- void,
- void,
- void,
- void>
- {
- protected:
- _Container* container;
- typename _Container::iterator iter;
- public:
- typedef _Container container_type;
- _LIBCPP_INLINE_VISIBILITY insert_iterator(_Container& __x, typename _Container::iterator __i)
- : container(_VSTD::addressof(__x)), iter(__i) {}
- _LIBCPP_INLINE_VISIBILITY insert_iterator& operator=(const typename _Container::value_type& __value_)
- {iter = container->insert(iter, __value_); ++iter; return *this;}
- #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
- _LIBCPP_INLINE_VISIBILITY insert_iterator& operator=(typename _Container::value_type&& __value_)
- {iter = container->insert(iter, _VSTD::move(__value_)); ++iter; return *this;}
- #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
- _LIBCPP_INLINE_VISIBILITY insert_iterator& operator*() {return *this;}
- _LIBCPP_INLINE_VISIBILITY insert_iterator& operator++() {return *this;}
- _LIBCPP_INLINE_VISIBILITY insert_iterator& operator++(int) {return *this;}
- };
- template <class _Container>
- inline _LIBCPP_INLINE_VISIBILITY
- insert_iterator<_Container>
- inserter(_Container& __x, typename _Container::iterator __i)
- {
- return insert_iterator<_Container>(__x, __i);
- }
- #if !defined(_LIBCPP_SGX_NO_IOSTREAMS)
- template <class _Tp, class _CharT = char,
- class _Traits = char_traits<_CharT>, class _Distance = ptrdiff_t>
- class _LIBCPP_TYPE_VIS_ONLY istream_iterator
- : public iterator<input_iterator_tag, _Tp, _Distance, const _Tp*, const _Tp&>
- {
- public:
- typedef _CharT char_type;
- typedef _Traits traits_type;
- typedef basic_istream<_CharT,_Traits> istream_type;
- private:
- istream_type* __in_stream_;
- _Tp __value_;
- public:
- _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR istream_iterator() : __in_stream_(0), __value_() {}
- _LIBCPP_INLINE_VISIBILITY istream_iterator(istream_type& __s) : __in_stream_(_VSTD::addressof(__s))
- {
- if (!(*__in_stream_ >> __value_))
- __in_stream_ = 0;
- }
- _LIBCPP_INLINE_VISIBILITY const _Tp& operator*() const {return __value_;}
- _LIBCPP_INLINE_VISIBILITY const _Tp* operator->() const {return _VSTD::addressof((operator*()));}
- _LIBCPP_INLINE_VISIBILITY istream_iterator& operator++()
- {
- if (!(*__in_stream_ >> __value_))
- __in_stream_ = 0;
- return *this;
- }
- _LIBCPP_INLINE_VISIBILITY istream_iterator operator++(int)
- {istream_iterator __t(*this); ++(*this); return __t;}
- friend _LIBCPP_INLINE_VISIBILITY
- bool operator==(const istream_iterator& __x, const istream_iterator& __y)
- {return __x.__in_stream_ == __y.__in_stream_;}
- friend _LIBCPP_INLINE_VISIBILITY
- bool operator!=(const istream_iterator& __x, const istream_iterator& __y)
- {return !(__x == __y);}
- };
- template <class _Tp, class _CharT = char, class _Traits = char_traits<_CharT> >
- class _LIBCPP_TYPE_VIS_ONLY ostream_iterator
- : public iterator<output_iterator_tag, void, void, void, void>
- {
- public:
- typedef _CharT char_type;
- typedef _Traits traits_type;
- typedef basic_ostream<_CharT,_Traits> ostream_type;
- private:
- ostream_type* __out_stream_;
- const char_type* __delim_;
- public:
- _LIBCPP_INLINE_VISIBILITY ostream_iterator(ostream_type& __s)
- : __out_stream_(_VSTD::addressof(__s)), __delim_(0) {}
- _LIBCPP_INLINE_VISIBILITY ostream_iterator(ostream_type& __s, const _CharT* __delimiter)
- : __out_stream_(_VSTD::addressof(__s)), __delim_(__delimiter) {}
- _LIBCPP_INLINE_VISIBILITY ostream_iterator& operator=(const _Tp& __value_)
- {
- *__out_stream_ << __value_;
- if (__delim_)
- *__out_stream_ << __delim_;
- return *this;
- }
- _LIBCPP_INLINE_VISIBILITY ostream_iterator& operator*() {return *this;}
- _LIBCPP_INLINE_VISIBILITY ostream_iterator& operator++() {return *this;}
- _LIBCPP_INLINE_VISIBILITY ostream_iterator& operator++(int) {return *this;}
- };
- template<class _CharT, class _Traits>
- class _LIBCPP_TYPE_VIS_ONLY istreambuf_iterator
- : public iterator<input_iterator_tag, _CharT,
- typename _Traits::off_type, _CharT*,
- _CharT>
- {
- public:
- typedef _CharT char_type;
- typedef _Traits traits_type;
- typedef typename _Traits::int_type int_type;
- typedef basic_streambuf<_CharT,_Traits> streambuf_type;
- typedef basic_istream<_CharT,_Traits> istream_type;
- private:
- mutable streambuf_type* __sbuf_;
- class __proxy
- {
- char_type __keep_;
- streambuf_type* __sbuf_;
- _LIBCPP_INLINE_VISIBILITY __proxy(char_type __c, streambuf_type* __s)
- : __keep_(__c), __sbuf_(__s) {}
- friend class istreambuf_iterator;
- public:
- _LIBCPP_INLINE_VISIBILITY char_type operator*() const {return __keep_;}
- };
- _LIBCPP_INLINE_VISIBILITY
- bool __test_for_eof() const
- {
- if (__sbuf_ && traits_type::eq_int_type(__sbuf_->sgetc(), traits_type::eof()))
- __sbuf_ = 0;
- return __sbuf_ == 0;
- }
- public:
- _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR istreambuf_iterator() _NOEXCEPT : __sbuf_(0) {}
- _LIBCPP_INLINE_VISIBILITY istreambuf_iterator(istream_type& __s) _NOEXCEPT
- : __sbuf_(__s.rdbuf()) {}
- _LIBCPP_INLINE_VISIBILITY istreambuf_iterator(streambuf_type* __s) _NOEXCEPT
- : __sbuf_(__s) {}
- _LIBCPP_INLINE_VISIBILITY istreambuf_iterator(const __proxy& __p) _NOEXCEPT
- : __sbuf_(__p.__sbuf_) {}
- _LIBCPP_INLINE_VISIBILITY char_type operator*() const
- {return static_cast<char_type>(__sbuf_->sgetc());}
- _LIBCPP_INLINE_VISIBILITY char_type* operator->() const {return nullptr;}
- _LIBCPP_INLINE_VISIBILITY istreambuf_iterator& operator++()
- {
- __sbuf_->sbumpc();
- return *this;
- }
- _LIBCPP_INLINE_VISIBILITY __proxy operator++(int)
- {
- return __proxy(__sbuf_->sbumpc(), __sbuf_);
- }
- _LIBCPP_INLINE_VISIBILITY bool equal(const istreambuf_iterator& __b) const
- {return __test_for_eof() == __b.__test_for_eof();}
- };
- template <class _CharT, class _Traits>
- inline _LIBCPP_INLINE_VISIBILITY
- bool operator==(const istreambuf_iterator<_CharT,_Traits>& __a,
- const istreambuf_iterator<_CharT,_Traits>& __b)
- {return __a.equal(__b);}
- template <class _CharT, class _Traits>
- inline _LIBCPP_INLINE_VISIBILITY
- bool operator!=(const istreambuf_iterator<_CharT,_Traits>& __a,
- const istreambuf_iterator<_CharT,_Traits>& __b)
- {return !__a.equal(__b);}
- template <class _CharT, class _Traits>
- class _LIBCPP_TYPE_VIS_ONLY ostreambuf_iterator
- : public iterator<output_iterator_tag, void, void, void, void>
- {
- public:
- typedef _CharT char_type;
- typedef _Traits traits_type;
- typedef basic_streambuf<_CharT,_Traits> streambuf_type;
- typedef basic_ostream<_CharT,_Traits> ostream_type;
- private:
- streambuf_type* __sbuf_;
- public:
- _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator(ostream_type& __s) _NOEXCEPT
- : __sbuf_(__s.rdbuf()) {}
- _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator(streambuf_type* __s) _NOEXCEPT
- : __sbuf_(__s) {}
- _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator& operator=(_CharT __c)
- {
- if (__sbuf_ && traits_type::eq_int_type(__sbuf_->sputc(__c), traits_type::eof()))
- __sbuf_ = 0;
- return *this;
- }
- _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator& operator*() {return *this;}
- _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator& operator++() {return *this;}
- _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator& operator++(int) {return *this;}
- _LIBCPP_INLINE_VISIBILITY bool failed() const _NOEXCEPT {return __sbuf_ == 0;}
- #if !defined(__APPLE__) || \
- (defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && __MAC_OS_X_VERSION_MIN_REQUIRED > __MAC_10_8) || \
- (defined(__IPHONE_OS_VERSION_MIN_REQUIRED) && __IPHONE_OS_VERSION_MIN_REQUIRED > __IPHONE_6_0)
- template <class _Ch, class _Tr>
- friend
- _LIBCPP_HIDDEN
- ostreambuf_iterator<_Ch, _Tr>
- __pad_and_output(ostreambuf_iterator<_Ch, _Tr> __s,
- const _Ch* __ob, const _Ch* __op, const _Ch* __oe,
- ios_base& __iob, _Ch __fl);
- #endif
- };
- #endif // !defined(_LIBCPP_SGX_NO_IOSTREAMS)
- template <class _Iter>
- class _LIBCPP_TYPE_VIS_ONLY move_iterator
- {
- private:
- _Iter __i;
- public:
- typedef _Iter iterator_type;
- typedef typename iterator_traits<iterator_type>::iterator_category iterator_category;
- typedef typename iterator_traits<iterator_type>::value_type value_type;
- typedef typename iterator_traits<iterator_type>::difference_type difference_type;
- typedef iterator_type pointer;
- #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
- typedef typename iterator_traits<iterator_type>::reference __reference;
- typedef typename conditional<
- is_reference<__reference>::value,
- typename remove_reference<__reference>::type&&,
- __reference
- >::type reference;
- #else
- typedef typename iterator_traits<iterator_type>::reference reference;
- #endif
- _LIBCPP_INLINE_VISIBILITY move_iterator() : __i() {}
- _LIBCPP_INLINE_VISIBILITY explicit move_iterator(_Iter __x) : __i(__x) {}
- template <class _Up> _LIBCPP_INLINE_VISIBILITY move_iterator(const move_iterator<_Up>& __u)
- : __i(__u.base()) {}
- _LIBCPP_INLINE_VISIBILITY _Iter base() const {return __i;}
- _LIBCPP_INLINE_VISIBILITY reference operator*() const {
- return static_cast<reference>(*__i);
- }
- _LIBCPP_INLINE_VISIBILITY pointer operator->() const { return __i;}
- _LIBCPP_INLINE_VISIBILITY move_iterator& operator++() {++__i; return *this;}
- _LIBCPP_INLINE_VISIBILITY move_iterator operator++(int)
- {move_iterator __tmp(*this); ++__i; return __tmp;}
- _LIBCPP_INLINE_VISIBILITY move_iterator& operator--() {--__i; return *this;}
- _LIBCPP_INLINE_VISIBILITY move_iterator operator--(int)
- {move_iterator __tmp(*this); --__i; return __tmp;}
- _LIBCPP_INLINE_VISIBILITY move_iterator operator+ (difference_type __n) const
- {return move_iterator(__i + __n);}
- _LIBCPP_INLINE_VISIBILITY move_iterator& operator+=(difference_type __n)
- {__i += __n; return *this;}
- _LIBCPP_INLINE_VISIBILITY move_iterator operator- (difference_type __n) const
- {return move_iterator(__i - __n);}
- _LIBCPP_INLINE_VISIBILITY move_iterator& operator-=(difference_type __n)
- {__i -= __n; return *this;}
- _LIBCPP_INLINE_VISIBILITY reference operator[](difference_type __n) const
- {
- return static_cast<reference>(__i[__n]);
- }
- };
- template <class _Iter1, class _Iter2>
- inline _LIBCPP_INLINE_VISIBILITY
- bool
- operator==(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y)
- {
- return __x.base() == __y.base();
- }
- template <class _Iter1, class _Iter2>
- inline _LIBCPP_INLINE_VISIBILITY
- bool
- operator<(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y)
- {
- return __x.base() < __y.base();
- }
- template <class _Iter1, class _Iter2>
- inline _LIBCPP_INLINE_VISIBILITY
- bool
- operator!=(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y)
- {
- return __x.base() != __y.base();
- }
- template <class _Iter1, class _Iter2>
- inline _LIBCPP_INLINE_VISIBILITY
- bool
- operator>(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y)
- {
- return __x.base() > __y.base();
- }
- template <class _Iter1, class _Iter2>
- inline _LIBCPP_INLINE_VISIBILITY
- bool
- operator>=(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y)
- {
- return __x.base() >= __y.base();
- }
- template <class _Iter1, class _Iter2>
- inline _LIBCPP_INLINE_VISIBILITY
- bool
- operator<=(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y)
- {
- return __x.base() <= __y.base();
- }
- #ifndef _LIBCPP_CXX03_LANG
- template <class _Iter1, class _Iter2>
- inline _LIBCPP_INLINE_VISIBILITY
- auto
- operator-(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y)
- -> decltype(__x.base() - __y.base())
- {
- return __x.base() - __y.base();
- }
- #else
- template <class _Iter1, class _Iter2>
- inline _LIBCPP_INLINE_VISIBILITY
- typename move_iterator<_Iter1>::difference_type
- operator-(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y)
- {
- return __x.base() - __y.base();
- }
- #endif
- template <class _Iter>
- inline _LIBCPP_INLINE_VISIBILITY
- move_iterator<_Iter>
- operator+(typename move_iterator<_Iter>::difference_type __n, const move_iterator<_Iter>& __x)
- {
- return move_iterator<_Iter>(__x.base() + __n);
- }
- template <class _Iter>
- inline _LIBCPP_INLINE_VISIBILITY
- move_iterator<_Iter>
- make_move_iterator(_Iter __i)
- {
- return move_iterator<_Iter>(__i);
- }
- // __wrap_iter
- template <class _Iter> class __wrap_iter;
- template <class _Iter1, class _Iter2>
- _LIBCPP_INLINE_VISIBILITY
- bool
- operator==(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
- template <class _Iter1, class _Iter2>
- _LIBCPP_INLINE_VISIBILITY
- bool
- operator<(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
- template <class _Iter1, class _Iter2>
- _LIBCPP_INLINE_VISIBILITY
- bool
- operator!=(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
- template <class _Iter1, class _Iter2>
- _LIBCPP_INLINE_VISIBILITY
- bool
- operator>(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
- template <class _Iter1, class _Iter2>
- _LIBCPP_INLINE_VISIBILITY
- bool
- operator>=(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
- template <class _Iter1, class _Iter2>
- _LIBCPP_INLINE_VISIBILITY
- bool
- operator<=(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
- #ifndef _LIBCPP_CXX03_LANG
- template <class _Iter1, class _Iter2>
- _LIBCPP_INLINE_VISIBILITY
- auto
- operator-(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT
- -> decltype(__x.base() - __y.base());
- #else
- template <class _Iter1, class _Iter2>
- _LIBCPP_INLINE_VISIBILITY
- typename __wrap_iter<_Iter1>::difference_type
- operator-(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
- #endif
- template <class _Iter>
- _LIBCPP_INLINE_VISIBILITY
- __wrap_iter<_Iter>
- operator+(typename __wrap_iter<_Iter>::difference_type, __wrap_iter<_Iter>) _NOEXCEPT;
- template <class _Ip, class _Op> _Op _LIBCPP_INLINE_VISIBILITY copy(_Ip, _Ip, _Op);
- template <class _B1, class _B2> _B2 _LIBCPP_INLINE_VISIBILITY copy_backward(_B1, _B1, _B2);
- template <class _Ip, class _Op> _Op _LIBCPP_INLINE_VISIBILITY move(_Ip, _Ip, _Op);
- template <class _B1, class _B2> _B2 _LIBCPP_INLINE_VISIBILITY move_backward(_B1, _B1, _B2);
- template <class _Tp>
- _LIBCPP_INLINE_VISIBILITY
- typename enable_if
- <
- is_trivially_copy_assignable<_Tp>::value,
- _Tp*
- >::type
- __unwrap_iter(__wrap_iter<_Tp*>);
- template <class _Iter>
- class __wrap_iter
- {
- public:
- typedef _Iter iterator_type;
- typedef typename iterator_traits<iterator_type>::iterator_category iterator_category;
- typedef typename iterator_traits<iterator_type>::value_type value_type;
- typedef typename iterator_traits<iterator_type>::difference_type difference_type;
- typedef typename iterator_traits<iterator_type>::pointer pointer;
- typedef typename iterator_traits<iterator_type>::reference reference;
- private:
- iterator_type __i;
- public:
- _LIBCPP_INLINE_VISIBILITY __wrap_iter() _NOEXCEPT
- #if _LIBCPP_STD_VER > 11
- : __i{}
- #endif
- {
- #if _LIBCPP_DEBUG_LEVEL >= 2
- __get_db()->__insert_i(this);
- #endif
- }
- template <class _Up> _LIBCPP_INLINE_VISIBILITY __wrap_iter(const __wrap_iter<_Up>& __u,
- typename enable_if<is_convertible<_Up, iterator_type>::value>::type* = 0) _NOEXCEPT
- : __i(__u.base())
- {
- #if _LIBCPP_DEBUG_LEVEL >= 2
- __get_db()->__iterator_copy(this, &__u);
- #endif
- }
- #if _LIBCPP_DEBUG_LEVEL >= 2
- _LIBCPP_INLINE_VISIBILITY
- __wrap_iter(const __wrap_iter& __x)
- : __i(__x.base())
- {
- __get_db()->__iterator_copy(this, &__x);
- }
- _LIBCPP_INLINE_VISIBILITY
- __wrap_iter& operator=(const __wrap_iter& __x)
- {
- if (this != &__x)
- {
- __get_db()->__iterator_copy(this, &__x);
- __i = __x.__i;
- }
- return *this;
- }
- _LIBCPP_INLINE_VISIBILITY
- ~__wrap_iter()
- {
- __get_db()->__erase_i(this);
- }
- #endif
- _LIBCPP_INLINE_VISIBILITY reference operator*() const _NOEXCEPT
- {
- #if _LIBCPP_DEBUG_LEVEL >= 2
- _LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this),
- "Attempted to dereference a non-dereferenceable iterator");
- #endif
- return *__i;
- }
- _LIBCPP_INLINE_VISIBILITY pointer operator->() const _NOEXCEPT
- {
- #if _LIBCPP_DEBUG_LEVEL >= 2
- _LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this),
- "Attempted to dereference a non-dereferenceable iterator");
- #endif
- return (pointer)_VSTD::addressof(*__i);
- }
- _LIBCPP_INLINE_VISIBILITY __wrap_iter& operator++() _NOEXCEPT
- {
- #if _LIBCPP_DEBUG_LEVEL >= 2
- _LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this),
- "Attempted to increment non-incrementable iterator");
- #endif
- ++__i;
- return *this;
- }
- _LIBCPP_INLINE_VISIBILITY __wrap_iter operator++(int) _NOEXCEPT
- {__wrap_iter __tmp(*this); ++(*this); return __tmp;}
- _LIBCPP_INLINE_VISIBILITY __wrap_iter& operator--() _NOEXCEPT
- {
- #if _LIBCPP_DEBUG_LEVEL >= 2
- _LIBCPP_ASSERT(__get_const_db()->__decrementable(this),
- "Attempted to decrement non-decrementable iterator");
- #endif
- --__i;
- return *this;
- }
- _LIBCPP_INLINE_VISIBILITY __wrap_iter operator--(int) _NOEXCEPT
- {__wrap_iter __tmp(*this); --(*this); return __tmp;}
- _LIBCPP_INLINE_VISIBILITY __wrap_iter operator+ (difference_type __n) const _NOEXCEPT
- {__wrap_iter __w(*this); __w += __n; return __w;}
- _LIBCPP_INLINE_VISIBILITY __wrap_iter& operator+=(difference_type __n) _NOEXCEPT
- {
- #if _LIBCPP_DEBUG_LEVEL >= 2
- _LIBCPP_ASSERT(__get_const_db()->__addable(this, __n),
- "Attempted to add/subtract iterator outside of valid range");
- #endif
- __i += __n;
- return *this;
- }
- _LIBCPP_INLINE_VISIBILITY __wrap_iter operator- (difference_type __n) const _NOEXCEPT
- {return *this + (-__n);}
- _LIBCPP_INLINE_VISIBILITY __wrap_iter& operator-=(difference_type __n) _NOEXCEPT
- {*this += -__n; return *this;}
- _LIBCPP_INLINE_VISIBILITY reference operator[](difference_type __n) const _NOEXCEPT
- {
- #if _LIBCPP_DEBUG_LEVEL >= 2
- _LIBCPP_ASSERT(__get_const_db()->__subscriptable(this, __n),
- "Attempted to subscript iterator outside of valid range");
- #endif
- return __i[__n];
- }
- _LIBCPP_INLINE_VISIBILITY iterator_type base() const _NOEXCEPT {return __i;}
- private:
- #if _LIBCPP_DEBUG_LEVEL >= 2
- _LIBCPP_INLINE_VISIBILITY __wrap_iter(const void* __p, iterator_type __x) : __i(__x)
- {
- __get_db()->__insert_ic(this, __p);
- }
- #else
- _LIBCPP_INLINE_VISIBILITY __wrap_iter(iterator_type __x) _NOEXCEPT : __i(__x) {}
- #endif
- template <class _Up> friend class __wrap_iter;
- template <class _CharT, class _Traits, class _Alloc> friend class basic_string;
- template <class _Tp, class _Alloc> friend class _LIBCPP_TYPE_VIS_ONLY vector;
- template <class _Iter1, class _Iter2>
- friend
- bool
- operator==(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
- template <class _Iter1, class _Iter2>
- friend
- bool
- operator<(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
- template <class _Iter1, class _Iter2>
- friend
- bool
- operator!=(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
- template <class _Iter1, class _Iter2>
- friend
- bool
- operator>(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
- template <class _Iter1, class _Iter2>
- friend
- bool
- operator>=(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
- template <class _Iter1, class _Iter2>
- friend
- bool
- operator<=(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
- #ifndef _LIBCPP_CXX03_LANG
- template <class _Iter1, class _Iter2>
- friend
- auto
- operator-(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT
- -> decltype(__x.base() - __y.base());
- #else
- template <class _Iter1, class _Iter2>
- friend
- typename __wrap_iter<_Iter1>::difference_type
- operator-(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT;
- #endif
- template <class _Iter1>
- friend
- __wrap_iter<_Iter1>
- operator+(typename __wrap_iter<_Iter1>::difference_type, __wrap_iter<_Iter1>) _NOEXCEPT;
- template <class _Ip, class _Op> friend _Op copy(_Ip, _Ip, _Op);
- template <class _B1, class _B2> friend _B2 copy_backward(_B1, _B1, _B2);
- template <class _Ip, class _Op> friend _Op move(_Ip, _Ip, _Op);
- template <class _B1, class _B2> friend _B2 move_backward(_B1, _B1, _B2);
- template <class _Tp>
- friend
- typename enable_if
- <
- is_trivially_copy_assignable<_Tp>::value,
- _Tp*
- >::type
- __unwrap_iter(__wrap_iter<_Tp*>);
- };
- template <class _Iter1, class _Iter2>
- inline _LIBCPP_INLINE_VISIBILITY
- bool
- operator==(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT
- {
- return __x.base() == __y.base();
- }
- template <class _Iter1, class _Iter2>
- inline _LIBCPP_INLINE_VISIBILITY
- bool
- operator<(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT
- {
- #if _LIBCPP_DEBUG_LEVEL >= 2
- _LIBCPP_ASSERT(__get_const_db()->__less_than_comparable(&__x, &__y),
- "Attempted to compare incomparable iterators");
- #endif
- return __x.base() < __y.base();
- }
- template <class _Iter1, class _Iter2>
- inline _LIBCPP_INLINE_VISIBILITY
- bool
- operator!=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT
- {
- return !(__x == __y);
- }
- template <class _Iter1, class _Iter2>
- inline _LIBCPP_INLINE_VISIBILITY
- bool
- operator>(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT
- {
- return __y < __x;
- }
- template <class _Iter1, class _Iter2>
- inline _LIBCPP_INLINE_VISIBILITY
- bool
- operator>=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT
- {
- return !(__x < __y);
- }
- template <class _Iter1, class _Iter2>
- inline _LIBCPP_INLINE_VISIBILITY
- bool
- operator<=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT
- {
- return !(__y < __x);
- }
- template <class _Iter1>
- inline _LIBCPP_INLINE_VISIBILITY
- bool
- operator!=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEXCEPT
- {
- return !(__x == __y);
- }
- template <class _Iter1>
- inline _LIBCPP_INLINE_VISIBILITY
- bool
- operator>(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEXCEPT
- {
- return __y < __x;
- }
- template <class _Iter1>
- inline _LIBCPP_INLINE_VISIBILITY
- bool
- operator>=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEXCEPT
- {
- return !(__x < __y);
- }
- template <class _Iter1>
- inline _LIBCPP_INLINE_VISIBILITY
- bool
- operator<=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEXCEPT
- {
- return !(__y < __x);
- }
- #ifndef _LIBCPP_CXX03_LANG
- template <class _Iter1, class _Iter2>
- inline _LIBCPP_INLINE_VISIBILITY
- auto
- operator-(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT
- -> decltype(__x.base() - __y.base())
- {
- #if _LIBCPP_DEBUG_LEVEL >= 2
- _LIBCPP_ASSERT(__get_const_db()->__less_than_comparable(&__x, &__y),
- "Attempted to subtract incompatible iterators");
- #endif
- return __x.base() - __y.base();
- }
- #else
- template <class _Iter1, class _Iter2>
- inline _LIBCPP_INLINE_VISIBILITY
- typename __wrap_iter<_Iter1>::difference_type
- operator-(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT
- {
- #if _LIBCPP_DEBUG_LEVEL >= 2
- _LIBCPP_ASSERT(__get_const_db()->__less_than_comparable(&__x, &__y),
- "Attempted to subtract incompatible iterators");
- #endif
- return __x.base() - __y.base();
- }
- #endif
- template <class _Iter>
- inline _LIBCPP_INLINE_VISIBILITY
- __wrap_iter<_Iter>
- operator+(typename __wrap_iter<_Iter>::difference_type __n,
- __wrap_iter<_Iter> __x) _NOEXCEPT
- {
- __x += __n;
- return __x;
- }
- template <class _Iter>
- struct __libcpp_is_trivial_iterator
- : public _LIBCPP_BOOL_CONSTANT(is_pointer<_Iter>::value) {};
-
- template <class _Iter>
- struct __libcpp_is_trivial_iterator<move_iterator<_Iter> >
- : public _LIBCPP_BOOL_CONSTANT(__libcpp_is_trivial_iterator<_Iter>::value) {};
- template <class _Iter>
- struct __libcpp_is_trivial_iterator<reverse_iterator<_Iter> >
- : public _LIBCPP_BOOL_CONSTANT(__libcpp_is_trivial_iterator<_Iter>::value) {};
- template <class _Iter>
- struct __libcpp_is_trivial_iterator<__wrap_iter<_Iter> >
- : public _LIBCPP_BOOL_CONSTANT(__libcpp_is_trivial_iterator<_Iter>::value) {};
- template <class _Tp, size_t _Np>
- inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
- _Tp*
- begin(_Tp (&__array)[_Np])
- {
- return __array;
- }
- template <class _Tp, size_t _Np>
- inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
- _Tp*
- end(_Tp (&__array)[_Np])
- {
- return __array + _Np;
- }
- #if !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_TRAILING_RETURN)
- template <class _Cp>
- inline _LIBCPP_INLINE_VISIBILITY
- auto
- begin(_Cp& __c) -> decltype(__c.begin())
- {
- return __c.begin();
- }
- template <class _Cp>
- inline _LIBCPP_INLINE_VISIBILITY
- auto
- begin(const _Cp& __c) -> decltype(__c.begin())
- {
- return __c.begin();
- }
- template <class _Cp>
- inline _LIBCPP_INLINE_VISIBILITY
- auto
- end(_Cp& __c) -> decltype(__c.end())
- {
- return __c.end();
- }
- template <class _Cp>
- inline _LIBCPP_INLINE_VISIBILITY
- auto
- end(const _Cp& __c) -> decltype(__c.end())
- {
- return __c.end();
- }
- #if _LIBCPP_STD_VER > 11
- template <class _Tp, size_t _Np>
- inline _LIBCPP_INLINE_VISIBILITY
- reverse_iterator<_Tp*> rbegin(_Tp (&__array)[_Np])
- {
- return reverse_iterator<_Tp*>(__array + _Np);
- }
- template <class _Tp, size_t _Np>
- inline _LIBCPP_INLINE_VISIBILITY
- reverse_iterator<_Tp*> rend(_Tp (&__array)[_Np])
- {
- return reverse_iterator<_Tp*>(__array);
- }
- template <class _Ep>
- inline _LIBCPP_INLINE_VISIBILITY
- reverse_iterator<const _Ep*> rbegin(initializer_list<_Ep> __il)
- {
- return reverse_iterator<const _Ep*>(__il.end());
- }
- template <class _Ep>
- inline _LIBCPP_INLINE_VISIBILITY
- reverse_iterator<const _Ep*> rend(initializer_list<_Ep> __il)
- {
- return reverse_iterator<const _Ep*>(__il.begin());
- }
- template <class _Cp>
- inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
- auto cbegin(const _Cp& __c) -> decltype(_VSTD::begin(__c))
- {
- return _VSTD::begin(__c);
- }
- template <class _Cp>
- inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
- auto cend(const _Cp& __c) -> decltype(_VSTD::end(__c))
- {
- return _VSTD::end(__c);
- }
- template <class _Cp>
- inline _LIBCPP_INLINE_VISIBILITY
- auto rbegin(_Cp& __c) -> decltype(__c.rbegin())
- {
- return __c.rbegin();
- }
- template <class _Cp>
- inline _LIBCPP_INLINE_VISIBILITY
- auto rbegin(const _Cp& __c) -> decltype(__c.rbegin())
- {
- return __c.rbegin();
- }
- template <class _Cp>
- inline _LIBCPP_INLINE_VISIBILITY
- auto rend(_Cp& __c) -> decltype(__c.rend())
- {
- return __c.rend();
- }
- template <class _Cp>
- inline _LIBCPP_INLINE_VISIBILITY
- auto rend(const _Cp& __c) -> decltype(__c.rend())
- {
- return __c.rend();
- }
- template <class _Cp>
- inline _LIBCPP_INLINE_VISIBILITY
- auto crbegin(const _Cp& __c) -> decltype(_VSTD::rbegin(__c))
- {
- return _VSTD::rbegin(__c);
- }
- template <class _Cp>
- inline _LIBCPP_INLINE_VISIBILITY
- auto crend(const _Cp& __c) -> decltype(_VSTD::rend(__c))
- {
- return _VSTD::rend(__c);
- }
- #endif
- #else // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_TRAILING_RETURN)
- template <class _Cp>
- inline _LIBCPP_INLINE_VISIBILITY
- typename _Cp::iterator
- begin(_Cp& __c)
- {
- return __c.begin();
- }
- template <class _Cp>
- inline _LIBCPP_INLINE_VISIBILITY
- typename _Cp::const_iterator
- begin(const _Cp& __c)
- {
- return __c.begin();
- }
- template <class _Cp>
- inline _LIBCPP_INLINE_VISIBILITY
- typename _Cp::iterator
- end(_Cp& __c)
- {
- return __c.end();
- }
- template <class _Cp>
- inline _LIBCPP_INLINE_VISIBILITY
- typename _Cp::const_iterator
- end(const _Cp& __c)
- {
- return __c.end();
- }
- #endif // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_TRAILING_RETURN)
- #if _LIBCPP_STD_VER > 14
- template <class _Cont>
- constexpr auto size(const _Cont& __c) -> decltype(__c.size()) { return __c.size(); }
- template <class _Tp, size_t _Sz>
- constexpr size_t size(const _Tp (&__array)[_Sz]) noexcept { return _Sz; }
- template <class _Cont>
- constexpr auto empty(const _Cont& __c) -> decltype(__c.empty()) { return __c.empty(); }
- template <class _Tp, size_t _Sz>
- constexpr bool empty(const _Tp (&__array)[_Sz]) noexcept { return false; }
- template <class _Ep>
- constexpr bool empty(initializer_list<_Ep> __il) noexcept { return __il.size() == 0; }
- template <class _Cont> constexpr
- auto data(_Cont& __c) -> decltype(__c.data()) { return __c.data(); }
- template <class _Cont> constexpr
- auto data(const _Cont& __c) -> decltype(__c.data()) { return __c.data(); }
- template <class _Tp, size_t _Sz>
- constexpr _Tp* data(_Tp (&__array)[_Sz]) noexcept { return __array; }
- template <class _Ep>
- constexpr const _Ep* data(initializer_list<_Ep> __il) noexcept { return __il.begin(); }
- #endif
- _LIBCPP_END_NAMESPACE_STD
- #endif // _LIBCPP_ITERATOR
|