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<BigInteger> From(
BigInteger start,
BigInteger step
)
public static ISequence<BigInteger> From(
BigInteger start,
BigInteger step
)
Public Shared Function From (
start As BigInteger,
step As BigInteger
) As ISequence(Of BigInteger)
Public Shared Function From (
start As BigInteger,
step As BigInteger
) As ISequence(Of BigInteger)
public:
static ISequence<BigInteger>^ From(
BigInteger start,
BigInteger step
)
public:
static ISequence<BigInteger>^ From(
BigInteger start,
BigInteger step
)
static member From :
start : BigInteger *
step : BigInteger -> ISequence<BigInteger>
static member From :
start : BigInteger *
step : BigInteger -> ISequence<BigInteger>
Parameters
- start
- Type: System.Numerics BigInteger
The start value of the sequence.
- step
- Type: System.Numerics BigInteger
The value to increment in each step (positive or negative).
Return Value
Type:
ISequence BigInteger A sequence starting at value
start.
See Also