public interface StackActions { | |
int size(); | |
boolean isEmpty(); | |
void push(Object objectToPush); | |
Object pop() throws LinkedListEmptyException; | |
Object peek() throws LinkedListEmptyException; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment