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
variable
Right now, variable A : B cannot have inter-dependencies.
variable A : B
Would be nice to support
variable A : Type variable a : A
and using a automatically introduces A.
a
A
Note that this needs to be recursive, so
variable A : Type variable k : K variable n : G k variable xs : F A n
and using xs will cause everything else to be introduced.
xs
The text was updated successfully, but these errors were encountered:
mio-19
Successfully merging a pull request may close this issue.
Right now,
variable A : B
cannot have inter-dependencies.Would be nice to support
and using
a
automatically introducesA
.Note that this needs to be recursive, so
and using
xs
will cause everything else to be introduced.The text was updated successfully, but these errors were encountered: