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