为什么 map 不强制严格,而 zipWith 却强制严格?
zipWith 函数有两个严格版本:
1)真正严格,列表 l1 和 l2 的元素被评估,因此它们的 thunk 不会占用所有堆栈空间(Don Stewart 代码)
zipWith' f l1 l2 = [ f e1 e2 | (e1, e2) <- zipWith k l1 l2 ]
where
k x y = x `seq` y `seq` (x,y)
2)不是真正严格,尝试通过其他方式强制评估。
zipWith'' f l1 l2 = [ f e1 e2 | (e1, e2) <- zip (map (\x -> x `seq` x) l1) (map (\x -> x `seq` x) l2) ]
问题是:为什么第二个示例中使用 map 的等效代码不会使函数也变得严格?
There are two strict versions of zipWith function:
1) Really strict, elements of lists l1 and l2 get evaluated so their thunks do not eat all stack space (Don Stewart code)
zipWith' f l1 l2 = [ f e1 e2 | (e1, e2) <- zipWith k l1 l2 ]
where
k x y = x `seq` y `seq` (x,y)
2) Not really strict, attempt to force evaluation by other way.
zipWith'' f l1 l2 = [ f e1 e2 | (e1, e2) <- zip (map (\x -> x `seq` x) l1) (map (\x -> x `seq` x) l2) ]
The question is: why the equivalent code from the 2nd example using map does not make the function also strict?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个常见的错误,使用
Which 完全等同于
Neil Mitchell 中提供了很好的解释发布于“不严格”。
It's a common mistake to use
Which is exactly equivalent to
An excellent explanation is available in Neil Mitchell's post on Bad Strictness.
可以使用此函数来强制列表,而不是同义反复的
map
:那么严格的
zipWith
是Instead of tautological
map
, one can use this function to force the list:Then the strict
zipWith
is