TreapListOfInt.of constructor

TreapListOfInt.of(
  1. Iterable<int> items
)

Implementation

TreapListOfInt.of(Iterable<int> items)
    : base = TreapListBase.of(
        items,
        intNodeFactory,
      );