package mirage-mtime

  1. Overview
  2. Docs
Libraries and module types for a monotonic clock

Install

dune-project
 Dependency

Authors

Maintainers

Sources

mirage-mtime-5.2.0.tbz
sha256=91a04352a405d5215e724bbce624675fd8e2d7c4e36d3225cf806546e44089bf
sha512=5ffc9570c2d939d3deee1ca0b12ba49c9332ec141bf847edd7c4c8fbe274bf1f4a4ac5b74a7acdb30d1cbf81783bd71b66e83cfa7af1a7e80a1406edafcec110

doc/src/mirage-mtime.set/mirage_mtime_set.ml.html

Source file mirage_mtime_set.ml

1
2
3
4
let now = ref 0L
let tick () = now := Int64.add !now 1L
let tick_for v = now := Int64.add !now v
let reset () = now := 0L