42template <
typename file_type>
45 static_assert(!std::is_const_v<file_type>,
46 "You cannot iterate over const files, because the iterator changes the file.");
117 template <
typename arg_t>
120 assert(
host !=
nullptr);
121 host->push_back(std::forward<arg_t>(arg));
132 constexpr bool operator==(std::default_sentinel_t
const &)
const noexcept
132 constexpr bool operator==(std::default_sentinel_t
const &)
const noexcept {
…}
138 constexpr bool operator!=(std::default_sentinel_t
const &)
const noexcept
138 constexpr bool operator!=(std::default_sentinel_t
const &)
const noexcept {
…}
146 return (it == std::default_sentinel);
152 return (it != std::default_sentinel);
Output iterator necessary for providing a range-like interface in output file.
Definition out_file_iterator.hpp:44
~out_file_iterator()=default
Use default deconstructor.
constexpr out_file_iterator & operator=(out_file_iterator const &)=default
Copy construction via assignment.
out_file_iterator operator++(int)
This is a no-op, returns copy of self. In contrast to input iterators, the return type is required.
Definition out_file_iterator.hpp:101
out_file_iterator & operator++()
This is a no-op, returns reference to self.
Definition out_file_iterator.hpp:95
constexpr friend bool operator!=(std::default_sentinel_t const &, out_file_iterator const &it) noexcept
Checks whether it is not equal to the sentinel.
Definition out_file_iterator.hpp:150
constexpr friend bool operator==(std::default_sentinel_t const &, out_file_iterator const &it) noexcept
Checks whether it is equal to the sentinel.
Definition out_file_iterator.hpp:144
constexpr out_file_iterator(out_file_iterator const &)=default
Copy constructor.
out_file_iterator & operator=(arg_t &&arg)
Insert the given value into the file, via the file's push_back() member.
Definition out_file_iterator.hpp:118
constexpr out_file_iterator()=default
Default constructor.
constexpr out_file_iterator & operator=(out_file_iterator &&)=default
Move assignment.
void size_type
The size type (void).
Definition out_file_iterator.hpp:61
void * pointer
The pointer type.
Definition out_file_iterator.hpp:65
file_type * host
Pointer to file host.
Definition out_file_iterator.hpp:158
constexpr out_file_iterator(out_file_iterator &&)=default
Move constructor.
out_file_iterator & operator*() noexcept
Return reference to self.
Definition out_file_iterator.hpp:108
constexpr out_file_iterator(file_type &_host) noexcept
Construct with reference to host.
Definition out_file_iterator.hpp:87
constexpr bool operator!=(std::default_sentinel_t const &) const noexcept
Checks whether *this is not equal to the sentinel (always true).
Definition out_file_iterator.hpp:138
void reference
The reference type (void).
Definition out_file_iterator.hpp:57
void value_type
The value type (void).
Definition out_file_iterator.hpp:55
constexpr bool operator==(std::default_sentinel_t const &) const noexcept
Checks whether *this is equal to the sentinel (always false).
Definition out_file_iterator.hpp:132
void const_reference
The const reference type (void).
Definition out_file_iterator.hpp:59
The internal SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26