feat(library/init/nat.lean): add notation <= and >= for nat
This commit is contained in:
parent
7bde8193fe
commit
6dc1cfca3c
1 changed files with 2 additions and 0 deletions
|
@ -21,6 +21,7 @@ namespace nat
|
|||
|
||||
definition le [reducible] (a b : nat) : Prop := a < succ b
|
||||
|
||||
notation a <= b := le a b
|
||||
notation a ≤ b := le a b
|
||||
|
||||
definition pred (a : nat) : nat :=
|
||||
|
@ -251,6 +252,7 @@ namespace nat
|
|||
definition decidable_ge [instance] : decidable_rel ge :=
|
||||
_
|
||||
|
||||
notation a >= b := ge a b
|
||||
notation a ≥ b := ge a b
|
||||
|
||||
-- add is defined in init.num
|
||||
|
|
Loading…
Reference in a new issue