KoneDeque
Represents a finite sequence of elements that can be extended or reduced from both its ends.
This interface's inheritors must have some specific structure that provides optimised elements access and mutability. Without it (or with bad time complexity like \(O(n)\)) the interface should not be used.
Inheritors
Properties
Functions
Link copied to clipboard
Checks if the collection is not empty.
Link copied to clipboard
Removes the first element, making the collection one element fewer. The element is placed at the beginning of the sequence.
Link copied to clipboard
Removes the last element, making the collection one element fewer. The element is placed at the end of the sequence.