AbstractArrayAdapter |
|
AbstractMemoryEfficientMutableList |
|
ArrayAdapter |
This class provides a MutableList wrapper around an array.
|
DoubletonList |
A DoubletonList is a two-element memory efficient List.
|
EmptyList |
This class is a memory efficient list with no elements.
|
QuadrupletonList |
This is a four element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four).
|
QuintupletonList |
This is a five element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four, five).
|
SextupletonList |
This is a six element immutable List which is created by calling Lists.fixedSize.of(one, two, three, four, five, six).
|
SingletonList |
This class is a memory efficient list with one element.
|
TripletonList |
This is a three element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three).
|