SetBuilderKeyHasElementsIn Method

Finalizes the set builder and returns the resulting set.

The set generates elements in [start, untilExclusive).

For instance, the following set:

C#
Set i = Set("i").Represents("resources").HasElementsIn(1, 4);
has elements { 1, 2, 3 }.

Definition

Namespace: Orx.MathProg
Assembly: Orx.MathProg (in Orx.MathProg.dll) Version: 1.0.0
C#
public Set HasElementsIn(
	int start,
	int untilExclusive
)

Parameters

start  Int32
First element of the set.
untilExclusive  Int32
Last element (exclusive) of the set.

Return Value

Set

See Also