Uses of Class
org.magicwerk.brownies.collections.primitive.DoubleBigList.DoubleBlock
-
Packages that use DoubleBigList.DoubleBlock Package Description org.magicwerk.brownies.collections.primitive 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.DoubleBlock Modifier and Type Field Description (package private) DoubleBigList.DoubleBlock
DoubleBigList.DoubleBlockNode. block
The stored blockMethods in org.magicwerk.brownies.collections.primitive that return DoubleBigList.DoubleBlock Modifier and Type Method Description private DoubleBigList.DoubleBlock
DoubleBigList.DoubleBlockNode. getDoubleBlock()
Gets the block stored by this node.DoubleBigList.DoubleBlock
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.DoubleBlock Modifier and Type Method Description private 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.DoubleBlock Constructor Description DoubleBlock(DoubleBigList.DoubleBlock that)
DoubleBlockNode(DoubleBigList.DoubleBlockNode parent, int relPos, DoubleBigList.DoubleBlock block, DoubleBigList.DoubleBlockNode rightFollower, DoubleBigList.DoubleBlockNode leftFollower)
Constructs a new node.
-