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