use exchange_pub valid at this time
This commit is contained in:
parent
a376fc584f
commit
a21ea0116a
5 changed files with 25 additions and 8 deletions
|
|
@ -97,6 +97,11 @@ module Timestamp = struct
|
|||
let never = uint64_max
|
||||
let zero = 0L
|
||||
let compare = Int64.unsigned_compare
|
||||
let gt a b = compare a b > 0
|
||||
let geq a b = compare a b >= 0
|
||||
let lt a b = compare a b < 0
|
||||
let leq a b = compare a b <= 0
|
||||
let equal a b = compare a b = 0
|
||||
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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue