LArSoft  v07_13_02
Liquid Argon Software toolkit - http://larsoft.org/
lar::sparse_vector< T >::const_iterator Class Reference

Iterator to the sparse vector values. More...

#include "sparse_vector.h"

Inheritance diagram for lar::sparse_vector< T >::const_iterator:
lar::sparse_vector< T >::iterator

Classes

struct  special
 Namespace for special initialization. More...
 

Public Types

typedef std::forward_iterator_tag iterator_category
 
typedef container_t::value_type value_type
 
typedef container_t::difference_type difference_type
 
typedef container_t::pointer pointer
 
typedef container_t::reference reference
 
typedef vector_t::const_reference const_reference
 

Public Member Functions

 const_iterator ()
 Default constructor, does not iterate anywhere. More...
 
 const_iterator (const container_t &c, size_type offset)
 Constructor from a container and a offset. More...
 
 const_iterator (const container_t &c, const typename special::begin)
 Special constructor: initializes at the beginning of the container. More...
 
 const_iterator (const container_t &c, const typename special::end)
 Special constructor: initializes at the end of the container. More...
 
const_reference operator[] (size_type offset) const
 Random access. More...
 
const_reference operator* () const
 Constant dereferenciation operator. More...
 
difference_type operator- (const const_iterator &iter) const
 Distance operator. More...
 
range_const_iterator get_current_range () const
 Returns the current range internal value; use it at your own risk!! More...
 
const_iteratoroperator++ ()
 Increment and decrement operators. More...
 
const_iterator operator++ (int)
 Increment and decrement operators. More...
 
const_iteratoroperator+= (difference_type delta)
 Increment and decrement operators. More...
 
const_iteratoroperator-= (difference_type delta)
 Increment and decrement operators. More...
 
const_iterator operator+ (difference_type delta) const
 Increment and decrement operators. More...
 
const_iterator operator- (difference_type delta) const
 Increment and decrement operators. More...
 
bool operator== (const const_iterator &as) const
 Iterator comparisons. More...
 
bool operator!= (const const_iterator &as) const
 Iterator comparisons. More...
 
bool operator< (const const_iterator &than) const
 Iterator comparisons. More...
 
bool operator> (const const_iterator &than) const
 Iterator comparisons. More...
 
bool operator<= (const const_iterator &than) const
 Iterator comparisons. More...
 
bool operator>= (const const_iterator &than) const
 Iterator comparisons. More...
 

Protected Types

typedef sparse_vector< T > container_t
 
typedef container_t::size_type size_type
 
typedef container_t::range_list_t::const_iterator ranges_const_iterator
 

Protected Member Functions

void refresh_state ()
 Reassigns the internal state according to the index. More...
 

Protected Attributes

const container_tcont
 pointer to the container More...
 
size_type index
 pointer to the current value, as absolute index More...
 
ranges_const_iterator currentRange
 pointer to the current (or next) range More...
 

Friends

class container_t
 

Detailed Description

template<typename T>
class lar::sparse_vector< T >::const_iterator

Iterator to the sparse vector values.

Definition at line 1247 of file sparse_vector.h.

Member Typedef Documentation

template<typename T>
typedef vector_t::const_reference lar::sparse_vector< T >::const_iterator::const_reference

Definition at line 1278 of file sparse_vector.h.

template<typename T>
typedef sparse_vector<T> lar::sparse_vector< T >::const_iterator::container_t
protected

Definition at line 1255 of file sparse_vector.h.

template<typename T>
typedef container_t::difference_type lar::sparse_vector< T >::const_iterator::difference_type

Definition at line 1273 of file sparse_vector.h.

template<typename T>
typedef std::forward_iterator_tag lar::sparse_vector< T >::const_iterator::iterator_category

Definition at line 1263 of file sparse_vector.h.

template<typename T>
typedef container_t::pointer lar::sparse_vector< T >::const_iterator::pointer

Definition at line 1274 of file sparse_vector.h.

template<typename T>
typedef container_t::range_list_t::const_iterator lar::sparse_vector< T >::const_iterator::ranges_const_iterator
protected

Definition at line 1257 of file sparse_vector.h.

template<typename T>
typedef container_t::reference lar::sparse_vector< T >::const_iterator::reference

Definition at line 1275 of file sparse_vector.h.

template<typename T>
typedef container_t::size_type lar::sparse_vector< T >::const_iterator::size_type
protected

Definition at line 1256 of file sparse_vector.h.

template<typename T>
typedef container_t::value_type lar::sparse_vector< T >::const_iterator::value_type

Definition at line 1272 of file sparse_vector.h.

Constructor & Destructor Documentation

template<typename T>
lar::sparse_vector< T >::const_iterator::const_iterator ( )
inline

Default constructor, does not iterate anywhere.

Definition at line 1282 of file sparse_vector.h.

1282 : cont(nullptr), index(0), currentRange() {}
const container_t * cont
pointer to the container
ranges_const_iterator currentRange
pointer to the current (or next) range
size_type index
pointer to the current value, as absolute index
template<typename T>
lar::sparse_vector< T >::const_iterator::const_iterator ( const container_t c,
size_type  offset 
)
inline

Constructor from a container and a offset.

Definition at line 1285 of file sparse_vector.h.

1285  :
1286  cont(&c), index(std::min(offset, c.size())), currentRange()
1287  { refresh_state(); }
void refresh_state()
Reassigns the internal state according to the index.
const container_t * cont
pointer to the container
ranges_const_iterator currentRange
pointer to the current (or next) range
size_type index
pointer to the current value, as absolute index
Int_t min
Definition: plot.C:26
template<typename T>
lar::sparse_vector< T >::const_iterator::const_iterator ( const container_t c,
const typename special::begin   
)
inline

Special constructor: initializes at the beginning of the container.

Definition at line 1290 of file sparse_vector.h.

1290  :
1291  cont(&c), index(0), currentRange(c.get_ranges().begin())
1292  {}
const container_t * cont
pointer to the container
ranges_const_iterator currentRange
pointer to the current (or next) range
size_type index
pointer to the current value, as absolute index
template<typename T>
lar::sparse_vector< T >::const_iterator::const_iterator ( const container_t c,
const typename special::end   
)
inline

Special constructor: initializes at the end of the container.

Definition at line 1295 of file sparse_vector.h.

1295  :
1296  cont(&c), index(c.size()), currentRange(c.get_ranges().end())
1297  {}
const container_t * cont
pointer to the container
ranges_const_iterator currentRange
pointer to the current (or next) range
size_type index
pointer to the current value, as absolute index

Member Function Documentation

template<typename T>
range_const_iterator lar::sparse_vector< T >::const_iterator::get_current_range ( ) const
inline

Returns the current range internal value; use it at your own risk!!

Definition at line 1342 of file sparse_vector.h.

Referenced by lar::sparse_vector< T >::make_void().

1342 { return currentRange; }
ranges_const_iterator currentRange
pointer to the current (or next) range
template<typename T>
bool lar::sparse_vector< T >::const_iterator::operator!= ( const const_iterator as) const
inline

Iterator comparisons.

Definition at line 1329 of file sparse_vector.h.

References lar::sparse_vector< T >::const_iterator::cont, and lar::sparse_vector< T >::const_iterator::index.

1330  { return (cont != as.cont) || (index != as.index); }
const container_t * cont
pointer to the container
size_type index
pointer to the current value, as absolute index
template<typename T >
lar::sparse_vector< T >::const_iterator::const_reference lar::sparse_vector< T >::const_iterator::operator* ( ) const

Constant dereferenciation operator.

Definition at line 2132 of file sparse_vector.h.

2132  {
2133  // no container, no idea what to do
2134  if (!cont) throw std::out_of_range("iterator to no sparse vector");
2135 
2136  // index beyond the end: can't return any reference
2137  if (index >= cont->size()) return value_zero;
2138 
2139  // are we in a valid range? if not, we are past the last range
2140  if (currentRange == cont->ranges.end()) return value_zero;
2141 
2142  // if the index is beyond the current range, we are in the void
2143  if (index < currentRange->begin_index()) return value_zero;
2144 
2145  return (*currentRange)[index];
2146 } // lar::sparse_vector<T>::const_iterator::operator*()
size_type size() const
Returns the size of the vector.
static constexpr value_type value_zero
a representation of 0
const container_t * cont
pointer to the container
ranges_const_iterator currentRange
pointer to the current (or next) range
range_list_t ranges
list of ranges
size_type index
pointer to the current value, as absolute index
template<typename T >
lar::sparse_vector< T >::const_iterator lar::sparse_vector< T >::const_iterator::operator+ ( difference_type  delta) const

Increment and decrement operators.

Definition at line 2170 of file sparse_vector.h.

References lar::sparse_vector< T >::const_iterator::index.

2171 {
2172  if ((currentRange == cont->ranges.end())
2173  || !currentRange->includes(index + delta)
2174  )
2175  return const_iterator(*cont, index + delta);
2176  const_iterator iter(*this);
2177  iter.index += delta;
2178  return iter;
2179 } // lar::sparse_vector<T>::const_iterator::operator+()
const container_t * cont
pointer to the container
ranges_const_iterator currentRange
pointer to the current (or next) range
range_list_t ranges
list of ranges
size_type index
pointer to the current value, as absolute index
const_iterator()
Default constructor, does not iterate anywhere.
template<typename T >
lar::sparse_vector< T >::const_iterator & lar::sparse_vector< T >::const_iterator::operator++ ( )

Increment and decrement operators.

Definition at line 2112 of file sparse_vector.h.

2112  {
2113  // no container, not doing anything;
2114  // index beyond the end: stays there
2115  if (!cont || (index >= cont->size())) return *this;
2116 
2117  // increment the internal index
2118  ++index;
2119 
2120  // were we in a valid range?
2121  if (currentRange != cont->ranges.end()) {
2122  // if the new index is beyond the current range, pick the next
2123  if (currentRange->end_index() <= index) ++currentRange;
2124  }
2125  // if we have no valid range, we are forever in the void
2126  return *this;
2127 } // lar::sparse_vector<T>::iterator::operator++()
size_type size() const
Returns the size of the vector.
const container_t * cont
pointer to the container
ranges_const_iterator currentRange
pointer to the current (or next) range
range_list_t ranges
list of ranges
size_type index
pointer to the current value, as absolute index
template<typename T >
lar::sparse_vector< T >::const_iterator & lar::sparse_vector< T >::const_iterator::operator+= ( difference_type  delta)

Increment and decrement operators.

Definition at line 2151 of file sparse_vector.h.

2152 {
2153  if (delta == 1) return this->operator++();
2154  index += delta;
2155  if ((currentRange == cont->ranges.end())
2156  || !currentRange->includes(index)
2157  )
2158  refresh_state();
2159  return *this;
2160 } // lar::sparse_vector<T>::const_iterator::operator+=()
void refresh_state()
Reassigns the internal state according to the index.
const container_t * cont
pointer to the container
ranges_const_iterator currentRange
pointer to the current (or next) range
range_list_t ranges
list of ranges
const_iterator & operator++()
Increment and decrement operators.
size_type index
pointer to the current value, as absolute index
template<typename T >
lar::sparse_vector< T >::const_iterator lar::sparse_vector< T >::const_iterator::operator- ( difference_type  delta) const
inline

Increment and decrement operators.

Definition at line 2183 of file sparse_vector.h.

References lar::operator+().

2184  { return this->operator+ (-delta); }
const_iterator operator+(difference_type delta) const
Increment and decrement operators.
template<typename T >
lar::sparse_vector< T >::const_iterator::difference_type lar::sparse_vector< T >::const_iterator::operator- ( const const_iterator iter) const
inline

Distance operator.

distance operator

Definition at line 2191 of file sparse_vector.h.

2192 {
2193  if (cont != iter.cont) {
2194  throw std::runtime_error("lar::sparse_vector::const_iterator:"
2195  " difference with alien iterator");
2196  }
2197  return index -iter.index;
2198 } // lar::sparse_vector<T>::const_iterator::operator-(const_iterator)
const container_t * cont
pointer to the container
size_type index
pointer to the current value, as absolute index
template<typename T >
lar::sparse_vector< T >::const_iterator & lar::sparse_vector< T >::const_iterator::operator-= ( difference_type  delta)
inline

Increment and decrement operators.

Definition at line 2164 of file sparse_vector.h.

References lar::dump::operator+=().

2165  { return this->operator+= (-delta); }
const_iterator & operator+=(difference_type delta)
Increment and decrement operators.
template<typename T>
bool lar::sparse_vector< T >::const_iterator::operator< ( const const_iterator than) const
inline

Iterator comparisons.

Definition at line 1331 of file sparse_vector.h.

References lar::sparse_vector< T >::const_iterator::cont, and lar::sparse_vector< T >::const_iterator::index.

1332  { return (cont == than.cont) && (index < than.index); }
const container_t * cont
pointer to the container
size_type index
pointer to the current value, as absolute index
template<typename T>
bool lar::sparse_vector< T >::const_iterator::operator<= ( const const_iterator than) const
inline

Iterator comparisons.

Definition at line 1335 of file sparse_vector.h.

References lar::sparse_vector< T >::const_iterator::cont, and lar::sparse_vector< T >::const_iterator::index.

1336  { return (cont == than.cont) && (index <= than.index); }
const container_t * cont
pointer to the container
size_type index
pointer to the current value, as absolute index
template<typename T>
bool lar::sparse_vector< T >::const_iterator::operator== ( const const_iterator as) const
inline

Iterator comparisons.

Definition at line 1327 of file sparse_vector.h.

1328  { return (cont == as.cont) && (index == as.index); }
const container_t * cont
pointer to the container
size_type index
pointer to the current value, as absolute index
template<typename T>
bool lar::sparse_vector< T >::const_iterator::operator> ( const const_iterator than) const
inline

Iterator comparisons.

Definition at line 1333 of file sparse_vector.h.

References lar::sparse_vector< T >::const_iterator::cont, and lar::sparse_vector< T >::const_iterator::index.

1334  { return (cont == than.cont) && (index > than.index); }
const container_t * cont
pointer to the container
size_type index
pointer to the current value, as absolute index
template<typename T>
bool lar::sparse_vector< T >::const_iterator::operator>= ( const const_iterator than) const
inline

Iterator comparisons.

Definition at line 1337 of file sparse_vector.h.

References lar::sparse_vector< T >::const_iterator::cont, and lar::sparse_vector< T >::const_iterator::index.

1338  { return (cont == than.cont) && (index >= than.index); }
const container_t * cont
pointer to the container
size_type index
pointer to the current value, as absolute index
template<typename T>
const_reference lar::sparse_vector< T >::const_iterator::operator[] ( size_type  offset) const
inline

Random access.

Definition at line 1300 of file sparse_vector.h.

References operator*().

1301  { return (*cont)[index + offset]; }
const container_t * cont
pointer to the container
size_type index
pointer to the current value, as absolute index
template<typename T >
void lar::sparse_vector< T >::const_iterator::refresh_state ( )
protected

Reassigns the internal state according to the index.

Definition at line 2202 of file sparse_vector.h.

2202  {
2203  // update the currentRange
2204  // currentRange is the range including the current item, or next to it
2205  if (cont) {
2206  // the following is actually the range after the index:
2208  // if the index is inside the previous index, then we want to move there:
2209  if (currentRange != cont->ranges.begin()) {
2210  if ((currentRange - 1)->end_index() > index) --currentRange;
2211  }
2212  }
2213  else {
2214  currentRange = {};
2215  }
2216 } // lar::sparse_vector<T>::const_iterator::refresh_state()
const container_t * cont
pointer to the container
ranges_const_iterator currentRange
pointer to the current (or next) range
range_list_t ranges
list of ranges
range_iterator find_next_range_iter(size_type index)
Returns an iterator to the range after index, or end() if none.
size_type index
pointer to the current value, as absolute index

Friends And Related Function Documentation

template<typename T>
friend class container_t
friend

Definition at line 1253 of file sparse_vector.h.

Member Data Documentation

template<typename T>
ranges_const_iterator lar::sparse_vector< T >::const_iterator::currentRange
protected

pointer to the current (or next) range

Definition at line 1377 of file sparse_vector.h.


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