作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
[1..5] -- NAMI-6ren">
根据大部分 documentation in Elm我应该能够使用 [1..5]
获取从 1 到 5 的数字列表。但是当我在 elm-repl
中尝试时,我遇到错误:
> [1..5]
-- NAMING ERROR ---------------------------------------------- repl-temp-000.elm
Cannot find variable `..`
3| [1..5]
^^^^
我也尝试导入 List
模块:
> import List exposing (..)
> [1..5]
-- NAMING ERROR ---------------------------------------------- repl-temp-000.elm
Cannot find variable `..`
4| [1..5]
^^^^
我知道我可以使用 List
's range
function ,但我很想知道我在使用更漂亮的 ..
语法时做错了什么,或者是否在没有更新文档的情况下删除了它?
最佳答案
看起来该文档刚刚过时。 ..
范围语法在 v0.18 中被删除,以支持您提到的 List.range
功能。 Here are the release notes .
The
[1..5]
syntax was removed in favor ofList.range
. The syntax was kind of nice, but not very discoverable or commonly used. Whenever I used[1..5]
in a talk, someone quite experienced would comment that they wanted something like that but could not find it in the standard libraries!
关于list - 错误 "Cannot find variable `。 .`"尝试使用范围运算符时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41754040/
我是一名优秀的程序员,十分优秀!