Uses of Class
org.magicwerk.brownies.collections.primitive.ByteBigList.ByteBlock
Packages that use ByteBigList.ByteBlock
Package
Description
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.ByteBlockModifier and TypeFieldDescription(package private) ByteBigList.ByteBlockByteBigList.ByteBlockNode.blockThe stored blockMethods in org.magicwerk.brownies.collections.primitive that return ByteBigList.ByteBlockModifier and TypeMethodDescriptionprivate ByteBigList.ByteBlockByteBigList.ByteBlockNode.getByteBlock()Gets the block stored by this node.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.ByteBlockModifier and TypeMethodDescriptionprivate voidByteBigList.addByteBlock(int index, ByteBigList.ByteBlock obj) Adds a new element to the list.private voidByteBigList.doAddSplitByteBlock(int index, byte element, int pos, ByteBigList.ByteBlock newByteBlock) private ByteBigList.ByteBlockNodeByteBigList.ByteBlockNode.insert(int index, ByteBigList.ByteBlock obj) Inserts new node holding specified block at the position index.private ByteBigList.ByteBlockNodeByteBigList.ByteBlockNode.insertOnLeft(int relIndex, ByteBigList.ByteBlock obj) Inserts new node holding specified block on the node's left side.private ByteBigList.ByteBlockNodeByteBigList.ByteBlockNode.insertOnRight(int relIndex, ByteBigList.ByteBlock obj) Inserts new node holding specified block on the node's right side.private voidByteBigList.ByteBlockNode.setByteBlock(ByteBigList.ByteBlock block) Sets block to store by this node.Constructors in org.magicwerk.brownies.collections.primitive with parameters of type ByteBigList.ByteBlockModifierConstructorDescriptionprivateByteBlockNode(ByteBigList.ByteBlockNode parent, int relPos, ByteBigList.ByteBlock block, ByteBigList.ByteBlockNode rightFollower, ByteBigList.ByteBlockNode leftFollower) Constructs a new node.