You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Expression operators (prefix/2, postfix/2, and infix/3).
Predicate operators (prefix/1, postfix/1, and infix/2).
Right now, operators are not permitted in predicate position, so operators from group (2) cannot be used. These should be allowed. This might even allow <- to be implemented as an operator rather than a language feature.
The text was updated successfully, but these errors were encountered:
There are two kinds of operators:
prefix/2
,postfix/2
, andinfix/3
).prefix/1
,postfix/1
, andinfix/2
).Right now, operators are not permitted in predicate position, so operators from group (2) cannot be used. These should be allowed. This might even allow
<-
to be implemented as an operator rather than a language feature.The text was updated successfully, but these errors were encountered: