add method

TreapOfInt add(
  1. int item
)
override

Adds an item to this treap.

Implementation

TreapOfInt add(int item) => TreapOfInt._(base.add(item));