take method

ImplicitTreapOfString take(
  1. int count
)
override

Returns a new treap with the first count items.

Implementation

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