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 trait chapter does not explain inheritance. A minimal example:
trait C : A + B {}
This means that any implementation of C also has to implement A and B. See the reference manual for documentation.
C
A
B
The text was updated successfully, but these errors were encountered:
This still needs doing. The relevant book page.
Sorry, something went wrong.
This is covered by #90
No branches or pull requests
The trait chapter does not explain inheritance. A minimal example:
This means that any implementation of
C
also has to implementA
andB
.See the reference manual for documentation.
The text was updated successfully, but these errors were encountered: