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
I've been pondering the "decl layer". I think it might be a bit more readable if we made efforts to make it a touch more Rust like.
I thought we could collect ideas here in this tracking issue.
Self
The text was updated successfully, but these errors were encountered:
Some examples that came up in discussion today:
To represent static S: Foo = f-body, instead of
static S: Foo = f-body
(StaticDecl (term (S (static () () (rigid-ty Foo ()) fn-body))))
we could do
(StaticDecl (term (static S () : (rigid-ty Foo ()) = fn-body where ())))
Note that this syntax supports generic statics/consts with where-clauses :)
Sorry, something went wrong.
No branches or pull requests
I've been pondering the "decl layer". I think it might be a bit more readable if we made efforts to make it a touch more Rust like.
I thought we could collect ideas here in this tracking issue.
Self
type parameter implicit on traitsThe text was updated successfully, but these errors were encountered: