package hardcaml_step_testbench

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Input_monad : sig ... end
module Component : sig ... end
type ('a, 'i, 'o) t
val sexp_of_t : ('a -> Sexplib0.Sexp.t) -> ('i -> Sexplib0.Sexp.t) -> ('o -> Sexplib0.Sexp.t) -> ('a, 'i, 'o) t -> Sexplib0.Sexp.t
val (>>=) : ('a, 'd, 'e) t -> ('a -> ('b, 'd, 'e) t) -> ('b, 'd, 'e) t
val (>>|) : ('a, 'd, 'e) t -> ('a -> 'b) -> ('b, 'd, 'e) t
module Let_syntax : sig ... end
module Monad_infix : sig ... end
val bind : ('a, 'd, 'e) t -> f:('a -> ('b, 'd, 'e) t) -> ('b, 'd, 'e) t
val return : 'a -> ('a, 'b, 'c) t
val map : ('a, 'd, 'e) t -> f:('a -> 'b) -> ('b, 'd, 'e) t
val join : (('a, 'd, 'e) t, 'd, 'e) t -> ('a, 'd, 'e) t
val ignore_m : ('a, 'd, 'e) t -> (unit, 'd, 'e) t
val all : ('a, 'd, 'e) t list -> ('a list, 'd, 'e) t
val all_unit : (unit, 'd, 'e) t list -> (unit, 'd, 'e) t
val next_step : Base.Source_code_position.t -> 'o -> ('i, 'i, 'o) t
val thunk : (Base.unit -> ('a, 'i, 'o) t) -> ('a, 'i, 'o) t
val output_forever : 'o -> ('a, 'b, 'o) t
val for_ : Base.int -> Base.int -> (Base.int -> (Base.unit, 'i, 'o) t) -> (Base.unit, 'i, 'o) t
val delay : 'o -> num_steps:Base.int -> (Base.unit, 'a, 'o) t
val repeat : count:Base.int -> (Base.unit -> (Base.unit, 'i, 'o) t) -> (Base.unit, 'i, 'o) t
val wait : output:'o -> until:('i -> Base.bool) -> (Base.unit, 'i, 'o) t
module Event : sig ... end
val wait_for : 'a Event.t -> output:'o -> ('a, 'b, 'o) t
module Component_finished : sig ... end
val spawn : ?update_children_after_finish:Base.bool -> Base.Source_code_position.t -> start:('i_c -> (('a, 'o_c) Component_finished.t, 'i_c, 'o_c) t) -> input:'i_c Digital_components.Data.t -> output:'o_c Digital_components.Data.t -> child_input:(parent:'i -> 'i_c) -> include_child_output:(parent:'o -> child:'o_c -> 'o) -> (('a, 'o_c) Component_finished.t Event.t, 'i, 'o) t
val create_component : created_at:Base.Source_code_position.t -> update_children_after_finish:Base.bool -> start:('i -> (('a, 'o) Component_finished.t, 'i, 'o) t) -> input:'i Digital_components.Data.t -> output:'o Digital_components.Data.t -> ('i, 'o) Component.t * ('a, 'o) Component_finished.t Event.t
OCaml

Innovation. Community. Security.