SeqAn3  3.0.0
The Modern C++ library for sequence analysis.
std::OutputIterator Interface Reference

The OutputIterator concept is a refinement of std::Iterator, adding the requirement that it can be used to write values of values of type and value category encoded by T (via std::Writable). std::EqualityComparable is not required. More...

+ Inheritance diagram for std::OutputIterator:

Related Functions

(Note that these are not member functions.)

Requirements for std::Swappable

You can expect these functions on all types that implement std::Swappable.

void swap (t &lhs, t &rhs)
 Swaps the contents of two objects. More...
 

Detailed Description

The OutputIterator concept is a refinement of std::Iterator, adding the requirement that it can be used to write values of values of type and value category encoded by T (via std::Writable). std::EqualityComparable is not required.

See also
https://en.cppreference.com/w/cpp/iterator/OutputIterator

The documentation for this interface was generated from the following file: