Instrument Neutral Distributed Interface INDI  2.0.2
Public Types | Public Member Functions | List of all members
nlohmann::detail::json_reverse_iterator< Base > Class Template Reference

a template for a reverse iterator class More...

#include <json.h>

Inheritance diagram for nlohmann::detail::json_reverse_iterator< Base >:

Public Types

using difference_type = std::ptrdiff_t
 
using base_iterator = std::reverse_iterator< Base >
 shortcut to the reverse iterator adapter More...
 
using reference = typename Base::reference
 the reference type for the pointed-to element More...
 

Public Member Functions

 json_reverse_iterator (const typename base_iterator::iterator_type &it) noexcept
 create reverse iterator from iterator More...
 
 json_reverse_iterator (const base_iterator &it) noexcept
 create reverse iterator from base class More...
 
json_reverse_iterator operator++ (int) &
 post-increment (it++) More...
 
json_reverse_iteratoroperator++ ()
 pre-increment (++it) More...
 
json_reverse_iterator operator-- (int) &
 post-decrement (it–) More...
 
json_reverse_iteratoroperator-- ()
 pre-decrement (–it) More...
 
json_reverse_iteratoroperator+= (difference_type i)
 add to iterator More...
 
json_reverse_iterator operator+ (difference_type i) const
 add to iterator More...
 
json_reverse_iterator operator- (difference_type i) const
 subtract from iterator More...
 
difference_type operator- (const json_reverse_iterator &other) const
 return difference More...
 
reference operator[] (difference_type n) const
 access to successor More...
 
auto key () const -> decltype(std::declval< Base >().key())
 return the key of an object iterator More...
 
reference value () const
 return the value of an iterator More...
 

Detailed Description

template<typename Base>
class nlohmann::detail::json_reverse_iterator< Base >

a template for a reverse iterator class

Template Parameters
Basethe base iterator type to reverse. Valid types are iterator (to create reverse_iterator) and const_iterator (to create const_reverse_iterator).

@requirement The class satisfies the following concept requirements:

Since
version 1.0.0

Definition at line 13123 of file json.h.

Member Typedef Documentation

◆ base_iterator

template<typename Base >
using nlohmann::detail::json_reverse_iterator< Base >::base_iterator = std::reverse_iterator<Base>

shortcut to the reverse iterator adapter

Definition at line 13128 of file json.h.

◆ difference_type

template<typename Base >
using nlohmann::detail::json_reverse_iterator< Base >::difference_type = std::ptrdiff_t

Definition at line 13126 of file json.h.

◆ reference

template<typename Base >
using nlohmann::detail::json_reverse_iterator< Base >::reference = typename Base::reference

the reference type for the pointed-to element

Definition at line 13130 of file json.h.

Constructor & Destructor Documentation

◆ json_reverse_iterator() [1/2]

template<typename Base >
nlohmann::detail::json_reverse_iterator< Base >::json_reverse_iterator ( const typename base_iterator::iterator_type &  it)
inlineexplicitnoexcept

create reverse iterator from iterator

Definition at line 13133 of file json.h.

◆ json_reverse_iterator() [2/2]

template<typename Base >
nlohmann::detail::json_reverse_iterator< Base >::json_reverse_iterator ( const base_iterator it)
inlineexplicitnoexcept

create reverse iterator from base class

Definition at line 13137 of file json.h.

Member Function Documentation

◆ key()

template<typename Base >
auto nlohmann::detail::json_reverse_iterator< Base >::key ( ) const -> decltype(std::declval<Base>().key())
inline

return the key of an object iterator

Definition at line 13194 of file json.h.

◆ operator+()

template<typename Base >
json_reverse_iterator nlohmann::detail::json_reverse_iterator< Base >::operator+ ( difference_type  i) const
inline

add to iterator

Definition at line 13170 of file json.h.

◆ operator++() [1/2]

template<typename Base >
json_reverse_iterator& nlohmann::detail::json_reverse_iterator< Base >::operator++ ( )
inline

pre-increment (++it)

Definition at line 13146 of file json.h.

◆ operator++() [2/2]

template<typename Base >
json_reverse_iterator nlohmann::detail::json_reverse_iterator< Base >::operator++ ( int  ) &
inline

post-increment (it++)

Definition at line 13140 of file json.h.

◆ operator+=()

template<typename Base >
json_reverse_iterator& nlohmann::detail::json_reverse_iterator< Base >::operator+= ( difference_type  i)
inline

add to iterator

Definition at line 13164 of file json.h.

◆ operator-() [1/2]

template<typename Base >
difference_type nlohmann::detail::json_reverse_iterator< Base >::operator- ( const json_reverse_iterator< Base > &  other) const
inline

return difference

Definition at line 13182 of file json.h.

◆ operator-() [2/2]

template<typename Base >
json_reverse_iterator nlohmann::detail::json_reverse_iterator< Base >::operator- ( difference_type  i) const
inline

subtract from iterator

Definition at line 13176 of file json.h.

◆ operator--() [1/2]

template<typename Base >
json_reverse_iterator& nlohmann::detail::json_reverse_iterator< Base >::operator-- ( )
inline

pre-decrement (–it)

Definition at line 13158 of file json.h.

◆ operator--() [2/2]

template<typename Base >
json_reverse_iterator nlohmann::detail::json_reverse_iterator< Base >::operator-- ( int  ) &
inline

post-decrement (it–)

Definition at line 13152 of file json.h.

◆ operator[]()

template<typename Base >
reference nlohmann::detail::json_reverse_iterator< Base >::operator[] ( difference_type  n) const
inline

access to successor

Definition at line 13188 of file json.h.

◆ value()

template<typename Base >
reference nlohmann::detail::json_reverse_iterator< Base >::value ( ) const
inline

return the value of an iterator

Definition at line 13201 of file json.h.


The documentation for this class was generated from the following file: