Class IEnumerableExtensions
Assembly: Revolt.Net.Commands.dll​
View Source​
Declaration
public static class IEnumerableExtensions : object
Methods​
Permutate<TFirst, TSecond, TResult>(IEnumerable<TFirst>, IEnumerable<TSecond>, Func<TFirst, TSecond, TResult>)​
View Source​
Declaration
public static IEnumerable<TResult> Permutate<TFirst, TSecond, TResult>(this IEnumerable<TFirst> set, IEnumerable<TSecond> others, Func<TFirst, TSecond, TResult> func)
Returns​
IEnumerable<<TResult>>
Parameters​
| Type | Name |
|---|---|
IEnumerable<<TFirst>> | set |
IEnumerable<<TSecond>> | others |
Func<<TFirst>,<TSecond>,<TResult>> | func |
Type Parameters​
TFirstTSecondTResult