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 text was updated successfully, but these errors were encountered:
I have a few nitpicks regarding the type class principles.
For the Explicit Override principle:
Explicit Override
This ensures that there are no dangling overrides, i.e. functions definitions that do not match any signature of the type class.
This check happens, but it's not directly related to the override modifier.
override
Instead, the override modifier ensures:
Regarding the Default Implementations principle:
Default Implementations
... can always be overridden ... For example, to provide a more efficient version.
Do we want to strengthen this or the override principle to say that an override must be observationally equivalent to the default implementation?
Sorry, something went wrong.
No branches or pull requests
The text was updated successfully, but these errors were encountered: