chore: remove Int.natMod

This commit is contained in:
Mario Carneiro 2022-11-13 14:35:37 -05:00 committed by Leonardo de Moura
parent bcd1673231
commit 7358df2f7e

View file

@ -158,8 +158,6 @@ def toNat : Int → Nat
| ofNat n => n
| negSucc _ => 0
def natMod (m n : Int) : Nat := (m % n).toNat
protected def pow (m : Int) : Nat → Int
| 0 => 1
| succ n => Int.pow m n * m