Uses of Class
org.magicwerk.brownies.collections.BigList
Packages that use BigList
Package
Description
Brownies Collections complements the Java Collections Framework.
This packages contains helper classes for the package org.magicwerk.brownies.collections.
This packages contains implementations of GapList and BigList for primitive data types.
-
Uses of BigList in org.magicwerk.brownies.collections
Subclasses of BigList in org.magicwerk.brownies.collectionsFields in org.magicwerk.brownies.collections declared as BigListModifier and TypeFieldDescriptionprivate static final BigList
BigList.EMPTY
Unmodifiable empty instanceMethods in org.magicwerk.brownies.collections that return BigListModifier and TypeMethodDescriptionBigList.clone()
Returns a shallow copy of this list.BigList.copy()
Returns a shallow copy of this list.static <E> BigList
<E> BigList.create()
Create new list.static <E> BigList
<E> BigList.create
(E... elems) Create new list with specified elements.static <E> BigList
<E> BigList.create
(Collection<? extends E> coll) Create new list with specified elements.BigList.crop()
static <EE> BigList
<EE> BigList.EMPTY()
BigList.immutableList()
BigList.unmodifiableList()
Constructors in org.magicwerk.brownies.collections with parameters of type BigList -
Uses of BigList in org.magicwerk.brownies.collections.helper
Methods in org.magicwerk.brownies.collections.helper that return types with arguments of type BigList -
Uses of BigList in org.magicwerk.brownies.collections.primitive
Methods in org.magicwerk.brownies.collections.primitive that return BigListModifier and TypeMethodDescriptionBooleanObjBigList.getAll
(int index, int len) ByteObjBigList.getAll
(int index, int len) CharObjBigList.getAll
(int index, int len) DoubleObjBigList.getAll
(int index, int len) FloatObjBigList.getAll
(int index, int len) IntObjBigList.getAll
(int index, int len) LongObjBigList.getAll
(int index, int len) ShortObjBigList.getAll
(int index, int len) Methods in org.magicwerk.brownies.collections.primitive with parameters of type BigListModifier and TypeMethodDescription(package private) static boolean[]
BooleanObjBigList.toPrimitive
(BigList<? extends Boolean> list2) (package private) static byte[]
ByteObjBigList.toPrimitive
(BigList<? extends Byte> list2) (package private) static char[]
CharObjBigList.toPrimitive
(BigList<? extends Character> list2) (package private) static double[]
DoubleObjBigList.toPrimitive
(BigList<? extends Double> list2) (package private) static float[]
FloatObjBigList.toPrimitive
(BigList<? extends Float> list2) (package private) static int[]
IntObjBigList.toPrimitive
(BigList<? extends Integer> list2) (package private) static long[]
LongObjBigList.toPrimitive
(BigList<? extends Long> list2) (package private) static short[]
ShortObjBigList.toPrimitive
(BigList<? extends Short> list2)