Sequence T  SplitAt Method A Sandcastle Documented Class Library
Splits this sequence into two at a given position.

Namespace: Sequences
Assembly: Sequences (in Sequences.dll) Version: 1.0.1.0 (1.0.1)
Syntax
public Tuple<ISequence<T>, ISequence<T>> SplitAt(
	int n
)

Parameters

n
Type: System Int32
The position at which to split.

Return Value

Type: Tuple ISequence T , ISequence T  
A pair of sequences consisting of the first n elements of this sequence, and the other elements.

Implements

ISequence T  SplitAt(Int32)
See Also