mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-03 18:10:56 +01:00
Update eager-inference-annotations-for-polymorphic-types.md
This commit is contained in:
parent
b995140a1e
commit
5308d81184
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ The RFC introduces a feature to annotate a polymorphic function signature to exp
|
|||
|
||||
## Motivation
|
||||
|
||||
The purpose of this feature is to prevent polymorphic types from widening into a union (e.g., number | string) when the function is called with different arguments, like in the case of `test(1, "a")`. Without the `!` annotation, the solver would infer `T` to be `number | string`, which is undesirable when the intention is to enforce strict type consistency across the function.
|
||||
The purpose of this feature is to prevent polymorphic types from widening into (e.g., number | string) when the function is called with different arguments, like in the case of `test(1, "a")`. Without the `!` annotation, the solver would infer `T` to be `number | string`, which is undesirable when the intention is to enforce strict type consistency across the function.
|
||||
|
||||
```luau
|
||||
function test<T>(a: T, b: T): T
|
||||
|
|
Loading…
Add table
Reference in a new issue