Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Gen
is the module type of generators, which are the second kind of input nodes available to users. These correspond to streams of values.
val create : (unit -> 'a) -> 'a t
create f
creates a generator using f
as generating function.
val touch : 'a t -> unit
touch g
invalidates all nodes that depend directly and indirectly on g
and generates a new value to replace the old one.