我正在经历some Arrow tutorial,玩弄函数返回自己的新版本以试图保持某种状态。
新类型定义如下:
newtype Circuit a b = Circuit {runCircuit :: a -> (b, Circuit a b)}
因为我希望能够编写电路,所以我将它作为Category的一个实例。在组成两个电路时,结果也必须是电路。 (Circuit b c) . (Circuit a b)
提供Circuit a c
。
我写了这个:
import qualified Control.Category as Cat
instance Cat.Category Circuit where
(Circuit g) . (Circuit f) = Circuit $ \a -> let
(b, new_f) = f a
(c, new_g) = g b
new_circ = new_g . new_f
in (c, new_circ)
但它失败了:
Main.hs:70:64:
Couldn't match expected type `b0 -> c0'
with actual type `Circuit b c'
In the first argument of `(.)', namely `new_g'
In the expression: new_g . new_f
In an equation for `new_circ': new_circ = new_g . new_f
我在教程中查找了答案,这个答案引入了一个像这样的中间函数,编译得很好:
(.) = dot where
(Circuit g) `dot` (Circuit f) = Circuit $ \a -> let
(b, new_f) = f a
(c, new_g) = g b
new_circ = new_g `dot` new_f
in (c, new_circ)
我没有看到差异。
答案 0 :(得分:10)
.
中的new_g . new_f
来自前奏,而非来自Control.Category
。所以你需要使用Cat..
。
但使用Control.Category
的常用方法是:
import Prelude hiding (id, (.))
import Control.Category