gpt4 book ai didi

haskell - 为什么 `seq` 中没有 `accursedUnutterablePerformIO` ?

转载 作者:行者123 更新时间:2023-12-04 17:28:32 30 4
gpt4 key购买 nike

为什么要实现accursedUnutterablePerformIO(又名inlinePerformIO)

accursedUnutterablePerformIO :: IO a -> a
accursedUnutterablePerformIO (IO a) = case a realWorld# of (# _, r #) -> r

不是

accursedUnutterablePerformIO :: IO a -> a
accursedUnutterablePerformIO (IO a) = case a realWorld# of (# s, r #) -> s `seq` r

?

最佳答案

简单地说,realWorld# doesn't exist runtime ,因此我们无法对其进行任何计算,因此 seq 也不会执行任何操作。

关于haskell - 为什么 `seq` 中没有 `accursedUnutterablePerformIO` ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35474169/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com