Merge pull request #57 from al3623/master

Change precedence of map includes operator according to spring 21 TODO
This commit is contained in:
Adam Chlipala 2022-03-07 09:05:46 -05:00 committed by GitHub
commit b643755628
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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.