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.DoubleBlockDoubleBigList.DoubleBlockNode.blockThe stored blockMethods in org.magicwerk.brownies.collections.primitive that return DoubleBigList.DoubleBlockModifier and TypeMethodDescriptionprivate DoubleBigList.DoubleBlockDoubleBigList.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 voidDoubleBigList.addDoubleBlock(int index, DoubleBigList.DoubleBlock obj) Adds a new element to the list.private voidDoubleBigList.doAddSplitDoubleBlock(int index, double element, int pos, DoubleBigList.DoubleBlock newDoubleBlock) private DoubleBigList.DoubleBlockNodeDoubleBigList.DoubleBlockNode.insert(int index, DoubleBigList.DoubleBlock obj) Inserts new node holding specified block at the position index.private DoubleBigList.DoubleBlockNodeDoubleBigList.DoubleBlockNode.insertOnLeft(int relIndex, DoubleBigList.DoubleBlock obj) Inserts new node holding specified block on the node's left side.private DoubleBigList.DoubleBlockNodeDoubleBigList.DoubleBlockNode.insertOnRight(int relIndex, DoubleBigList.DoubleBlock obj) Inserts new node holding specified block on the node's right side.private voidDoubleBigList.DoubleBlockNode.setDoubleBlock(DoubleBigList.DoubleBlock block) Sets block to store by this node.Constructors in org.magicwerk.brownies.collections.primitive with parameters of type DoubleBigList.DoubleBlockModifierConstructorDescriptionprivateDoubleBlockNode(DoubleBigList.DoubleBlockNode parent, int relPos, DoubleBigList.DoubleBlock block, DoubleBigList.DoubleBlockNode rightFollower, DoubleBigList.DoubleBlockNode leftFollower) Constructs a new node.