Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Extension method: IQueryable<Tuple<T, T>> UniquePairs<T>(this IQueryable<T>)

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

TThis type parameter is not documented.

Remarks

Warning: This method does not work with IQToolkit.