Documentation

Std.Time.Duration

Represents a time interval with nanoseconds precision.

Instances For
theorem Std.Time.Duration.ext {x y : Duration} (second : x.second = y.second) (nano : x.nano = y.nano) :
x = y
Equations
  • One or more equations did not get rendered due to their size.
Equations
  • One or more equations did not get rendered due to their size.
Equations
@[inline]

Negates a Duration, flipping its second and nanosecond values.

Equations
@[inline]

Creates a new Duration out of Second.Offset.

Equations

Creates a new Duration out of Nanosecond.Offset.

Equations
  • One or more equations did not get rendered due to their size.
theorem Std.Time.Duration.ofNanoseconds.mod_nonpos {a : Int} (b : Int) :
a 0b 00 a.tmod b
theorem Std.Time.Duration.ofNanoseconds.tdiv_neg {a b : Int} (Ha : a 0) (Hb : 0 b) :
a.tdiv b 0
@[inline]

Checks if the duration is zero seconds and zero nanoseconds.

Equations
@[inline]

Converts a Duration to a Second.Offset

Equations
@[inline]

Converts a Duration to a Nanosecond.Offset

Equations
@[inline]

Converts a Duration to a Minute.Offset

Equations
@[inline]

Converts a Duration to a Day.Offset

Equations
@[inline]

Normalizes Second.Offset and NanoSecond.span in order to build a new Duration out of it.

Equations
@[inline]

Adds two durations together, handling any carry-over in nanoseconds.

Equations
@[inline]

Subtracts one Duration from another.

Equations
@[inline]

Adds a Second.Offset to a Duration

Equations
@[inline]

Subtracts a Second.Offset from a Duration

Equations
@[inline]

Adds a Minute.Offset to a Duration

Equations
@[inline]

Subtracts a Minute.Offset from a Duration

Equations
@[inline]

Adds an Hour.Offset to a Duration

Equations
@[inline]

Subtracts an Hour.Offset from a Duration

Equations
@[inline]

Adds a Day.Offset to a Duration

Equations
@[inline]

Subtracts a Day.Offset from a Duration

Equations
@[inline]

Adds a Week.Offset to a Duration

Equations
@[inline]

Subtracts a Week.Offset from a Duration

Equations