gpt4 book ai didi

haskell - 如何在haskell中编写恒等函数

转载 作者:行者123 更新时间:2023-12-02 16:35:28 25 4
gpt4 key购买 nike

我有一个类型如下的函数:

functionX :: [String] -> ([Integer] -> [Integer])

它有点像映射函数,将特定的字符串映射到具有这样类型的函数。因为我需要处理调用functionX[],我认为这个调用应该返回一个叫做identity function的东西,或者其他什么,我该怎么写呢?

最佳答案

id 在 haskell 中被预定义为恒等函数。它的类型为 id::a -> a

如果您愿意,您可以轻松定义自己的:

myIdentityFunction :: a -> a
myIdentityFunction a = a

关于haskell - 如何在haskell中编写恒等函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3170318/

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