Module Expert.Dependency
type 'a tA
trepresents the edge from a child incremental to a parent expert node. Atis stateful, you cannot use the sametto link one child node to multiple parents at the same time.
val sexp_of_t : ('a -> Ppx_sexp_conv_lib.Sexp.t) -> 'a t -> Ppx_sexp_conv_lib.Sexp.t
val create : ?on_change:('a -> unit) -> 'a incremental -> 'a tWhen calling
create ?on_change child, nothing happens until thetis linked to a parent. seeNode.add_dependencyfor documentation ofon_change.
val value : 'a t -> 'avalue treads the value of the child incremental. It can only be used from the callback of theExpert.Node.tthat hastin its set of dependencies.