Declaration
public static IQueryable<Tuple<T, T>> UniquePairs<T>(
this IQueryable<T> source
)
Summary
Returns an enumeration of tuples containing all unique pairs of distinct elements from the source collection.
For example, the input sequence 1, 2, 3 yields the pairs [1,2], [1,3] and [2,3] only.
Generic type parameters
T | This type parameter is not documented. |
Remarks
Warning: This method does not work with IQToolkit.