Returns the result of applying a function to a sequence of 9 elements.
Namespace: MoreLinq.ExtensionsMoreLinq (in MoreLinq.dll) Version: 3.0.0
Syntaxpublic 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> -> 'TResultParameters
Type:
TResultThe folded value returned by
folder.
Usage NoteIn Visual Basic and C#, you can call this method as an instance method on any object of type
IEnumerableT. 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).
Exceptions RemarksThis operator uses immediate execution and effectively buffers as many items of the source sequence as necessary.
See AlsoRetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4