NSequenceCreate(Int32, Int32, Int32) Method

Creates a sequence from a range and a step.

Definition

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+d1268756e036101f601080f153b3997e72fc912d
C#
public static NSequence Create(
	int first,
	int step,
	int last
)

Parameters

first  Int32
First value in the sequence.
step  Int32
Distance between sequence values.
last  Int32
Upper bound of the sequence. It may be rounded down.

Return Value

NSequence
A sequence returning a range of values.

See Also