Module Merkle_ledger

module Any_ledger : sig ... end

Any_ledger lets you use any arbitrary ledger whenever some ledger is * required. This uses dynamic dispatch and is equivalent to the notion of * consuming a value conforming to an interface in Java. * * It uses GADTs to type-erase the specific underlying first-class module * for some given signature and delegates all function calls. * * The restriction here is that one cannot conform to some signature that * exposes a `create` function because we can't magically pull a conforming * module out of thin air. However, one can always just pack any concrete * instance with the GADT constructor `witness`. * * Props to @nholland for showing me this trick. *

module Base_inputs_intf : sig ... end
module Base_ledger_intf : sig ... end
module Database : sig ... end
module Database_intf : sig ... end
module Graphviz : sig ... end
module Intf : sig ... end
module Ledger_extras_intf : sig ... end
module Location : sig ... end
module Location_intf : sig ... end
module Merkle_ledger_intf : sig ... end
module Merkle_path : sig ... end
module Merkle_path_intf : sig ... end
module Null_ledger : sig ... end
module Syncable_intf : sig ... end
module Util : sig ... end