Overview | Group | Tree | Graph | Index | Concepts |
An instance of this class traverses the list of resources in a given
instance of IloAltResSet
.
See Also:
Constructor Summary | |
---|---|
public | Iterator(IloAltResSet set) |
Method Summary | |
---|---|
public IloBool | ok() const |
public IloResource | operator*() |
public Iterator & | operator++() |
Constructor Detail |
---|
This constructor creates an iterator to traverse all the resources that are
stored in a given instance of IloAltResSet
.
Method Detail |
---|
This member function returns IloTrue
if the current position
of the iterator is a valid one. It returns IloFalse
if all the
resources have been scanned by the iterator.
This operator returns the current instance of IloResource
, the one to which the invoking iterator points.
This operator must not be called if the iterator does not point to a valid
position, that is, one to which the member function Iterator::ok
returns IloFalse
.
This left-increment operator shifts the current position of the
iterator to the next instance of IloResource
.