"***"怎么理解?

发布于 2022-08-26 05:23:36 字数 815 浏览 18 评论 5

import Control.Arrow ((***))

splitVerticallyBy,splitHorizontallyBy :: RealFrac r => r -> Rectangle -> (Rectangle, Rectangle)
splitVerticallyBy f = (mirrorRect *** mirrorRect) . splitHorizontallyBy f . mirrorRect

mirrorRect :: Rectangle -> Rectangle
mirrorRect (Rectangle rx ry rw rh) = (Rectangle ry rx rh rw)

Prelude> :m Control.Arrow
Prelude Control.Arrow> :i ***
class (Control.Category.Category a) => Arrow a where
  ...
  (***) :: a b c -> a b' c' -> a (b, b') (c, c')
  ...
          -- Defined in Control.Arrow
infixr 3 ***

不明白(mirrorRect *** mirrorRect) . splitHorizontallyBy f . mirrorRect 中, "***"的用法!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

轮廓§ 2022-08-27 04:44:39

原帖由 MMMIX 于 2009-6-15 14:48 发表

看不懂 (***) 的类型?对比看看下面两个:

class Arrow a where
    ...
    (***) :: a b c -> a b' c' -> a (b, b') (c, c')
    ...

instance Arrow (->) where
    ...

对于 instance Arr ...

比较清楚了,谢谢!

雨的味道风的声音 2022-08-27 04:43:03

原帖由 sw2wolf 于 2009-6-15 12:58 发表
谢谢!  但我不明白如下定义中, 能解释下吗?

(***) :: a b c -> a b' c' -> a (b, b') (c, c')

看不懂 (***) 的类型?对比看看下面两个:

class Arrow a where
    ...
    (***) :: a b c -> a b' c' -> a (b, b') (c, c')
    ...

instance Arrow (->) where
    ...

对于 instance Arrow (->), (***) 类型中的 a 就是 (->), 这是一个 type constructor, 则有
(***) :: (b -> c) -> (b' -> c') -> ((b, b') -> (c, c'))

再对比 (***) 的应用,(mirrorRect *** mirrorRect), 其中

mirrorRect :: Rectangle -> Rectangle

也可写成

mirrorRect :: (->) Rectangle Rectangle

也即这里应该选用 (->) 的 Arrow instance,有

a = (->)
b, c, b', c' = Rectangle

那么
mirrorRect *** mirrorRect :: (Rectangle, Rectangle) -> (Rectangle, Rectangle)

这下知道如何利用 type inference 来理解 (***) 的类型了吧?

[ 本帖最后由 MMMIX 于 2009-6-15 14:50 编辑 ]

忱杏 2022-08-27 04:34:10

*** 的意思是说,把一个复合流中的两个子流进行分流,然后分别应用到两个箭头上去,其结果仍然是一个复合流。

一梦浮鱼 2022-08-27 04:12:08

谢谢!  但我不明白如下定义中, 能解释下吗?

(***) :: a b c -> a b' c' -> a (b, b') (c, c')

迷离° 2022-08-26 18:58:54

原帖由 sw2wolf 于 2009-6-15 08:50 发表
splitVerticallyBy,splitHorizontallyBy :: RealFrac r => r -> Rectangle -> (Rectangle, Rectangle)
splitVerticallyBy f = (mirrorRect *** mirrorRect) . splitHorizontallyBy f . mirrorRect

这里用的是 (->) 的 Arrow instance,因此有
mirrorRect *** mirrorRect :: (Rectangle, Rectangle) -> (Rectangle, Rectangle)
(mirrorRect *** mirrorRect) (r1, r2) = (mirrorRect r1, mirrorRect r2)

详见 Control.Arror 源码中的 instance Arrow (->)。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文