Creates a sequence containing equally spaced values in some integer interval.
Namespace: SequencesAssembly: Sequences (in Sequences.dll) Version: 1.0.1.0 (1.0.1)
Syntax public static ISequence<BigInteger> Range(
BigInteger start,
BigInteger end,
BigInteger step
)
public static ISequence<BigInteger> Range(
BigInteger start,
BigInteger end,
BigInteger step
)
Public Shared Function Range (
start As BigInteger,
end As BigInteger,
step As BigInteger
) As ISequence(Of BigInteger)
Public Shared Function Range (
start As BigInteger,
end As BigInteger,
step As BigInteger
) As ISequence(Of BigInteger)
public:
static ISequence<BigInteger>^ Range(
BigInteger start,
BigInteger end,
BigInteger step
)
public:
static ISequence<BigInteger>^ Range(
BigInteger start,
BigInteger end,
BigInteger step
)
static member Range :
start : BigInteger *
end : BigInteger *
step : BigInteger -> ISequence<BigInteger>
static member Range :
start : BigInteger *
end : BigInteger *
step : BigInteger -> ISequence<BigInteger>
Parameters
- start
- Type: System.Numerics BigInteger
The start value of the collection.
- end
- Type: System.Numerics BigInteger
The exclusive upper bound.
- step
- Type: System.Numerics BigInteger
The value to increment in each step (positive or negative).
Return Value
Type:
ISequence BigInteger A collection with values
start,
start +
step, ...
up to, but excluding
end.
See Also