Sequence Continually T  Method (Func T )A Sandcastle Documented Class Library
Create an infinite sequence containing the given element expression (which is computed for each occurrence).

Namespace: Sequences
Assembly: Sequences (in Sequences.dll) Version: 1.0.1.0 (1.0.1)
Syntax
public static ISequence<T> Continually<T>(
	Func<T> elem
)

Parameters

elem
Type: System Func T 
A delegate that will be continuously evaluated.
Type Parameters
T
The type of elements in the sequence.

Return Value

Type: ISequence T 
A sequence containing an infinite number of elements returned by the elem delegate.
See Also