insort method

void insort (
  1. E element,
  2. {int compare(
    1. E,
    2. E
    ),
  3. int low,
  4. int high}
)

Just an alias for insortRight.

Implementation

void insort(E element, {int Function(E, E) compare, int low, int high}) {
  insortRight(element, compare: compare, low: low, high: high);
}