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
Similar to the std-lib this feature should allow this code to compile:
package test @Given val unit: Unit = Unit
regarding the @with proposal it allows this code sample without further imports:
@with
package test import arrowx.Monoid fun <A, B> @with<Monoid<A>, Monoid<B>> Pair<A, B>.combineEmpty(): Pair<A, B> = first.combine(empty()) to second.combine(empty())
Ideally, this is implemented in one Extension and not through codegen in Analysis and Synthetic imports in the Ide.
The text was updated successfully, but these errors were encountered:
resolves #772
6b75cb4
resolved in this commit
Sorry, something went wrong.
No branches or pull requests
Similar to the std-lib this feature should allow this code to compile:
regarding the
@with
proposal it allows this code sample without further imports:Ideally, this is implemented in one Extension and not through codegen in Analysis and Synthetic imports in the Ide.
The text was updated successfully, but these errors were encountered: