Template Class CountingIterator¶
Defined in File CountingIterator.hpp
Class Documentation¶
-
template<typename
T= size_t>
classsgpl::CountingIterator¶ Public Types
-
using
pointer= value_type*¶
-
using
reference= value_type&¶
-
using
iterator_category= std::forward_iterator_tag¶
-
using
difference_type= int¶
Public Functions
-
CountingIterator() = default¶
-
value_type
operator*() const¶
-
CountingIterator
operator++(int)¶
-
CountingIterator &
operator++()¶
-
CountingIterator
operator+(const size_t rhs)¶
-
bool
operator==(const CountingIterator &other) const¶
-
bool
operator!=(const CountingIterator &other) const¶
-
using