我可以在数据构造函数中使用函数吗?像:
data Something = (a->b) Something1 Something2
答案 0 :(得分:12)
是的,你当然可以。唯一重要的是你(总是)需要一个数据构造函数的名称:
data <name> <para0> <param1> ... = <constructor> <arg0> <arg1> <arg2> ...
因此,对于我们的示例,它变为
data Something a b = Constructor (a -> b) Something1 Something2
答案 1 :(得分:5)
在构造函数的命名中应遵循一些规则。
但是你可以在数据定义中使用函数,比如
data Something a b = Something (a->b) a b