不在范围“foldrl”内;

发布于 2024-11-07 23:26:29 字数 395 浏览 0 评论 0原文

尝试定义函数

maximum' :: (Ord a) => [a] -> a
maximum' = foldrl (\x acc -> if x > acc then x else acc)

ghci 时报告错误:

Not in scope: `foldrl'
Failed, modules loaded: none.
Ubuntu 10.04
$ ghci --version
The Glorious Glasgow Haskell Compilation System, version 6.12.1

Why isn't the function foldrl in range?

When trying to define the function

maximum' :: (Ord a) => [a] -> a
maximum' = foldrl (\x acc -> if x > acc then x else acc)

ghci reports the error:

Not in scope: `foldrl'
Failed, modules loaded: none.
Ubuntu 10.04
$ ghci --version
The Glorious Glasgow Haskell Compilation System, version 6.12.1

Why isn't the function foldrl in scope?

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

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

发布评论

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

评论(2

2024-11-14 23:26:29

哦哦,你想要 foldr1 而不是 foldrl,最后一个字符是 1,而不是 l

Ohhh, you want foldr1 not foldrl, the last character is a 1, not an l

妄司 2024-11-14 23:26:29

我认为你的意思是 foldr1 (最后一个字符是数字 1),而不是 foldrl

I think you mean foldr1 (last character is the digit 1), not foldrl.

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