Package org.eclipse.collections.impl.bag.sorted.mutable
This package contains implementations of
MutableSortedBag
.
This package contains 2 sorted mutable bag implementation:
-
TreeBag
- a sorted bag backed by Tree data structure.. -
UnmodifiableSortedBag
- an unmodifiable view of a SortedBag.
-
Class Summary Class Description AbstractMutableSortedBag<T> MutableSortedBagFactoryImpl SynchronizedSortedBag<T> A synchronized view of aMutableSortedBag
.TreeBag<T> A TreeBag is a MutableSortedBag which uses a SortedMap as its underlying data store.UnmodifiableSortedBag<T> An unmodifiable view of a SortedBag.