mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-03 18:10:56 +01:00
change "generic" to "polymorphic type" in a few places
This commit is contained in:
parent
e25643f37c
commit
1943be72c3
1 changed files with 3 additions and 3 deletions
|
@ -6,7 +6,7 @@ Introduce a way to annotate a polymorphic function signature to express that it
|
|||
|
||||
## Motivation
|
||||
|
||||
Currently, Luau's type solver allows generic parameters to widen into unions when they are instantiated with multiple types. For example:
|
||||
Currently, Luau's type solver allows polymorphic types to widen into unions when they are instantiated with multiple types. For example:
|
||||
|
||||
```luau
|
||||
function test<T>(a: T, b: T): T
|
||||
|
@ -27,7 +27,7 @@ test(1, "string") -- Type error: Expected `number`, got `string`
|
|||
|
||||
## Design
|
||||
|
||||
This RFC proposes adding some symbol as a suffix (or prefix) that annotates the inference behaviour for the generic.
|
||||
This RFC proposes adding some symbol as a suffix (or prefix) that annotates the inference behaviour for the polymorphic type.
|
||||
|
||||
### New Syntax
|
||||
|
||||
|
@ -35,7 +35,7 @@ The `T!` syntax would indicate a that the type binding for `T` is monomorphic.
|
|||
|
||||
### Type Checking Rules
|
||||
|
||||
1. When a generic parameter is marked as `T!`:
|
||||
1. When a polymorphic type is marked as `T!`:
|
||||
- The first instantiation of `T` determines its type
|
||||
- Any subsequent use of `T` in the same context must match this type exactly
|
||||
- If a different type is encountered, a **type error** is raised
|
||||
|
|
Loading…
Add table
Reference in a new issue