Module Concrete.FunctionType
type t
=
{
argtypes : Expression.t list;
returns : Expression.t;
}
include Ppx_sexp_conv_lib.Sexpable.S with type FunctionType.t := t
val compare : t -> t -> int
val hash_fold_t : Ppx_hash_lib.Std.Hash.state -> t -> Ppx_hash_lib.Std.Hash.state
val hash : t -> Ppx_hash_lib.Std.Hash.hash_value
val make_t : ?argtypes:Expression.t list -> returns:Expression.t -> unit -> t