Uses of Class
org.magicwerk.brownies.collections.primitive.DoubleBigList.DoubleBlock
Packages that use DoubleBigList.DoubleBlock
Package
Description
This packages contains implementations of GapList and BigList for primitive data types.
-
Uses of DoubleBigList.DoubleBlock in org.magicwerk.brownies.collections.primitive
Fields in org.magicwerk.brownies.collections.primitive declared as DoubleBigList.DoubleBlockModifier and TypeFieldDescription(package private) DoubleBigList.DoubleBlock
DoubleBigList.DoubleBlockNode.block
The stored blockMethods in org.magicwerk.brownies.collections.primitive that return DoubleBigList.DoubleBlockModifier and TypeMethodDescriptionprivate DoubleBigList.DoubleBlock
DoubleBigList.DoubleBlockNode.getDoubleBlock()
Gets the block stored by this node.DoubleBigList.DoubleBlock.ref()
Increment reference count as block is used by one DoubleBigList instance more.Methods in org.magicwerk.brownies.collections.primitive with parameters of type DoubleBigList.DoubleBlockModifier and TypeMethodDescriptionprivate void
DoubleBigList.addDoubleBlock
(int index, DoubleBigList.DoubleBlock obj) Adds a new element to the list.private void
DoubleBigList.doAddSplitDoubleBlock
(int index, double element, int pos, DoubleBigList.DoubleBlock newDoubleBlock) private DoubleBigList.DoubleBlockNode
DoubleBigList.DoubleBlockNode.insert
(int index, DoubleBigList.DoubleBlock obj) Inserts new node holding specified block at the position index.private DoubleBigList.DoubleBlockNode
DoubleBigList.DoubleBlockNode.insertOnLeft
(int relIndex, DoubleBigList.DoubleBlock obj) Inserts new node holding specified block on the node's left side.private DoubleBigList.DoubleBlockNode
DoubleBigList.DoubleBlockNode.insertOnRight
(int relIndex, DoubleBigList.DoubleBlock obj) Inserts new node holding specified block on the node's right side.private void
DoubleBigList.DoubleBlockNode.setDoubleBlock
(DoubleBigList.DoubleBlock block) Sets block to store by this node.Constructors in org.magicwerk.brownies.collections.primitive with parameters of type DoubleBigList.DoubleBlockModifierConstructorDescriptionprivate
DoubleBlockNode
(DoubleBigList.DoubleBlockNode parent, int relPos, DoubleBigList.DoubleBlock block, DoubleBigList.DoubleBlockNode rightFollower, DoubleBigList.DoubleBlockNode leftFollower) Constructs a new node.