SetBuilderDefinitionHasElementsIn Method
Finalizes the set builder and returns the resulting set.
The set generates elements in [start, untilExclusive).
For instance, the following set:
Set i = Set("i").Represents("resources").HasElementsIn(1, 4);
has elements { 1, 2, 3 }.
Namespace: Orx.MathProgAssembly: Orx.MathProg (in Orx.MathProg.dll) Version: 1.0.0
public Set HasElementsIn(
int start,
int untilExclusive
)
- start Int32
- First element of the set.
- untilExclusive Int32
- Last element (exclusive) of the set.
Set