Package org.jbox2d.pooling
Interface DynamicStack<E>
- Type Parameters:
E-
- All Known Implementing Classes:
MutableStack
public interface DynamicStack<E>
Same functionality of a regular java.util stack. Object return order does not
matter.
- Author:
- Daniel Murphy
-
Method Summary
-
Method Details
-
pop
E pop()Pops an item off the stack -
push
Pushes an item back on the stack
-