Uses of Class
org.magicwerk.brownies.collections.primitive.ByteBigList.ByteBlock
-
Packages that use ByteBigList.ByteBlock Package Description org.magicwerk.brownies.collections.primitive This packages contains implementations of GapList and BigList for primitive data types. -
-
Uses of ByteBigList.ByteBlock in org.magicwerk.brownies.collections.primitive
Fields in org.magicwerk.brownies.collections.primitive declared as ByteBigList.ByteBlock Modifier and Type Field Description (package private) ByteBigList.ByteBlock
ByteBigList.ByteBlockNode. block
The stored blockMethods in org.magicwerk.brownies.collections.primitive that return ByteBigList.ByteBlock Modifier and Type Method Description private ByteBigList.ByteBlock
ByteBigList.ByteBlockNode. getByteBlock()
Gets the block stored by this node.ByteBigList.ByteBlock
ByteBigList.ByteBlock. ref()
Increment reference count as block is used by one ByteBigList instance more.Methods in org.magicwerk.brownies.collections.primitive with parameters of type ByteBigList.ByteBlock Modifier and Type Method Description private void
ByteBigList. addByteBlock(int index, ByteBigList.ByteBlock obj)
Adds a new element to the list.private void
ByteBigList. doAddSplitByteBlock(int index, byte element, int pos, ByteBigList.ByteBlock newByteBlock)
private ByteBigList.ByteBlockNode
ByteBigList.ByteBlockNode. insert(int index, ByteBigList.ByteBlock obj)
Inserts new node holding specified block at the position index.private ByteBigList.ByteBlockNode
ByteBigList.ByteBlockNode. insertOnLeft(int relIndex, ByteBigList.ByteBlock obj)
Inserts new node holding specified block on the node's left side.private ByteBigList.ByteBlockNode
ByteBigList.ByteBlockNode. insertOnRight(int relIndex, ByteBigList.ByteBlock obj)
Inserts new node holding specified block on the node's right side.private void
ByteBigList.ByteBlockNode. setByteBlock(ByteBigList.ByteBlock block)
Sets block to store by this node.Constructors in org.magicwerk.brownies.collections.primitive with parameters of type ByteBigList.ByteBlock Constructor Description ByteBlock(ByteBigList.ByteBlock that)
ByteBlockNode(ByteBigList.ByteBlockNode parent, int relPos, ByteBigList.ByteBlock block, ByteBigList.ByteBlockNode rightFollower, ByteBigList.ByteBlockNode leftFollower)
Constructs a new node.
-