Change precedence of map includes operator according to spring 21 TODO

This commit is contained in:
Amanda Liu 2022-03-06 23:01:31 -05:00
parent 955fd59327
commit b2eafc94bf

2
Map.v
View file

@ -20,7 +20,7 @@ Module Type S.
Infix "$-" := remove (at level 50, left associativity).
Infix "$++" := join (at level 50, left associativity).
Infix "$?" := lookup (at level 50, no associativity).
Infix "$<=" := includes (at level 90).
Infix "$<=" := includes (at level 75).
Parameter dom : forall A B, fmap A B -> set A.