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.IntBlockIntBigList.IntBlockNode.blockThe stored blockMethods in org.magicwerk.brownies.collections.primitive that return IntBigList.IntBlockModifier and TypeMethodDescriptionprivate IntBigList.IntBlockIntBigList.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 voidIntBigList.addIntBlock(int index, IntBigList.IntBlock obj) Adds a new element to the list.private voidIntBigList.doAddSplitIntBlock(int index, int element, int pos, IntBigList.IntBlock newIntBlock) private IntBigList.IntBlockNodeIntBigList.IntBlockNode.insert(int index, IntBigList.IntBlock obj) Inserts new node holding specified block at the position index.private IntBigList.IntBlockNodeIntBigList.IntBlockNode.insertOnLeft(int relIndex, IntBigList.IntBlock obj) Inserts new node holding specified block on the node's left side.private IntBigList.IntBlockNodeIntBigList.IntBlockNode.insertOnRight(int relIndex, IntBigList.IntBlock obj) Inserts new node holding specified block on the node's right side.private voidIntBigList.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) privateIntBlockNode(IntBigList.IntBlockNode parent, int relPos, IntBigList.IntBlock block, IntBigList.IntBlockNode rightFollower, IntBigList.IntBlockNode leftFollower) Constructs a new node.