#include <genesis/sequence/formats/fastx_input_stream.hpp>
Internal iterator over the sequences.
This is the class that does the actual work. Use the dereference operator*() and operator->() to get the current Sequence of the iteration.
Definition at line 116 of file fastx_input_stream.hpp.
Public Member Functions | |
| Iterator (self_type &&)=default | |
| Iterator (self_type const &)=default | |
| ~Iterator ()=default | |
| bool | operator!= (self_type const &it) const |
| value_type & | operator* () |
| value_type const & | operator* () const |
| self_type & | operator++ () |
| value_type * | operator-> () |
| value_type const * | operator-> () const |
| Iterator & | operator= (self_type &&)=default |
| Iterator & | operator= (self_type const &)=default |
| bool | operator== (self_type const &it) const |
| Compare two iterators for equality. More... | |
Public Types | |
| using | difference_type = std::ptrdiff_t |
| using | iterator_category = std::input_iterator_tag |
| using | pointer = value_type const * |
| using | reference = value_type const & |
| using | self_type = FastxInputStream::Iterator |
| using | value_type = Sequence |
Public Attributes | |
| friend | FastxInputStream |
|
default |
|
inline |
Definition at line 221 of file fastx_input_stream.hpp.
|
inline |
Definition at line 185 of file fastx_input_stream.hpp.
|
inline |
Definition at line 180 of file fastx_input_stream.hpp.
|
inline |
Definition at line 194 of file fastx_input_stream.hpp.
|
inline |
Definition at line 175 of file fastx_input_stream.hpp.
|
inline |
Definition at line 170 of file fastx_input_stream.hpp.
|
inline |
Compare two iterators for equality.
Any two iterators that are created by calling begin() on the same FastxInputStream instance will compare equal, as long as neither of them is past-the-end. A valid (not past-the-end) iterator and an end() iterator will not compare equal; all past-the-end iterators compare equal, independently from which parent they were created.
Definition at line 216 of file fastx_input_stream.hpp.
| using difference_type = std::ptrdiff_t |
Definition at line 128 of file fastx_input_stream.hpp.
| using iterator_category = std::input_iterator_tag |
Definition at line 129 of file fastx_input_stream.hpp.
| using pointer = value_type const* |
Definition at line 126 of file fastx_input_stream.hpp.
| using reference = value_type const& |
Definition at line 127 of file fastx_input_stream.hpp.
| using self_type = FastxInputStream::Iterator |
Definition at line 124 of file fastx_input_stream.hpp.
| using value_type = Sequence |
Definition at line 125 of file fastx_input_stream.hpp.
| friend FastxInputStream |
Definition at line 164 of file fastx_input_stream.hpp.