Skip to content

Commit

Permalink
feat: add support for not-in in exists (#425)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruben-VandeVelde authored Dec 7, 2023
1 parent d2a16f5 commit c4ece13
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Std/Util/ExtendedBinder.lean
Original file line number Diff line number Diff line change
Expand Up @@ -138,3 +138,5 @@ binder_predicate x " < " y:term => `($x < $y)
binder_predicate x " ≤ " y:term => `($x ≤ $y)
/-- Declare `∃ x ≠ y, ...` as syntax for `∃ x, x ≠ y ∧ ...` -/
binder_predicate x " ≠ " y:term => `($x ≠ $y)
/-- Declare `∃ x ∉ y, ...` as syntax for `∃ x, x ∉ y ∧ ...` -/
binder_predicate x " ∉ " y:term => `($x ∉ $y)

0 comments on commit c4ece13

Please sign in to comment.