Update eager-inference-annotations-for-polymorphic-types.md

This commit is contained in:
Marcus 2025-03-06 00:16:44 +01:00 committed by GitHub
parent 8a24f5b8fa
commit 9df20a06c4
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -2,7 +2,7 @@
## Summary
Introduce a way to opt into monomorphic (greedy) type inference for generics, preventing them from widening into unions when instantiated with different types.
Introduce a way to annotate a polymorphic function signature to express that it will only allow one argument type to interact with automatic instantiation.
## Motivation
@ -27,7 +27,7 @@ test(1, "string") -- Type error: Expected `number`, got `string`
## Design
This RFC proposes adding some symbol next to each type variable which is a clear opt-in.
This RFC proposes adding some symbol as a suffix (or prefix) that annotates the inference behaviour for the generic.
### New Syntax