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
When defining an association between entities, we need something like this:
trait Person[Pr] { type P[_] type Ad; val Address: Address[Ad] val optAddress: OptionalAlg.Aux[P, Address.P, Ad] }
This is very noisy. One of the ideas that we'd like to apply is the next one:
trait Person[Pr] { type P[_] type Ad: Address val optAddress: OptionalAlg.Aux[P, Ad.P, Ad] }
However, at first glance, it seems to be impossible to implement this idea with macros. Is there any other way to get something similar to this?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When defining an association between entities, we need something like this:
This is very noisy. One of the ideas that we'd like to apply is the next one:
However, at first glance, it seems to be impossible to implement this idea with macros. Is there any other way to get something similar to this?
The text was updated successfully, but these errors were encountered: