mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-04 18:41:00 +01:00
Update generic-constraints.md
fixed wording regarding user-defined type functions
This commit is contained in:
parent
a41e48b4dd
commit
6b959dd236
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@ multiply(10, vector.create(10, 10, 10)) -- okay!
|
|||
multiply(10, 41) -- okay!
|
||||
multiply(10, "hello!") -- error! add<10, "hello"> is not okay.
|
||||
```
|
||||
The `multiply` function would be bounded by `T: number`, along with `mul<T, K>`. This can be used to create any type of constraint if user-defined type functions exist in the future.
|
||||
The `multiply` function would be bounded by `T: number`, along with `mul<T, K>`. This can be used to create any type of constraint if user-defined type functions work with generics in the future.
|
||||
|
||||
## Drawbacks
|
||||
- There are no built-in inequality constraints nor not-subtyping constraints.
|
||||
|
|
Loading…
Add table
Reference in a new issue