#include <v8-internal.h>
Public Types | |
using | difference_type = typename std::iterator_traits< Iterator >::difference_type |
using | value_type = std::conditional_t< std::is_void_v< ElementType >, typename std::iterator_traits< Iterator >::value_type, ElementType > |
using | pointer = std::conditional_t< std::is_void_v< ElementType >, typename std::iterator_traits< Iterator >::pointer, std::add_pointer_t< ElementType > > |
using | reference = std::conditional_t< std::is_void_v< ElementType >, typename std::iterator_traits< Iterator >::reference, std::add_lvalue_reference_t< ElementType > > |
using | iterator_category = typename std::iterator_traits< Iterator >::iterator_category |
Public Member Functions | |
constexpr | WrappedIterator () noexcept=default |
constexpr | WrappedIterator (Iterator it) noexcept |
template<typename OtherIterator , typename OtherElementType , typename = std::enable_if_t< std::is_convertible_v<OtherIterator, Iterator>>> | |
constexpr | WrappedIterator (const WrappedIterator< OtherIterator, OtherElementType > &other) noexcept |
constexpr reference | operator* () const noexcept |
constexpr pointer | operator-> () const noexcept |
template<typename OtherIterator , typename OtherElementType > | |
constexpr bool | operator== (const WrappedIterator< OtherIterator, OtherElementType > &other) const noexcept |
template<typename OtherIterator , typename OtherElementType > | |
constexpr bool | operator!= (const WrappedIterator< OtherIterator, OtherElementType > &other) const noexcept |
template<typename OtherIterator , typename OtherElementType > | |
constexpr bool | operator< (const WrappedIterator< OtherIterator, OtherElementType > &other) const noexcept |
template<typename OtherIterator , typename OtherElementType > | |
constexpr bool | operator<= (const WrappedIterator< OtherIterator, OtherElementType > &other) const noexcept |
template<typename OtherIterator , typename OtherElementType > | |
constexpr bool | operator> (const WrappedIterator< OtherIterator, OtherElementType > &other) const noexcept |
template<typename OtherIterator , typename OtherElementType > | |
constexpr bool | operator>= (const WrappedIterator< OtherIterator, OtherElementType > &other) const noexcept |
constexpr WrappedIterator & | operator++ () noexcept |
constexpr WrappedIterator | operator++ (int) noexcept |
constexpr WrappedIterator & | operator-- () noexcept |
constexpr WrappedIterator | operator-- (int) noexcept |
constexpr WrappedIterator | operator+ (difference_type n) const noexcept |
constexpr WrappedIterator & | operator+= (difference_type n) noexcept |
constexpr WrappedIterator | operator- (difference_type n) const noexcept |
constexpr WrappedIterator & | operator-= (difference_type n) noexcept |
template<typename OtherIterator , typename OtherElementType > | |
constexpr auto | operator- (const WrappedIterator< OtherIterator, OtherElementType > &other) const noexcept |
constexpr reference | operator[] (difference_type n) const noexcept |
constexpr const Iterator & | base () const noexcept |
Friends | |
constexpr WrappedIterator | operator+ (difference_type n, const WrappedIterator &x) noexcept |
using v8::internal::WrappedIterator< Iterator, ElementType >::difference_type = typename std::iterator_traits<Iterator>::difference_type |
using v8::internal::WrappedIterator< Iterator, ElementType >::iterator_category = typename std::iterator_traits<Iterator>::iterator_category |
using v8::internal::WrappedIterator< Iterator, ElementType >::pointer = std::conditional_t<std::is_void_v<ElementType>, typename std::iterator_traits<Iterator>::pointer, std::add_pointer_t<ElementType> > |
using v8::internal::WrappedIterator< Iterator, ElementType >::reference = std::conditional_t<std::is_void_v<ElementType>, typename std::iterator_traits<Iterator>::reference, std::add_lvalue_reference_t<ElementType> > |
using v8::internal::WrappedIterator< Iterator, ElementType >::value_type = std::conditional_t<std::is_void_v<ElementType>, typename std::iterator_traits<Iterator>::value_type, ElementType> |
|
constexprdefaultnoexcept |
|
inlineexplicitconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
friend |