粗略地说,您想要的是临时多态性或重载。在 OCaml 中是不可能的,更重要的是,我们不想在 OCaml 中拥有它。
如果你想要一个返回多种类型的函数,那么你必须定义一个新的“sum”类型来表达这些类型:在这里,你想要返回一个布尔值或元组,所以一个新类型意味着“一个布尔值”或元组”。在 OCaml 中,我们定义了这样一个类型:
type ('a, 'b) t = Bool of bool
| Tuple of 'a * 'b
使用这种新的 sum 类型,您的代码应如下所示:
type ('a, 'b) t =
| Bool of bool
| Tuple of 'a * 'b
let match_element (a, b) =
if a = b then Bool true
else if dont_care a || dont_care b then Bool true
else if is_variable a then Tuple (a, b)
else if is_variable b then Tuple (b, a)
else Bool false;;
此处带有两个参数('a 和 'b)的类型 t 对于您的目的来说可能过于笼统,但我无法从上下文中猜出您想要做什么。可能有更好的类型定义适合您的意图,例如:
type element = ... (* Not clear what it is from the context *)
type t =
| I_do_not_care (* Bool true in the above definition *)
| I_do_care_something (* Bool false in the above definition *)
| Variable_and_something of element * element (* was Tuple *)