Signal 是否已重命名或从 Elm v0.17 中删除?

Did Signal get renamed or removed from Elm v0.17?

我正在学习 http://www.elm-tutorial.org/020_signals/introduction.html elm 的教程。

当我尝试执行信号示例时。我收到以下错误。

Exception : 

Cannot find variable `Signal.map`.

12|   Signal.map view Mouse.x
  ^^^^^^^^^^
The qualifier `Signal` is not in scope. 

我正在使用 Elm:0.17 和核心 4.0.0

核心包中找不到Signal模块

是的,Signal 与许多其他内容(邮箱、地址等)一起被删除,以支持转向订阅(Sub) and commands (Cmd), rendering much of the documentation out there obsolete. See the 0.17 announcement for more information: http://elm-lang.org/blog/farewell-to-frp

您可以在这里找到升级计划:https://github.com/elm-lang/elm-platform/blob/master/upgrade-docs/0.17.md