1
2
3
4
5
6
7
8
9
module type T = sig
  module Value : Value_intf.T

  type t

  val value : t -> Value.t

  val set_value : t -> Value.t -> unit
end