Stack.push

pushes multiple items to the stack such that the last element is on the top

  1. size_t push(T item)
  2. void push(T[] items)
    struct Stack(T)
    void
    push
    (
    T[] items
    )

Meta