Queue.pushBack

add multiple elements to the back of the queue

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

Meta