You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instead of being a fixed length, it would be nice if I could initialize it without a length like new ByteBuf() or similar. Then, an internal buffer could grow over time as needed.
The design tradeoff of having an internal buffer vs extending DataView directly is probably that you would need some kind of toBuffer() method that would return a view only up until the current byteOffset.
The text was updated successfully, but these errors were encountered:
Instead of being a fixed length, it would be nice if I could initialize it without a length like
new ByteBuf()
or similar. Then, an internal buffer could grow over time as needed.The design tradeoff of having an internal buffer vs extending
DataView
directly is probably that you would need some kind oftoBuffer()
method that would return a view only up until the currentbyteOffset
.The text was updated successfully, but these errors were encountered: