This commit is contained in:
swrup 2026-02-23 11:13:54 +01:00
parent b57e9cfa73
commit 1b4fba3216
3 changed files with 7 additions and 9 deletions

View file

@ -99,6 +99,8 @@ module Timestamp = struct
let never = uint64_max
let zero = 0L
let compare = Int64.unsigned_compare
let min a b = if compare a b < 0 then a else b
let max a b = if compare a b > 0 then a else b
(* zero if a >= b; never if b=never; otherwise b - a *)
let diff a b =