merlin-lib.ocaml_typing
Scalar.Maybe_naked
merlin-lib.analysis
merlin-lib.commands
merlin-lib.config
merlin-lib.dot_protocol
merlin-lib.extend
merlin-lib.index_format
merlin-lib.kernel
merlin-lib.ocaml_merlin_specific
merlin-lib.ocaml_parsing
merlin-lib.ocaml_preprocess
merlin-lib.ocaml_utils
merlin-lib.os_ipc
merlin-lib.query_commands
merlin-lib.query_protocol
merlin-lib.sherlodoc
merlin-lib.utils
ppxlib
yojson
type ('a, 'b) t =
| Value of 'a
| Naked of 'b
"Naked" means either untagged or unboxed, depending whether the type fits in 31 bits or not. e.g., Naked Int8 is untagged, but Naked (Int32 Any_locality_mode) would be unboxed
Naked Int8
Naked (Int32 Any_locality_mode)