Queue.pushFront

add multiple elements to the front of the queue

  1. void pushFront(V val)
  2. void pushFront(Stuff stuff)
    struct Queue(V)
    void
    pushFront
    (
    Stuff
    )
    (
    Stuff stuff
    )
    if (
    isInputRange!Stuff &&
    is(ElementType!Stuff : V)
    )

Meta