Package org.jbox2d.pooling
Interface IDynamicStack<E>
-
- Type Parameters:
E-
- All Known Implementing Classes:
MutableStack
public interface IDynamicStack<E>Same functionality of a regular java.util stack. Object return order does not matter.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Epop()Pops an item off the stackvoidpush(E argObject)Pushes an item back on the stack
-