54 lines
2.4 KiB
OCaml
54 lines
2.4 KiB
OCaml
(*****************************************************************************)
|
|
(* *)
|
|
(* Open Source License *)
|
|
(* Copyright (c) 2018 Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
(* *)
|
|
(* Permission is hereby granted, free of charge, to any person obtaining a *)
|
|
(* copy of this software and associated documentation files (the "Software"),*)
|
|
(* to deal in the Software without restriction, including without limitation *)
|
|
(* the rights to use, copy, modify, merge, publish, distribute, sublicense, *)
|
|
(* and/or sell copies of the Software, and to permit persons to whom the *)
|
|
(* Software is furnished to do so, subject to the following conditions: *)
|
|
(* *)
|
|
(* The above copyright notice and this permission notice shall be included *)
|
|
(* in all copies or substantial portions of the Software. *)
|
|
(* *)
|
|
(* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR*)
|
|
(* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *)
|
|
(* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL *)
|
|
(* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER*)
|
|
(* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING *)
|
|
(* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER *)
|
|
(* DEALINGS IN THE SOFTWARE. *)
|
|
(* *)
|
|
(*****************************************************************************)
|
|
|
|
open Script_int_repr
|
|
|
|
type t
|
|
|
|
val of_int64 : int64 -> t
|
|
|
|
val compare : t -> t -> int
|
|
|
|
(* Convert a timestamp to a notation if possible *)
|
|
val to_notation : t -> string option
|
|
|
|
(* Convert a timestamp to a string representation of the seconds *)
|
|
val to_num_str : t -> string
|
|
|
|
(* Convert to a notation if possible, or num if not *)
|
|
val to_string : t -> string
|
|
|
|
val of_string : string -> t option
|
|
|
|
val diff : t -> t -> z num
|
|
|
|
val add_delta : t -> z num -> t
|
|
|
|
val sub_delta : t -> z num -> t
|
|
|
|
val to_zint : t -> Z.t
|
|
|
|
val of_zint : Z.t -> t
|