SortedList<E> constructor

SortedList<E>(
  1. Iterable<E> _source,
  2. Comparator<E> _comparator
)

Implementation

SortedList(
  this._source,
  this._comparator,
);