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