gpt4 book ai didi

types - Elm 中的依赖类型

转载 作者:行者123 更新时间:2023-12-04 23:15:22 24 4
gpt4 key购买 nike

我想知道是否可以像在 Idris 中一样在 Elm 中进行某种相关的输入,如下所示:

isQuestion : String -> Type
isQuestion (sentence) with (endsWith "?" sentence)
| True = Question
| False = Statement

有没有一个库可以让我通过打字达到类似的效果?

最佳答案

你可以用联合类型做类似的事情。

type Sentence 
= Question String
| Statement String

isQuestion : String -> Sentence
isQuestion sentence =
case endsWith "?" sentence of
True -> Question sentence
False -> Statement sentence

关于types - Elm 中的依赖类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43505609/

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