Represents a time interval with nanoseconds precision.
- second : Second.Offset
Second offset of the duration.
- nano : Nanosecond.Span
Nanosecond span that ranges from -999999999 and 999999999
Instances For
Equations
- Std.Time.instReprDuration = { reprPrec := Std.Time.reprDuration✝ }
Equations
- One or more equations did not get rendered due to their size.
Equations
- Std.Time.instReprDuration_1 = { reprPrec := fun (s : Std.Time.Duration) => reprPrec (toString s) }
Equations
- One or more equations did not get rendered due to their size.
Equations
- Std.Time.instOfNatDuration = { ofNat := { second := Std.Time.Second.Offset.ofInt ↑n, nano := ⟨0, Std.Time.instOfNatDuration.proof_1⟩, proof := ⋯ } }
@[inline]
Negates a Duration
, flipping its second and nanosecond values.
Equations
- duration.neg = { second := -duration.second, nano := Std.Time.Internal.Bounded.LE.neg duration.nano, proof := ⋯ }
Instances For
Creates a new Duration
out of Nanosecond.Offset
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Std.Time.Duration.instLE = { le := fun (d1 d2 : Std.Time.Duration) => d1.toNanoseconds ≤ d2.toNanoseconds }
@[inline]
Normalizes Second.Offset
and NanoSecond.span
in order to build a new Duration
out of it.
Equations
Instances For
@[inline]
Adds two durations together, handling any carry-over in nanoseconds.
Instances For
Equations
Equations
Equations
Equations
Equations
Equations
Equations
Equations
Equations
Equations
Equations
Equations
Equations
Equations
Equations
- Std.Time.Duration.instHSub = { hSub := Std.Time.Duration.sub }
Equations
- Std.Time.Duration.instHAdd = { hAdd := Std.Time.Duration.add }