Interface IOrderedStack<E>

All Known Implementing Classes:
CircleStack

public interface IOrderedStack<E>
  • Method Summary

    Modifier and Type
    Method
    Description
    pop()
     
    E[]
    pop(int argNum)
     
    void
    push(int argNum)
     
  • Method Details

    • pop

      E pop()
    • pop

      E[] pop(int argNum)
    • push

      void push(int argNum)