Template Class LogIteratorAdapter¶
Defined in File LogIteratorAdapter.hpp
Class Documentation¶
-
template<typename
Event, typenameCellIterator>
classdish2::LogIteratorAdapter¶ Public Types
-
using
value_type= typename LogIterator::value_type¶
-
using
pointer= value_type*¶
-
using
reference= value_type&¶
-
using
iterator_category= std::forward_iterator_tag¶
-
using
difference_type= std::ptrdiff_t¶
Public Functions
-
LogIteratorAdapter() = default¶
-
const value_type &
operator*()¶
-
const value_type *
operator->()¶
-
LogIteratorAdapter &
operator++()¶
-
LogIteratorAdapter
operator++(int)¶
-
bool
operator==(const LogIteratorAdapter &other) const¶
-
bool
operator!=(const LogIteratorAdapter &other) const¶
Public Static Functions
-
auto
make(CellIterator begin, CellIterator end)¶
-
using