Create an instance with the default initial capacity.
Create an instance with the default initial capacity.
public ByteStack();
Create an instance with the given initial value. The initial size will be grown from the size of the given bytes. A copy is made of the given bytes.
public ByteStack(byte[]);
Create an instance with the given initial capacity.
public ByteStack(int);
ByteStack Class | bedrock.collections Namespace