mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-03 18:30:54 +01:00
Update compatibility.md
We decided that we can't enforce strict limits for insert/remove based on analysis of Roblox games
This commit is contained in:
parent
b439c9fcdc
commit
c8af786b10
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ Ephemeron tables may be implemented at some point since they do have valid uses
|
|||
| new function `table.move` | ✔️ | |
|
||||
| `collectgarbage("count")` now returns only one result | ✔️ | |
|
||||
| `coroutine.isyieldable` | ✔️ | |
|
||||
| stricter error checking for `table.insert`/`table.remove` | 🔜 | we're evaluating compatibility implications
|
||||
| stricter error checking for `table.insert`/`table.remove` | 😞 | we love this, but it breaks compatibility
|
||||
|
||||
It's important to highlight integer support and bitwise operators. For Luau, it's rare that a full 64-bit integer type is necessary - double-precision types support integers up to 2^53 (in Lua which is used in embedded space, integers may be more appealing in environments without a native 64-bit FPU). However, there's a *lot* of value in having a single number type, both from performance perspective and for consistency. Notably, Lua doesn't handle integer overflow properly, so using integers also carries compatibility implications.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue