Creates an infinite sequence starting at start and incrementing by 1 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
)
public static ISequence<long> From(
long start
)
Public Shared Function From (
start As Long
) As ISequence(Of Long)
Public Shared Function From (
start As Long
) As ISequence(Of Long)
public:
static ISequence<long long>^ From(
long long start
)
public:
static ISequence<long long>^ From(
long long start
)
static member From :
start : int64 -> ISequence<int64>
static member From :
start : int64 -> ISequence<int64>
Parameters
- start
- Type: System Int64
The start value of the sequence.
Return Value
Type:
ISequence Int64 A sequence starting at value
start.
See Also