Creates an infinite sequence starting at start and incrementing by step in each step.
Namespace: SequencesAssembly: Sequences (in Sequences.dll) Version: 1.0.1.0 (1.0.1)
Syntax public static ISequence<long> From(
long start,
long step
)
public static ISequence<long> From(
long start,
long step
)
Public Shared Function From (
start As Long,
step As Long
) As ISequence(Of Long)
Public Shared Function From (
start As Long,
step As Long
) As ISequence(Of Long)
public:
static ISequence<long long>^ From(
long long start,
long long step
)
public:
static ISequence<long long>^ From(
long long start,
long long step
)
static member From :
start : int64 *
step : int64 -> ISequence<int64>
static member From :
start : int64 *
step : int64 -> ISequence<int64>
Parameters
- start
- Type: System Int64
The start value of the sequence.
- step
- Type: System Int64
The value to increment in each step (positive or negative).
Return Value
Type:
ISequence Int64 A sequence starting at value
start.
See Also