Class IEnumerableExtensions
Assembly: Discord.Net.Commands.dll​
View Source​
Declaration
public static class IEnumerableExtensions
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​
System.Collections.Generic.IEnumerable<<TResult>>
Parameters​
Type | Name |
---|---|
System.Collections.Generic.IEnumerable<<TFirst>> | set |
System.Collections.Generic.IEnumerable<<TSecond>> | others |
System.Func<<TFirst>,<TSecond>,<TResult>> | func |
Type Parameters​
TFirst
TSecond
TResult