dropWhile -6ren">
gpt4 book ai didi

haskell - 了解 `dropWhile`

转载 作者:行者123 更新时间:2023-12-02 18:57:32 25 4
gpt4 key购买 nike

在示例中,我观察到 dropWhile 的行为:

*Main> dropWhile (/= 'X') "AXF"
"XF"

但是,我很困惑为什么 "AX" 不返回:

*Main> dropWhile (== 'X') "AXF"
"AXF"

为什么在此测试中返回“AXF”

最佳答案

dropWhile 在条件为 true 时删除元素,然后在条件为 false 时停止(返回剩余元素)。

使用 dropWhile (== 'X') "AXF" 条件立即为 false(因为 'A' == 'X' 为 false),所以它不会删除任何内容并返回整个列表。

关于haskell - 了解 `dropWhile`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25835521/

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