
Range iterator for computing set difference. More...
#include <ranges-diff.hpp>
Protected Attributes | |
| I | i |
| Iterator from which to subtract. | |
| J | j |
| Iterator to be subtracted. | |
Constructors and initialization | |
| Diff (void) | |
| Default constructor. | |
| Diff (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 set difference.
Definition at line 47 of file ranges-diff.hpp.
| Gecode::Iter::Ranges::Diff< I, J >::Diff | ( | void | ) | [inline] |
Default constructor.
Definition at line 113 of file ranges-diff.hpp.
| Gecode::Iter::Ranges::Diff< I, J >::Diff | ( | I & | i, |
| J & | j | ||
| ) | [inline] |
Initialize with iterator i and j.
Definition at line 117 of file ranges-diff.hpp.
| void Gecode::Iter::Ranges::Diff< I, J >::init | ( | I & | i, |
| J & | j | ||
| ) | [inline] |
Initialize with iterator i and j.
Definition at line 129 of file ranges-diff.hpp.
| void Gecode::Iter::Ranges::Diff< I, J >::operator++ | ( | void | ) | [inline] |
Move iterator to next range (if possible)
Definition at line 75 of file ranges-diff.hpp.
I Gecode::Iter::Ranges::Diff< I, J >::i [protected] |
Iterator from which to subtract.
Definition at line 50 of file ranges-diff.hpp.
J Gecode::Iter::Ranges::Diff< I, J >::j [protected] |
Iterator to be subtracted.
Definition at line 52 of file ranges-diff.hpp.