EvaluateExtensionEvaluateT Method
Returns a sequence containing the values resulting from invoking (in order) each function in the source sequence of functions.
Namespace: MoreLinq.ExtensionsAssembly: MoreLinq (in MoreLinq.dll) Version: 3.4.0+b99a6a8cc504caf2d48372fe54a2f8116c59cd0c
public static IEnumerable<T> Evaluate<T>(
this IEnumerable<Func<T>> functions
)
<ExtensionAttribute>
Public Shared Function Evaluate(Of T) (
functions As IEnumerable(Of Func(Of T))
) As IEnumerable(Of T)
public:
[ExtensionAttribute]
generic<typename T>
static IEnumerable<T>^ Evaluate(
IEnumerable<Func<T>^>^ functions
)
[<ExtensionAttribute>]
static member Evaluate :
functions : IEnumerable<Func<'T>> -> IEnumerable<'T>
- functions IEnumerableFuncT
- The functions to evaluate.
- T
- The type of the object returned by the functions.
IEnumerableTA sequence with results from invoking
functions.In Visual Basic and C#, you can call this method as an instance method on any object of type
IEnumerableFuncT. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
This operator uses deferred execution and streams the results.
If the resulting sequence is enumerated multiple times, the functions will be
evaluated multiple times too.