Skip to content
Snippets Groups Projects

Remove singleton notations for tuples

Merged Robbert Krebbers requested to merge robbert/remove_old_set_notations into master
2 files
+ 6
4
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 0
4
@@ -865,10 +865,6 @@ Notation "{[ x ]}" := (singleton x) (at level 1) : stdpp_scope.
Notation "{[ x ; y ; .. ; z ]}" :=
(union .. (union (singleton x) (singleton y)) .. (singleton z))
(at level 1) : stdpp_scope.
Notation "{[ x , y ]}" := (singleton (x,y))
(at level 1, y at next level) : stdpp_scope.
Notation "{[ x , y , z ]}" := (singleton (x,y,z))
(at level 1, y at next level, z at next level) : stdpp_scope.
Class SubsetEq A := subseteq: relation A.
Global Hint Mode SubsetEq ! : typeclass_instances.
Loading