Package cppclassanalyzer.database.utils
Class LongStack
java.lang.Object
ghidra.util.datastruct.LongArrayList
cppclassanalyzer.database.utils.LongStack
public class LongStack extends LongArrayList
-
Field Summary
Fields inherited from class ghidra.util.datastruct.LongArrayList
MIN_SIZE
-
Constructor Summary
Constructors Constructor Description LongStack()
-
Method Summary
Methods inherited from class ghidra.util.datastruct.LongArrayList
add, add, add, add, addAll, addAll, clear, contains, containsAll, get, getLongValue, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, retainAll, reverse, set, size, subList, toArray, toArray, toArray, toLongArray, toLongArray
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
Methods inherited from interface java.util.List
equals, hashCode, replaceAll, sort, spliterator
-
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
-