Skip to content
Snippets Groups Projects
Commit dcaf9240 authored by Robbert Krebbers's avatar Robbert Krebbers
Browse files

Make ∖ left associative.

parent e920e294
No related branches found
No related tags found
No related merge requests found
......@@ -590,7 +590,7 @@ Notation "(∩ x )" := (λ y, intersection y x) (only parsing) : C_scope.
Class Difference A := difference: A A A.
Instance: Params (@difference) 2.
Infix "∖" := difference (at level 40) : C_scope.
Infix "∖" := difference (at level 40, left associativity) : C_scope.
Notation "(∖)" := difference (only parsing) : C_scope.
Notation "( x ∖)" := (difference x) (only parsing) : C_scope.
Notation "(∖ x )" := (λ y, difference y x) (only parsing) : C_scope.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment