InternalOrderedIterable<TValue, TKey> constructor

InternalOrderedIterable<TValue, TKey>(
  1. Iterable<TValue> source,
  2. TKey keySelector(
    1. TValue
    ),
  3. EqualityComparer<TKey> keyComparer,
  4. bool descending
)

Implementation

InternalOrderedIterable(Iterable<TValue> source, this.keySelector,
    this.keyComparer, this.descending)
    : super(source) {
  this.source = source;
}