Liquidsoap_lang.Type
type custom = Type_base.custom
type custom_handler = Type_base.custom_handler = {
typ : custom;
custom_name : string;
copy_with : (t -> t) -> custom -> custom;
occur_check : (t -> unit) -> custom -> unit;
filter_vars : (Type_base.var list -> t -> Type_base.var list) ->
Type_base.var list ->
custom ->
Type_base.var list;
repr : (Type_base.var list -> t -> Type_base.constr Type_base.R.t) ->
Type_base.var list ->
custom ->
Type_base.constr Type_base.R.t;
subtype : (t -> t -> unit) -> custom -> custom -> unit;
sup : (t -> t -> t) -> custom -> custom -> custom;
to_string : custom -> string;
}
type descr = Type_base.descr =
| String
| Int
| Float
| Bool
| Never
| Custom of custom_handler
| Constr of Type_base.constructed
| Getter of t
a getter: something that is either a t or () -> t
*)| List of Type_base.repr_t
| Tuple of t list
| Nullable of t
something that is either t or null
*)| Meth of Type_base.meth * t
t with a method added
*)| Arrow of t Type_base.argument list * t
a function
*)| Var of var_t
a type variable
*)type constr = Type_base.constr = {
constr_descr : string;
univ_descr : string option;
satisfied : subtype:(t -> t -> unit) -> satisfies:(t -> unit) -> t -> unit;
}
module Constraints = Type_base.Constraints
type meth = Type_base.meth = {
meth : string;
optional : bool;
scheme : scheme;
doc : string;
json_name : string option;
}
val string_of_constr : constr -> string
val record_constr : constr
val num_constr : constr
val ord_constr : constr
module R = Type_base.R
exception Exists of Pos.Option.t * string
val unit : descr
module Var = Type_base.Var
module Vars = Type_base.Vars
module Fresh : sig ... end
Generate fresh types from existing types.
val has_meth : t -> string -> bool
val mk_invariant : t -> unit
val string_of_scheme : scheme -> string
val is_fun : t -> bool
val is_source : t -> bool
module Custom = Type_custom
val register_type : string -> (unit -> t) -> unit
val find_opt_typ : string -> (unit -> t) option