------------------------------------------------------------------------ -- The Agda standard library -- -- ≤-pred definition so as to not cause dependency problems. ------------------------------------------------------------------------ {-# OPTIONS --without-K --safe #-} module Data.Nat.Properties.Core where open import Data.Nat.Base ------------------------------------------------------------------------ -- Properties of _≤_ ------------------------------------------------------------------------ ≤-pred : ∀ {m n} → suc m ≤ suc n → m ≤ n ≤-pred (s≤s m≤n) = m≤n
Generated from commit 2fd14c996b195ef101dff8919e837907ca0a08aa.