mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-03 01:50:59 +01:00
Note about large offset
This commit is contained in:
parent
cd9e8ec546
commit
5194dcc126
1 changed files with 2 additions and 0 deletions
|
@ -53,6 +53,8 @@ buffer.readi8(b, 0) == 3
|
|||
|
||||
Because of the bounds checking requirements, implementation needs a loop to access the buffer bytes, which is potentially slower than what developers can do with existing functions when they know that it's safe to read a larger number and extract bits with bit32 functions.
|
||||
|
||||
Because the max size of the buffer is 1GB, `bitOffset` cannot be handled as a 32-bit integer number like byte offset in other buffer functions.
|
||||
|
||||
## Alternatives
|
||||
|
||||
A signed version of `readbits` is not proposed to simplify the design. Writing and reading signed values can be performed with a bias.
|
||||
|
|
Loading…
Add table
Reference in a new issue