24 lines
969 B
OCaml
24 lines
969 B
OCaml
|
(**************************************************************************)
|
||
|
(* *)
|
||
|
(* Copyright (c) 2014 - 2016. *)
|
||
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
||
|
(* *)
|
||
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
||
|
(* *)
|
||
|
(**************************************************************************)
|
||
|
|
||
|
type t
|
||
|
type raw_level = t
|
||
|
val encoding: raw_level Data_encoding.t
|
||
|
val arg: raw_level RPC.Arg.arg
|
||
|
val pp: Format.formatter -> raw_level -> unit
|
||
|
include Compare.S with type t := raw_level
|
||
|
|
||
|
val to_int32: raw_level -> int32
|
||
|
val of_int32_exn: int32 -> raw_level
|
||
|
|
||
|
val root: raw_level
|
||
|
|
||
|
val succ: raw_level -> raw_level
|
||
|
val pred: raw_level -> raw_level option
|