Crossfire Server, Trunk
nlohmann::detail::json_reverse_iterator< Base > Class Template Reference

a template for a reverse iterator class More...

#include <json.hpp>

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

Public Types

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

Public Member Functions

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

  • BidirectionalIterator: The iterator that can be moved can be moved in both directions (i.e. incremented and decremented).
  • OutputIterator: It is possible to write to the pointed-to element (only if Base is iterator).
Since
version 1.0.0

Definition at line 12244 of file json.hpp.

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 12249 of file json.hpp.

◆ difference_type

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

Definition at line 12247 of file json.hpp.

◆ 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 12251 of file json.hpp.

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 12254 of file json.hpp.

◆ 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 12258 of file json.hpp.

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 12315 of file json.hpp.

◆ 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 12291 of file json.hpp.

Referenced by nlohmann::detail::json_reverse_iterator< Base >::operator[]().

+ Here is the caller graph for this function:

◆ operator++() [1/2]

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

pre-increment (++it)

Definition at line 12267 of file json.hpp.

◆ operator++() [2/2]

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

post-increment (it++)

Definition at line 12261 of file json.hpp.

◆ operator+=()

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

add to iterator

Definition at line 12285 of file json.hpp.

◆ 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 12303 of file json.hpp.

◆ 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 12297 of file json.hpp.

◆ operator--() [1/2]

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

pre-decrement (–it)

Definition at line 12279 of file json.hpp.

◆ operator--() [2/2]

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

post-decrement (it–)

Definition at line 12273 of file json.hpp.

◆ operator[]()

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

access to successor

Definition at line 12309 of file json.hpp.

References nlohmann::detail::json_reverse_iterator< Base >::operator+().

+ Here is the call graph for this function:

◆ value()

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

return the value of an iterator

Definition at line 12322 of file json.hpp.


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