有点符号:
absoluteError x y = abs (x-y)
以无点符号表示的一个不明确的例子:
absoluteError' = curry (abs . uncurry (-))
答案 0 :(得分:33)
以下是您可以通过小步骤自行推导出来的方法:
absoluteError x y = abs (x-y) = abs ((-) x y) = abs ( ((-) x) y)
= (abs . (-) x) y = ( (abs .) ((-) x) ) y =
= ( (abs .) . (-) ) x y
所以,eta-reduction,如果f x y = g x y
我们得出结论f = g
。
此外,暂时使用_B = (.)
,
(abs .) . (-) = _B (abs .) (-) = _B (_B abs) (-) = (_B . _B) abs (-)
= ((.) . (.)) abs (-)
答案 1 :(得分:25)
以下是一些方法。
absoluteError = (abs .) . (-)
absoluteError = ((.) . (.)) abs (-)
将胸部操作员命名为更具政治正确性的东西(以及哎呀,同时概括它)
(.:) = fmap fmap fmap
absoluteError = abs .: (-)
使用semantic editor combinators:
result :: (o1 -> o2) -> (i -> o1) -> (i -> o2)
result = (.)
absoluteError = (result . result) abs (-)
当然,这些都是同样的伎俩,只是名字不同。享受!