Merkle_ledger.Any_ledger
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 type S = sig ... end
module type Inputs_intf = sig ... end
module Make_base
(Inputs : Inputs_intf) :
S
with module Location = Inputs.Location
with type key := Inputs.Key.t
and type token_id := Inputs.Token_id.t
and type token_id_set := Inputs.Token_id.Set.t
and type account_id := Inputs.Account_id.t
and type hash := Inputs.Hash.t
and type account_id_set := Inputs.Account_id.Set.t
and type account := Inputs.Account.t