Returns a subsequence starting at index from and extending up to (but not including) index until.
Namespace: SequencesAssembly: Sequences (in Sequences.dll) Version: 1.0.1.0 (1.0.1)
Syntax public ISequence<T> Slice(
int from,
int until
)
public ISequence<T> Slice(
int from,
int until
)
Public Function Slice (
from As Integer,
until As Integer
) As ISequence(Of T)
Public Function Slice (
from As Integer,
until As Integer
) As ISequence(Of T)
public:
virtual ISequence<T>^ Slice(
int from,
int until
) sealed
public:
virtual ISequence<T>^ Slice(
int from,
int until
) sealed
abstract Slice :
from : int *
until : int -> ISequence<'T>
override Slice :
from : int *
until : int -> ISequence<'T>
abstract Slice :
from : int *
until : int -> ISequence<'T>
override Slice :
from : int *
until : int -> ISequence<'T>
Parameters
- from
- Type: System Int32
The lowest index to include from this sequence.
- until
- Type: System Int32
The highest index to exclude from this sequence.
Return Value
Type:
ISequence T A subsequence starting at index
from and extending up to (but not including) index
until.
Implements
ISequence T Slice(Int32, Int32)See Also