pushAll method

void pushAll(
  1. Iterable<E> values
)

Adds multiple new values onto this heap.

Implementation

void pushAll(Iterable<E> values) => values.forEach(push);