Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Dolmen_model.FunSourcetype value_function = | Lambda of {ty_params : E.Ty.Var.t list;term_params : E.Term.Var.t list;body : E.Term.t;}| Lazy of {arity : int;cst : E.Term.Const.t;eval_lazy : Env.t -> (Env.t -> E.term -> Value.t) -> E.term list -> Value.t;}| Poly of {arity : int;cst : E.Term.Const.t;eval_p : E.Ty.t list -> Value.t list -> Value.t;}| Ad_hoc of {arity : int;ty_arity : int;cst : E.Term.Const.t;eval_l : (E.Ty.t list * (E.Ty.subst -> value_function)) list;}val return :
('a, 'b, 'c, 'd, 'd, 'a) CamlinternalFormatBasics.format6 ->
Format.formatter ->
unit ->
unitval ad_hoc :
cst:E.Term.Const.t ->
arity:int ->
ty_arity:int ->
(E.Ty.t list * (E.Ty.subst -> value_function)) list ->
value_functionval fun_lazy :
cst:E.Term.Const.t ->
(Env.t -> (Env.t -> E.term -> Value.t) -> E.term list -> Value.t) ->
value_functionval poly :
arity:int ->
cst:E.Term.Const.t ->
(E.Ty.t list -> Value.t list -> Value.t) ->
value_functionval fun_3 :
cst:E.Term.Const.t ->
(Value.t -> Value.t -> Value.t -> Value.t) ->
value_functionval fun_4 :
cst:E.Term.Const.t ->
(Value.t -> Value.t -> Value.t -> Value.t -> Value.t) ->
value_functionval reduce_ty :
eval:'a ->
cst:E.Term.Const.t ->
'b ->
E.Ty.t list ->
(E.Ty.t list * (E.Ty.subst -> 'c)) list ->
'cval add_ad_hoc_instance :
Dolmen_model__Model.t ->
cst:Dolmen.Std.Expr.Term.Const.t ->
ty_args:E.Ty.t list ->
term_params:E.Term.Var.t list ->
body:E.Term.t ->
Dolmen_model__Model.t