NSequenceCreate(Int32, Int32, Int32) Method
Creates a sequence from a range and a step.
Namespace: Austra.LibraryAssembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+44e7797405725ef3cf24b3ff0eba94ce6c649601
public static NSequence Create(
int first,
int step,
int last
)
- 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.
NSequenceA sequence returning a range of values.