We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Creates a sequence from start value and next element factory.
Namespace: CodeJam.CollectionsAssembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public static IEnumerable<T> Create<T>( T start, Func<T, bool> predicate, Func<T, T> next )
VB
Public Shared Function Create(Of T) ( start As T, predicate As Func(Of T, Boolean), next As Func(Of T, T) ) As IEnumerable(Of T)
F#
static member Create : start : 'T * predicate : Func<'T, bool> * next : Func<'T, 'T> -> IEnumerable<'T>
Type: IEnumerable(T)Generated sequence.
Sequence ClassCreate OverloadCodeJam.Collections Namespace