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 GHC proposal about simplifying parsing of ~ and ! contains a nice overview of some reserved operators:
~
!
@
(#
#)
$
$$
-
.
?
#
Handling everything is going to be tricky, but handling ~ and ! seems like a reasonable task.
The text was updated successfully, but these errors were encountered:
Added ~ and ! prefix operators in 9b21f6d, and made the logic surrounding symbolic operators (including reserved ones) more consistent.
Sorry, something went wrong.
No branches or pull requests
The GHC proposal about simplifying parsing of ~ and ! contains a nice overview of some reserved operators:
~
for lazy patterns,!
for strict patterns,@
for type applications and record at syntax,(#
and#)
for unboxed tuples,$
and$$
for Template Haskell splices,-
for prefix negation.
for forall quantification and module qualification,?
for implicit parameters,#
for magic hash, overloaded labels, CPP.Handling everything is going to be tricky, but handling
~
and!
seems like a reasonable task.The text was updated successfully, but these errors were encountered: