take method

ImplicitTreapOfInt take(
  1. int count
)
override

Returns a new treap with the first count items.

Implementation

ImplicitTreapOfInt take(int count) => ImplicitTreapOfInt._(base.take(count));