Iterates over the tails of this sequence. The first value will be this sequence, and the last value will be an empty sequence,
with the intervening values the results of successive applications of Tail.
Namespace: SequencesAssembly: Sequences (in Sequences.dll) Version: 1.0.1.0 (1.0.1)
Syntax
Return Value
Type: IEnumerable ISequence TAn iterator over all the tails of this sequence.
Implements
ISequence T TailsExamples
Sequence.Range(1,4) = (1,2,3), (2,3), (3), Empty
See Also