Class LongStack

java.lang.Object
ghidra.util.datastruct.LongArrayList
cppclassanalyzer.database.utils.LongStack
All Implemented Interfaces:
Iterable<Long>, Collection<Long>, List<Long>

public class LongStack
extends LongArrayList
  • Constructor Details

    • LongStack

      public LongStack()
  • Method Details

    • pop

      public long pop()
      Removes the object at the top of this stack and returns that object as the value of this function.
      Returns:
      the element popped from the stack
    • push

      public long push​(long item)
      Pushes an item onto the top of this stack
      Parameters:
      item - the object to push onto the stack
      Returns:
      the item pushed onto the stack