Interface Shrinkable

All Known Implementing Classes:
AbstractShrinkableList, CappedList
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface Shrinkable
Interface for objects that can be resized to a smaller size in constant time. Classes should only implement this interface if the resize reduces their scope from outside, meaning elements beyond the new size won't be visible anymore.
See Also: