| Overview | Group | Tree | Graph | Deprecated | Index | Concepts |

An instance of this nested class is an iterator that traverses a set of parameters.
The class includes operators to point to the current
parameter in the set and to advance to the next parameter
in the set, and a method ok to verify
that the iterator is still within the set.
| Method Summary | |
|---|---|
public | Iterator(IloCplex::ParameterSet) |
public bool | ok() const |
public IloCplex::Parameter | operator*() const |
public Iterator | operator++(int) |
public Iterator & | operator++() |
| Method Detail |
|---|
Constructs an iterator capable of traversing the parameters in the designated parameter set.
Returns true if the iterator points to a valid element of the the parameter set, and false otherwise.
Returns the parameter to which the iterator currently points.
Advances the iterator to the next element of the parameter set.
Advances the iterator to the next element of the parameter set.