作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Elm checkboxes example一个Action
被传递到tag
checkbox
的参数函数(第 51-53 行)。
我不明白这个参数的类型签名是 (Bool -> Action)
以及第 69 行如何使用函数组合运算符 <<
改造Bool
来自targetChecked
进入完整Action
类型。
编辑:
这个问题可以简化为“为什么以下内容有效?”
type Action = Edit Int
do : (Int -> Action) -> Action
do tag = tag(123)
result : Action
result = do(Edit)
最佳答案
当您定义联合类型时,联合类型的每个标记都将成为已定义的值。所以当你定义:
type Action = Tick | NoOp
这还定义了:
Tick : Action
NoOp : Action
当union标签有参数时,它就变成了一个“构造函数”,一个函数:
type Action = Edit Int
Edit : Int -> Action
(这些标记也用作可以与 case
-of
结构进行匹配的模式。另请参阅 documentation on the website 。)
关于functional-programming - `targetChecked` 中的 Bool 如何变成 `Action` ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33754905/
在 Elm checkboxes example一个Action被传递到tag checkbox 的参数函数(第 51-53 行)。 我不明白这个参数的类型签名是 (Bool -> Action)以及
我是一名优秀的程序员,十分优秀!