Caml Light 手册在第 37 页提到了可变变体类型:
type foo = A of mutable int
| B of mutable int * int
但是这个扩展似乎不是 OCaml 的一部分,或者是吗?在 OCaml 中定义可变变体类型的唯一方法是使用可变记录或数组,我对吗?
(* with records *)
type a = {mutable a: int}
and b = {mutable b1: int; mutable b2: int}
and foo = A of a
| B of b
(* with arrays *)
type foo = A of int array
| B of int array
编辑:感谢@gasche 建议使用 refs,这是可变记录的快捷方式:
type foo = A of int ref
| B of int ref * int ref