Template Class Iterator#
Defined in File iterator.h
Page Contents
Class Documentation#
-
template<typename Batch>
class Iterator# Public Types
-
using difference_type = std::ptrdiff_t#
-
using iterator_category = std::input_iterator_tag#
Public Functions
-
inline explicit Iterator(std::unique_ptr<detail::IteratorImpl<Batch>> impl)#
-
inline Iterator &operator++()#
Increments the iterator.
Only permitted for valid iterators (not past the end).
-
inline Batch &operator*()#
Returns the current batch.
Only permitted for valid iterators (not past the end).
-
using difference_type = std::ptrdiff_t#