package bonsai

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type 'model model_info = {
  1. default : 'model;
  2. equal : 'model -> 'model -> bool;
  3. type_id : 'model Core_kernel.Type_equal.Id.t;
  4. sexp_of : 'model -> Core_kernel.Sexp.t;
  5. of_sexp : Core_kernel.Sexp.t -> 'model;
}
val unit_model_info : unit model_info
val both_model_infos : 'a model_info -> 'b model_info -> ('a * 'b) model_info
type ('input, 'result, 'incr, 'event) t =
  1. | T : {
    1. unpacked : ('input, 'model, 'action, 'result, 'incr, 'event) unpacked;
    2. action_type_id : 'action Core_kernel.Type_equal.Id.t;
    3. model : 'model model_info;
    } -> ('input, 'result, 'incr, 'event) t