mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-03 01:50:59 +01:00
Update implementation status of various RFCs
This commit is contained in:
parent
84f9815c32
commit
4f37a30ef1
12 changed files with 24 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
|||
# buffer.readbits/writebits
|
||||
|
||||
**Status**: Implemented
|
||||
|
||||
## Summary
|
||||
|
||||
Add `buffer.readbits` and `buffer.writebits` to give developers an easy way to work with bit buffers.
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
# math.lerp
|
||||
|
||||
**Status**: Implemented
|
||||
|
||||
## Summary
|
||||
|
||||
Add a `lerp` function to the `math` library, which performs linear interpolation between two numbers.
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
# math.map
|
||||
|
||||
**Status**: Implemented
|
||||
|
||||
## Summary
|
||||
|
||||
Add a `map` function to the `math` library, which maps a number from one range to another.
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
# `index` type function
|
||||
|
||||
**Status**: Implemented
|
||||
|
||||
## Summary
|
||||
|
||||
This RFC proposes the addition of one type function, `index`, which can be used to look up a specific property of another type (like TypeScript's Indexed Access Type).
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
# `keyof` and `rawkeyof` type functions
|
||||
|
||||
**Status**: Implemented
|
||||
|
||||
## Summary
|
||||
|
||||
This RFC proposes the addition of two type functions, `keyof` and `rawkeyof`,
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
# `rawget` type function
|
||||
|
||||
**Status**: Implemented
|
||||
|
||||
## Summary
|
||||
|
||||
This RFC proposes the addition of a new type function, `rawget`, which can be used to look up a specific property of a table type *without* invoking the `__index` metamethod.
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
# Support for Generic Types and Packs in User-Defined Type Functions
|
||||
|
||||
**Status**: Implemented
|
||||
|
||||
## Summary
|
||||
|
||||
Add support for generic function types in type functions to allow more types to be accepted by them, including tables and classes which might contain generic function types.
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
# Support for thread and buffer Types in User-Defined Type Functions
|
||||
|
||||
**Status**: Implemented
|
||||
|
||||
## Summary
|
||||
|
||||
Add support for 'thread' and 'buffer' primitive types, omitted from original user-defined type function RFC.
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
# Leading `|` and `&` in types
|
||||
|
||||
**Status**: Implemented
|
||||
|
||||
## Summary
|
||||
|
||||
Allow the use of `|` and `&` without any types preceding them.
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
# User-Defined Type Functions
|
||||
|
||||
**Status**: Implemented
|
||||
|
||||
## Summary
|
||||
|
||||
The new Luau type inference engine (or type solver, for short) adds support for a system of built-in type functions that compute result types from provided argument types. This system is already being used to power support for overloadable operators, and the broad design philosophy is to include built-in type functions that correspond to built-in runtime-level operations in the language. To further enhance the expressivity of the type system, this RFC extends that system with a proposed design for user-defined type functions, allowing developers to define their own type functions in ordinary Luau code.
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
# 2-component vector constructor
|
||||
|
||||
**Status**: Implemented
|
||||
|
||||
## Summary
|
||||
|
||||
Add a constructor for initializing vectors from two components.
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
# Vector library
|
||||
|
||||
**Status**: Implemented
|
||||
|
||||
## Summary
|
||||
|
||||
Implement a standard library that provides functionality for the vector type.
|
||||
|
|
Loading…
Add table
Reference in a new issue