merlin-lib.sherlodoc
Merlin_sherlodoc.Type_parsed
A parsed type expression representation, where type variables are expressed as strings and must be normalized in a Type_expr.t.
Type_expr.t
merlin-lib.analysis
merlin-lib.commands
merlin-lib.config
merlin-lib.dot_protocol
merlin-lib.extend
merlin-lib.kernel
merlin-lib.ocaml_compression
merlin-lib.ocaml_merlin_specific
merlin-lib.ocaml_parsing
merlin-lib.ocaml_preprocess
merlin-lib.ocaml_typing
merlin-lib.ocaml_utils
merlin-lib.os_ipc
merlin-lib.query_commands
merlin-lib.query_protocol
merlin-lib.utils
type t =
| Arrow of t * t
| Tycon of string * t list
| Tuple of t list
| Tyvar of string
| Wildcard
| Unhandled
val tuple : t list -> t
Create a tuple using a rather naive heuristic:
unit