Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
val define_container_type :
name:name ->
?typ:string ->
?alias:alias ->
properties ->
properties
val define_state_type :
name:name ->
typ:string ->
?alias:alias ->
properties ->
properties
val define_event_type :
name:name ->
typ:string ->
?alias:alias ->
properties ->
properties
val define_variable_type :
name:name ->
typ:string ->
color:color ->
?alias:alias ->
properties ->
properties
val define_link_type :
name:name ->
typ:string ->
start_container_type:string ->
end_container_type:string ->
?alias:alias ->
properties ->
properties
val define_entity_value :
name:name ->
typ:string ->
color:color ->
?alias:alias ->
properties ->
properties
val create_container :
name:name ->
typ:string ->
?container:name ->
?alias:alias ->
properties ->
properties
val destroy_container : name:name -> typ:string -> properties -> properties
val set_state :
typ:string ->
container:name ->
value:string ->
properties ->
properties
val push_state :
typ:string ->
container:name ->
value:string ->
properties ->
properties
val pop_state : typ:string -> container:name -> properties -> properties
val reset_state : typ:string -> container:name -> properties -> properties
val new_event :
typ:string ->
container:name ->
value:string ->
properties ->
properties
val set_variable :
typ:string ->
container:name ->
value:float ->
properties ->
properties
val add_variable :
typ:string ->
container:name ->
value:float ->
properties ->
properties
val sub_variable :
typ:string ->
container:name ->
value:float ->
properties ->
properties
val start_link :
typ:string ->
container:name ->
start_container:name ->
value:string ->
key:string ->
properties ->
properties
val end_link :
typ:string ->
container:name ->
end_container:name ->
value:string ->
key:string ->
properties ->
properties
val render : Event.t -> string
val layout : Layout.t
val layout_noheader : Layout.t
exception Invalid_type of type_kind
module type Definitions = sig ... end
module type S = sig ... end
module Make (D : Definitions) : sig ... end