#include "variant.hpp"
#include "recombination.hpp"
#include <savvy/reader.hpp>
#include <savvy/writer.hpp>
#include <cstdint>
#include <string>
#include <vector>
#include <deque>
#include <limits>
#include <cassert>
Go to the source code of this file.
◆ operator!=()
Compares two iterators for inequality.
This is the negation of operator==.
- Parameters
-
lhs | Left-hand side iterator. |
rhs | Right-hand side iterator. |
- Returns
- True if iterators are not equal, false otherwise.
◆ operator==()
Compares two iterators for equality.
Two iterators are considered equal if they refer to the same block index and the same local index within that block.
- Parameters
-
lhs | Left-hand side iterator. |
rhs | Right-hand side iterator. |
- Returns
- True if iterators are equal, false otherwise.