You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, this means that if the user changes anything (even a: A -> aa: A) it would cause the address to become invalid. I feel this is too aggressive. Having such a strict tag allows for better precision (disambiguate between a foo with two params vs one with three) but more often than not, people don't have that many overloaded functions (or at least they shouldn't).
This "issue" also extends to case classes and others.
A possible solution is to use everything BUT the params. So the example above would return an address as:
def \zsfoo
The text was updated successfully, but these errors were encountered:
Currently, a tag address for:
Would create the tag address:
However, this means that if the user changes anything (even
a: A
->aa: A
) it would cause the address to become invalid. I feel this is too aggressive. Having such a strict tag allows for better precision (disambiguate between afoo
with two params vs one with three) but more often than not, people don't have that many overloaded functions (or at least they shouldn't).This "issue" also extends to case classes and others.
A possible solution is to use everything BUT the params. So the example above would return an address as:
The text was updated successfully, but these errors were encountered: