insort method
- E element,
- {int compare(
- E,
- E
- int low,
- 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);
}