Range iterator for computing union (binary) More...
#include <ranges-union.hpp>
Protected Attributes | |
I | i |
First iterator. | |
J | j |
Second iterator. | |
Constructors and initialization | |
Union (void) | |
Default constructor. | |
Union (I &i, J &j) | |
Initialize with iterator i and j. | |
void | init (I &i, J &j) |
Initialize with iterator i and j. | |
Iteration control | |
void | operator++ (void) |
Move iterator to next range (if possible) |
Range iterator for computing union (binary)
Gecode::Iter::Ranges::Union::Union | ( | void | ) | [inline] |
Default constructor.
Definition at line 159 of file ranges-union.hpp.
Gecode::Iter::Ranges::Union::Union | ( | I & | i, |
J & | j | ||
) | [inline] |
Initialize with iterator i and j.
Definition at line 163 of file ranges-union.hpp.
void Gecode::Iter::Ranges::Union::init | ( | I & | i, |
J & | j | ||
) | [inline] |
Initialize with iterator i and j.
Definition at line 170 of file ranges-union.hpp.
void Gecode::Iter::Ranges::Union::operator++ | ( | void | ) | [inline] |
Move iterator to next range (if possible)
Definition at line 128 of file ranges-union.hpp.
I Gecode::Iter::Ranges::Union::i [protected] |
First iterator.
Definition at line 51 of file ranges-union.hpp.
J Gecode::Iter::Ranges::Union::j [protected] |
Second iterator.
Definition at line 53 of file ranges-union.hpp.