Sequence T  Constructor (T, Func ISequence T  )A Sandcastle Documented Class Library

Namespace: Sequences
Assembly: Sequences (in Sequences.dll) Version: 1.0.1.0 (1.0.1)
Syntax
public Sequence(
	T head,
	Func<ISequence<T>> tail
)

Parameters

head
Type: T
The first element of the sequence.
tail
Type: System Func ISequence T  
A delegate that will be used to realize the sequence's tail when needed.
See Also