InternalIterableSorter<TValue, TKey> constructor
- TKey keySelector(
- TValue
- EqualityComparer<
TKey> comparer, - bool descending,
- IterableSorter<
TValue> next
Implementation
InternalIterableSorter(
this.keySelector,
this.comparer,
this.descending,
this.next,
) {
comparer ??= EqualityComparer.forType<TKey>();
}