Package jdsl.simple.api

Interface Summary
Container Interface for a container in the "simple" package.
Deque Interface for a deque, or double-ended queue.
Dictionary Interface for a dictionary in the "simple" package.
PriorityQueue Interface for a priority queue in the "simple" package.
Queue Interface for a queue.
RankedSequence Interface for a ranked sequence.
SimpleContainer Interface for a generic container.
SimpleDictionary Interface for a dictionary in the "simple" package.
SimplePriorityQueue Interface for a priority queue.
Stack Interface for a stack.
 

Exception Summary
DequeEmptyException Runtime exception thrown when one tries to perform an access or removal operation on an empty dequeue.
QueueEmptyException Runtime exception thrown when one tries to perform operation front or dequeue on an empty queue.
StackEmptyException Runtime exception thrown when one tries to perform operation top or pop on an empty stack.