Equations
- Std.Time.Internal.Bounded.instLE = { le := fun (l r : Std.Time.Internal.Bounded rel n m) => l.val ≤ r.val }
Equations
- Std.Time.Internal.Bounded.instLT = { lt := fun (l r : Std.Time.Internal.Bounded rel n m) => l.val < r.val }
Equations
- Std.Time.Internal.Bounded.instRepr = { reprPrec := fun (n_1 : Std.Time.Internal.Bounded rel m n) => reprPrec n_1.val }
A Bounded
integer that the relation used is the the less-equal relation so, it includes all
integers that lo ≤ val ≤ hi
.
Instances For
A Bounded
integer that the relation used is the the less-than relation so, it includes all
integers that lo < val < hi
.
Instances For
Creates a new Bounded
Integer.
Instances For
Convert a Int
to a Bounded
if it checks.
Equations
Instances For
Equations
- Std.Time.Internal.Bounded.LE.instOfNatHAddIntCast = { ofNat := let h := ⋯; Std.Time.Internal.Bounded.LE.ofNatWrapping (↑n) h }
Equations
- Std.Time.Internal.Bounded.LE.instInhabitedHAddIntCast = { default := let h := ⋯; Std.Time.Internal.Bounded.LE.ofNatWrapping lo h }
Convert a Nat
to a Bounded.LE
using the lower boundary too.
Equations
- Std.Time.Internal.Bounded.LE.clip val h = if h₀ : lo ≤ val then if h₁ : val ≤ hi then ⟨val, ⋯⟩ else ⟨hi, ⋯⟩ else ⟨lo, ⋯⟩
Instances For
Convert a Bounded.LE
to a Nat.
Equations
- n.toNat' h = match n.val, ⋯ with | Int.ofNat n, x => n | Int.negSucc a, h => ⋯.elim
Instances For
Adjust the bounds of a Bounded
by setting the lower bound to zero and the maximum value to (m - n).
Equations
- bounded.truncate = match ⋯ with | ⋯ => ⟨bounded.val - n, ⋯⟩
Instances For
Adjust the bounds of a Bounded
by changing the higher bound if another value j
satisfies the same
constraint.
Equations
Instances For
Adjust the bounds of a Bounded
by changing the lower bound if another value j
satisfies the same
constraint.
Instances For
Adjust the bounds of a Bounded
by applying the mod operation.
Equations
- bounded.mod num hi = Std.Time.Internal.Bounded.LE.byMod bounded.val num hi
Instances For
Adds one to the value of the bounded if the value is less than the higher bound of the bounded number.
Equations
Instances For
Returns the absolute value of the bounded number bo
with bounds -(i - 1)
to i - 1
. The result
will be a new bounded number with bounds 0
to i - 1
.
Equations
- bo.abs = if h : bo.val ≥ 0 then bo.truncateBottom h else let r := (bo.truncateTop ⋯).neg; ⋯.mp r