We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following is currently not simplified:
class Some[A] //│ Defined class Some def f: (Some['A] & 'this) -> (Some['A] & 'this) //│ f: (Some['A] & 'this) -> (Some['A] & 'this) //│ = <missing implementation>
But we could simplify it to (Some['A] & 'this) -> 'this because 'this always co-occurs with Some['A] negatively.
(Some['A] & 'this) -> 'this
'this
Some['A]
We could also probably do the same for unions, though it would be less straightforward to implement since we put types in DNF, not CNF.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following is currently not simplified:
But we could simplify it to
(Some['A] & 'this) -> 'this
because'this
always co-occurs withSome['A]
negatively.We could also probably do the same for unions, though it would be less straightforward to implement since we put types in DNF, not CNF.
The text was updated successfully, but these errors were encountered: