2024-05-27 09:12:27 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef _LIBCPP___ITERATOR_WRAP_ITER_H
|
|
|
|
#define _LIBCPP___ITERATOR_WRAP_ITER_H
|
|
|
|
|
|
|
|
#include <__config>
|
|
|
|
#include <__iterator/iterator_traits.h>
|
|
|
|
#include <__memory/addressof.h>
|
|
|
|
#include <__memory/pointer_traits.h>
|
|
|
|
#include <__type_traits/enable_if.h>
|
|
|
|
#include <__type_traits/is_convertible.h>
|
2024-07-23 10:16:17 +00:00
|
|
|
#include <cstddef>
|
2024-05-27 09:12:27 +00:00
|
|
|
|
|
|
|
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
|
|
|
# pragma GCC system_header
|
|
|
|
#endif
|
|
|
|
|
|
|
|
_LIBCPP_BEGIN_NAMESPACE_STD
|
|
|
|
|
|
|
|
template <class _Iter>
|
2024-07-23 10:16:17 +00:00
|
|
|
class __wrap_iter {
|
2024-05-27 09:12:27 +00:00
|
|
|
public:
|
2024-07-23 10:16:17 +00:00
|
|
|
typedef _Iter iterator_type;
|
|
|
|
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;
|
|
|
|
typedef typename iterator_traits<iterator_type>::iterator_category iterator_category;
|
2024-05-27 09:12:27 +00:00
|
|
|
#if _LIBCPP_STD_VER >= 20
|
2024-07-23 10:16:17 +00:00
|
|
|
typedef contiguous_iterator_tag iterator_concept;
|
2024-05-27 09:12:27 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
private:
|
2024-07-23 10:16:17 +00:00
|
|
|
iterator_type __i_;
|
2024-05-27 09:12:27 +00:00
|
|
|
|
2024-07-23 10:16:17 +00:00
|
|
|
public:
|
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 __wrap_iter() _NOEXCEPT : __i_() {}
|
|
|
|
template <class _Up, __enable_if_t<is_convertible<_Up, iterator_type>::value, int> = 0>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 __wrap_iter(const __wrap_iter<_Up>& __u) _NOEXCEPT
|
|
|
|
: __i_(__u.base()) {}
|
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 reference operator*() const _NOEXCEPT { return *__i_; }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 pointer operator->() const _NOEXCEPT {
|
|
|
|
return std::__to_address(__i_);
|
|
|
|
}
|
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 __wrap_iter& operator++() _NOEXCEPT {
|
|
|
|
++__i_;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 __wrap_iter operator++(int) _NOEXCEPT {
|
|
|
|
__wrap_iter __tmp(*this);
|
|
|
|
++(*this);
|
|
|
|
return __tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 __wrap_iter& operator--() _NOEXCEPT {
|
|
|
|
--__i_;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 __wrap_iter operator--(int) _NOEXCEPT {
|
|
|
|
__wrap_iter __tmp(*this);
|
|
|
|
--(*this);
|
|
|
|
return __tmp;
|
|
|
|
}
|
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 __wrap_iter operator+(difference_type __n) const _NOEXCEPT {
|
|
|
|
__wrap_iter __w(*this);
|
|
|
|
__w += __n;
|
|
|
|
return __w;
|
|
|
|
}
|
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 __wrap_iter& operator+=(difference_type __n) _NOEXCEPT {
|
|
|
|
__i_ += __n;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 __wrap_iter operator-(difference_type __n) const _NOEXCEPT {
|
|
|
|
return *this + (-__n);
|
|
|
|
}
|
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 __wrap_iter& operator-=(difference_type __n) _NOEXCEPT {
|
|
|
|
*this += -__n;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 reference operator[](difference_type __n) const _NOEXCEPT {
|
|
|
|
return __i_[__n];
|
|
|
|
}
|
|
|
|
|
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 iterator_type base() const _NOEXCEPT { return __i_; }
|
2024-05-27 09:12:27 +00:00
|
|
|
|
|
|
|
private:
|
2024-07-23 10:16:17 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 explicit __wrap_iter(iterator_type __x) _NOEXCEPT : __i_(__x) {}
|
|
|
|
|
|
|
|
template <class _Up>
|
|
|
|
friend class __wrap_iter;
|
|
|
|
template <class _CharT, class _Traits, class _Alloc>
|
|
|
|
friend class basic_string;
|
|
|
|
template <class _CharT, class _Traits>
|
|
|
|
friend class basic_string_view;
|
|
|
|
template <class _Tp, class _Alloc>
|
|
|
|
friend class _LIBCPP_TEMPLATE_VIS vector;
|
|
|
|
template <class _Tp, size_t>
|
|
|
|
friend class _LIBCPP_TEMPLATE_VIS span;
|
|
|
|
template <class _Tp, size_t _Size>
|
|
|
|
friend struct array;
|
2024-05-27 09:12:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template <class _Iter1>
|
2024-07-23 10:16:17 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR bool
|
|
|
|
operator==(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEXCEPT {
|
|
|
|
return __x.base() == __y.base();
|
2024-05-27 09:12:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Iter1, class _Iter2>
|
2024-07-23 10:16:17 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR bool
|
|
|
|
operator==(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT {
|
|
|
|
return __x.base() == __y.base();
|
2024-05-27 09:12:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Iter1>
|
2024-07-23 10:16:17 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 bool
|
|
|
|
operator<(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEXCEPT {
|
|
|
|
return __x.base() < __y.base();
|
2024-05-27 09:12:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Iter1, class _Iter2>
|
2024-07-23 10:16:17 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 bool
|
|
|
|
operator<(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT {
|
|
|
|
return __x.base() < __y.base();
|
2024-05-27 09:12:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Iter1>
|
2024-07-23 10:16:17 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR bool
|
|
|
|
operator!=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEXCEPT {
|
|
|
|
return !(__x == __y);
|
2024-05-27 09:12:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Iter1, class _Iter2>
|
2024-07-23 10:16:17 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR bool
|
|
|
|
operator!=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT {
|
|
|
|
return !(__x == __y);
|
2024-05-27 09:12:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Iter1>
|
2024-07-23 10:16:17 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR bool
|
|
|
|
operator>(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEXCEPT {
|
|
|
|
return __y < __x;
|
2024-05-27 09:12:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Iter1, class _Iter2>
|
2024-07-23 10:16:17 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR bool
|
|
|
|
operator>(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT {
|
|
|
|
return __y < __x;
|
2024-05-27 09:12:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Iter1>
|
2024-07-23 10:16:17 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR bool
|
|
|
|
operator>=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEXCEPT {
|
|
|
|
return !(__x < __y);
|
2024-05-27 09:12:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Iter1, class _Iter2>
|
2024-07-23 10:16:17 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR bool
|
|
|
|
operator>=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT {
|
|
|
|
return !(__x < __y);
|
2024-05-27 09:12:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Iter1>
|
2024-07-23 10:16:17 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR bool
|
|
|
|
operator<=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEXCEPT {
|
|
|
|
return !(__y < __x);
|
2024-05-27 09:12:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Iter1, class _Iter2>
|
2024-07-23 10:16:17 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR bool
|
|
|
|
operator<=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT {
|
|
|
|
return !(__y < __x);
|
2024-05-27 09:12:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Iter1, class _Iter2>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14
|
|
|
|
#ifndef _LIBCPP_CXX03_LANG
|
2024-07-23 10:16:17 +00:00
|
|
|
auto
|
|
|
|
operator-(const __wrap_iter<_Iter1>& __x,
|
|
|
|
const __wrap_iter<_Iter2>& __y) _NOEXCEPT->decltype(__x.base() - __y.base())
|
2024-05-27 09:12:27 +00:00
|
|
|
#else
|
|
|
|
typename __wrap_iter<_Iter1>::difference_type
|
|
|
|
operator-(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT
|
|
|
|
#endif // C++03
|
|
|
|
{
|
2024-07-23 10:16:17 +00:00
|
|
|
return __x.base() - __y.base();
|
2024-05-27 09:12:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Iter1>
|
2024-07-23 10:16:17 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 __wrap_iter<_Iter1>
|
|
|
|
operator+(typename __wrap_iter<_Iter1>::difference_type __n, __wrap_iter<_Iter1> __x) _NOEXCEPT {
|
|
|
|
__x += __n;
|
|
|
|
return __x;
|
2024-05-27 09:12:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#if _LIBCPP_STD_VER <= 17
|
|
|
|
template <class _It>
|
|
|
|
struct __libcpp_is_contiguous_iterator<__wrap_iter<_It> > : true_type {};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
template <class _It>
|
2024-07-23 10:16:17 +00:00
|
|
|
struct _LIBCPP_TEMPLATE_VIS pointer_traits<__wrap_iter<_It> > {
|
|
|
|
typedef __wrap_iter<_It> pointer;
|
|
|
|
typedef typename pointer_traits<_It>::element_type element_type;
|
|
|
|
typedef typename pointer_traits<_It>::difference_type difference_type;
|
|
|
|
|
|
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR static element_type* to_address(pointer __w) _NOEXCEPT {
|
|
|
|
return std::__to_address(__w.base());
|
|
|
|
}
|
2024-05-27 09:12:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
_LIBCPP_END_NAMESPACE_STD
|
|
|
|
|
|
|
|
#endif // _LIBCPP___ITERATOR_WRAP_ITER_H
|