signature MLTON_MONO_VECTOR =
sig
type t
type elem
val fromPoly: elem vector -> t
val toPoly: t -> elem vector
end
-
type ttype of monomorphic vector
-
type elemtype of vector elements
-
fromPoly vtype cast a polymorphic vector to its monomorphic counterpart; in MLton, this is a constant-time operation
-
toPoly vtype cast a monomorphic vector to its polymorphic counterpart; in MLton, this is a constant-time operation