Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions core/src/time_ns.ml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ let epoch = Span.zero
let add = Span.( + )
let sub = Span.( - )
let diff = Span.( - )
let since = diff @@ now ()
let abs_diff t u = Span.abs (diff t u)
let max = Span.max
let min = Span.min
Expand Down
3 changes: 3 additions & 0 deletions core/src/time_ns_intf.ml
Original file line number Diff line number Diff line change
Expand Up @@ -396,6 +396,9 @@ module type Time_ns = sig
(** overflows silently *)
val diff : t -> t -> Span.t

(** overflows silently *)
val since : t -> Span.t

(** overflows silently *)
val abs_diff : t -> t -> Span.t

Expand Down