Class IntStack

java.lang.Object
com.intellij.util.containers.IntStack
All Implemented Interfaces:
Cloneable

public class IntStack extends Object implements Cloneable
  • Constructor Details

    • IntStack

      public IntStack(int initialCapacity)
    • IntStack

      public IntStack()
  • Method Details

    • push

      public void push(int t)
    • peek

      public int peek()
    • pop

      public int pop()
    • get

      public int get(int i)
    • size

      public int size()
    • empty

      public boolean empty()
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • clear

      public void clear()
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • clone

      public IntStack clone()
      Overrides:
      clone in class Object