addAll method

TreapOfInt addAll(
  1. Iterable<int> items
)
override

Adds all items to this treap.

Implementation

TreapOfInt addAll(Iterable<int> items) => TreapOfInt._(base.addAll(items));