Uses of Class
org.magicwerk.brownies.collections.primitive.IntGapList
-
Packages that use IntGapList Package Description org.magicwerk.brownies.collections.primitive This packages contains implementations of GapList and BigList for primitive data types. -
-
Uses of IntGapList in org.magicwerk.brownies.collections.primitive
Subclasses of IntGapList in org.magicwerk.brownies.collections.primitive Modifier and Type Class Description (package private) static class
IntBigList.IntBlock
A block stores in maximum blockSize number of elements.protected static class
IntGapList.ReadOnlyList
A read-only version ofIntGapList
.Fields in org.magicwerk.brownies.collections.primitive declared as IntGapList Modifier and Type Field Description private static IntGapList
IntGapList. EMPTY
Unmodifiable empty instance(package private) IntGapList
IntObjGapList. list
Methods in org.magicwerk.brownies.collections.primitive that return IntGapList Modifier and Type Method Description IntGapList
IntGapList. clone()
IntGapList
IntGapList. copy()
static IntGapList
IntGapList. create()
static IntGapList
IntGapList. create(int... elems)
Create new list with specified elements.static IntGapList
IntGapList. create(java.util.Collection<java.lang.Integer> coll)
Create new list with specified elements.IntGapList
IntGapList. crop()
IntGapList
IntGapList. doCreate(int capacity)
static IntGapList
IntGapList. EMPTY()
IntGapList
IntGapList. getAll(int elem)
IntGapList
IntGapList. getAll(int index, int len)
static IntGapList
IntGapList. immutable(int... elems)
Create new immutable list with specified elements.static IntGapList
IntGapList. immutable(java.util.Collection<java.lang.Integer> coll)
Create new immutable list with specified elements.IntGapList
IntGapList. immutableList()
IntGapList
IntGapList. unmodifiableList()
Constructors in org.magicwerk.brownies.collections.primitive with parameters of type IntGapList Constructor Description IntGapList(boolean copy, IntGapList that)
Constructor used internally, e.g.ReadOnlyList(IntGapList that)
Private constructor used internally.
-