Update generic-constraints.md

fixed wording regarding user-defined type functions
This commit is contained in:
Kiiyoko 2024-12-13 20:01:48 -05:00 committed by GitHub
parent a41e48b4dd
commit 6b959dd236
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -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.