gpt4 book ai didi

elm - 将 bool 值转换为字符串

转载 作者:行者123 更新时间:2023-12-01 21:26:11 25 4
gpt4 key购买 nike

我正在尝试使用 Elm 19 在我的屏幕上打印一个 bool 结果。

result =
add 1 2 |> (\a -> modBy 2 a == 0)

main =
Html.text (String.fromBool result)

我知道当等式输出 Int 时 fromInt 有效,但我不知道如何将 bool 转换为 String 以解决我当前的问题。

最佳答案

Bool 转换为 String 与用它做任何其他事情没有什么不同。它只有两个值,TrueFalse,它甚至有自己的分支结构,if 表达式。因此,它非常简单:

stringFromBool : Bool -> String
stringFromBool value =
if value then
"True"

else
"False"

然后用这个函数替换代码中的 String.fromBool:

main =
Html.text (stringFromBool result)

关于elm - 将 bool 值转换为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63162388/

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