FoldExtension.Fold<T, TResult>(IEnumerable<T>, Func<T, T, T, T, T, T, T, T, T, TResult>) Method
Returns the result of applying a function to a sequence of
9 elements.
Namespace: MoreLinq.ExtensionsAssembly: MoreLinq (in MoreLinq.dll) Version: 3.4.0+b99a6a8cc504caf2d48372fe54a2f8116c59cd0c
public static TResult Fold<T, TResult>(
this IEnumerable<T> source,
Func<T, T, T, T, T, T, T, T, T, TResult> folder
)
<ExtensionAttribute>
Public Shared Function Fold(Of T, TResult) (
source As IEnumerable(Of T),
folder As Func(Of T, T, T, T, T, T, T, T, T, TResult)
) As TResult
public:
[ExtensionAttribute]
generic<typename T, typename TResult>
static TResult Fold(
IEnumerable<T>^ source,
Func<T, T, T, T, T, T, T, T, T, TResult>^ folder
)
[<ExtensionAttribute>]
static member Fold :
source : IEnumerable<'T> *
folder : Func<'T, 'T, 'T, 'T, 'T, 'T, 'T, 'T, 'T, 'TResult> -> 'TResult
- source IEnumerable<T>
- The sequence of items to fold.
- folder Func<T, T, T, T, T, T, T, T, T, TResult>
- Function to apply to the elements in the sequence.
- T
- Type of element in the source sequence.
- TResult
- Type of the result.
TResultThe folded value returned by
folder.In Visual Basic and C#, you can call this method as an instance method on any object of type
IEnumerable<T>. 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 immediate execution and effectively buffers
as many items of the source sequence as necessary.