| CrudMap<Key,Value> |
CRUD = create, read, update, and delete
|
| CrudMapAdapter.Immutable<Key,Value> |
|
| CrudMapAdapter.SetLike<Value> |
|
| CrudMapAdapter.SetLike.Immutable<Value> |
|
| ListPlusList<T> |
A read-only list that combines two lists into one, effectively concatenating them.
|
| ListPlusOne<T> |
An unmodifiable list that extends another list and includes an additional item at the end.
|
| ListWithoutItemAtIndex<T> |
A read-only list that excludes a specific item at a given index from another list.
|
| ModCountDeque<T> |
A Deque that keeps track of the number of modifications made to it.
|
| ModCountMap<K,V> |
A map that keeps track of the number of modifications made to it.
|
| ModCountSet<V> |
A set that keeps track of the number of modifications made to it.
|
| OnePlusList<T> |
An unmodifiable list that extends another list and includes an additional item at the start.
|
| OnePlusListPlusOne<T> |
An unmodifiable list that extends another list and includes an additional item at the start and at the end.
|