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

The concept WeaklyIncrementable specifies the requirements on a type that can be incremented (with the pre- and post-increment operators). The increment operations need not be equality-preserving, and the type need not be std::EqualityComparable. More...

+ Inheritance diagram for std::WeaklyIncrementable:

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 concept WeaklyIncrementable specifies the requirements on a type that can be incremented (with the pre- and post-increment operators). The increment operations need not be equality-preserving, and the type need not be std::EqualityComparable.

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

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