Heap.push

Inserts all elements in the given array into the heap.

  1. void push(T t)
  2. void push(T[] array)
    struct Heap(T, alias Compare = minHeapCompare!(T), alias Move = defaultHeapSwap!(T))
    void
    push
    (
    T[] array
    )

Meta