Package org.eclipse.collections.impl.bag.sorted.mutable
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.
-
ClassDescriptionA synchronized view of a
MutableSortedBag
.TreeBag<T>A TreeBag is a MutableSortedBag which uses a SortedMap as its underlying data store.An unmodifiable view of a SortedBag.