PriorityQueue.push

Add multiple elements to the queue.

  1. void push(V value)
  2. void push(Stuff data)
    struct PriorityQueue(V, alias _pred = "a < b")
    void
    push
    (
    Stuff
    )
    (
    Stuff data
    )
    if (
    !is(Stuff : V) &&
    isInputRange!Stuff
    &&
    is(ElementType!Stuff : V)
    )

Meta