Gist.ExprType expressions for gist processors.
This is typegist's view on the OCaml type expression language.
type 'a t = | Scalar : 'a Scalar.t -> 'a t| Tuple : 't Tuple.t -> 't t| Record : 'r Record.t -> 'r t| Variant_like : 'v Variant_like.t -> 'v t| Array_like : ('elt, 'array) Array_like.t -> 'array t| Map_like : ('k, 'v, 'map) Map_like.t -> 'map t| Cell_like : 'a Cell_like.t -> 'a t| Func : ('a, 'b) Func.t -> ('a -> 'b) t| Abstract : 'a Abstract.t -> 'a t| Map : ('a, 'b) Map.t -> 'a t| Rec : 'a gist lazy_t -> 'a tThe type for type expressions.
val pp : Stdlib.Format.formatter -> 'a t -> unitpp formats a valid OCaml type expression for the type gist expression. Named typed gists found in the expression are not expanded to their definition.