Uses of Class
org.magicwerk.brownies.collections.primitive.IFloatList
Packages that use IFloatList
Package
Description
This packages contains helper classes for the package org.magicwerk.brownies.collections.primitive:
- binary search for primitive arrays
- merge sort for primitive arrays
- binary search for primitive arrays
- merge sort for primitive arrays
This packages contains implementations of GapList and BigList for primitive data types.
-
Uses of IFloatList in org.magicwerk.brownies.collections.helper.primitive
Fields in org.magicwerk.brownies.collections.helper.primitive declared as IFloatListMethods in org.magicwerk.brownies.collections.helper.primitive with parameters of type IFloatListModifier and TypeMethodDescriptionstatic intFloatBinarySearch.binarySearch(IFloatList list, float key, int lower, int upper) Searches the specified list for the specified object using the binary search algorithm.static <E> voidFloatMergeSort.sort(IFloatList list) static <E> voidFloatMergeSort.sort(IFloatList list, int from, int to) Constructors in org.magicwerk.brownies.collections.helper.primitive with parameters of type IFloatList -
Uses of IFloatList in org.magicwerk.brownies.collections.primitive
Subclasses of IFloatList in org.magicwerk.brownies.collections.primitiveModifier and TypeClassDescriptionclassFloatBigList is a list optimized for storing large number of elements.(package private) static classA block stores in maximum blockSize number of elements.protected static classA read-only version of.invalid reference
Key1ListclassClass {link FloatGapList} combines the strengths of bothArrayListandLinkedList.protected static classA read-only version ofFloatGapList.Methods in org.magicwerk.brownies.collections.primitive that return IFloatListModifier and TypeMethodDescriptionIFloatList.clone()Returns a shallow copy of this list.abstract IFloatListIFloatList.copy()Returns a shallow copy of this list.IFloatList.crop()Returns a copy this list but without elements.protected IFloatListFloatBigList.doCreate(int capacity) protected abstract IFloatListIFloatList.doCreate(int capacity) Create list with specified capacity.IFloatList.extract(int index, int len) Removes specified range of elements from list and return them.Removes and returns all elements in the list which match the predicate.Create a new list by applying the specified filter to all elements.IFloatList.getAll(float elem) Returns all elements in the list equal to the specified element.IFloatList.getAll(int index, int len) Returns specified range of elements from list.abstract IFloatListIFloatList.immutableList()Returns an immutable copy of this list.IFloatList.removeAll(float elem) Removes all equal elements.IFloatList.transformedList(UnaryOperator<Float> op) Create a new list by applying the specified transforming operator to all elements.abstract IFloatListIFloatList.unmodifiableList()Methods in org.magicwerk.brownies.collections.primitive with parameters of type IFloatListModifier and TypeMethodDescriptionbooleanIFloatList.addAll(int index, IFloatList list) Inserts all of the elements in the specified list into this list, starting at the specified position.booleanIFloatList.addAll(IFloatList list) Adds all of the elements in the specified list into this list.protected voidFloatBigList.doAssign(IFloatList that) protected voidFloatGapList.doAssign(IFloatList that) protected abstract voidIFloatList.doAssign(IFloatList that) Assign this list the content of the that list.protected voidFloatBigList.doClone(IFloatList that) protected voidFloatGapList.doClone(IFloatList that) protected abstract voidIFloatList.doClone(IFloatList that) Initialize this object after the bitwise copy has been made by Object.clone().(package private) voidIFloatList.doTransfer(int transferMode, int srcIndex, int srcLen, IFloatList dst, int dstIndex, int dstLen) (package private) voidIFloatList.doTransferSwap(int srcIndex, IFloatList dst, int dstIndex, int len) voidIFloatList.initAll(IFloatList list) Initializes the list so it will afterwards only contain the elements of the collection.voidIFloatList.putAll(int index, IFloatList list) Set or add the specified elements.booleanIFloatList.removeAll(IFloatList coll) voidIFloatList.replaceAll(int index, int len, IFloatList list) Replaces the specified range with new elements.booleanIFloatList.retainAll(IFloatList coll) voidIFloatList.setAll(int index, IFloatList list) Sets the specified elements.static voidIFloatList.transferCopy(IFloatList src, int srcIndex, int srcLen, IFloatList dst, int dstIndex, int dstLen) Copies elements from one list to another.static voidIFloatList.transferMove(IFloatList src, int srcIndex, int srcLen, IFloatList dst, int dstIndex, int dstLen) Moves elements from one list to another by setting it to null in the source list.static voidIFloatList.transferRemove(IFloatList src, int srcIndex, int srcLen, IFloatList dst, int dstIndex, int dstLen) Moves elements from one list to another by removing it from the source list.static voidIFloatList.transferSwap(IFloatList src, int srcIndex, IFloatList dst, int dstIndex, int len) Swaps elements from two lists.