函数类型与类型变量的等价性

发布于 2024-11-08 06:46:49 字数 280 浏览 0 评论 0原文

我需要一个具有以下属性的函数。

(c->d)->(a->b->c)->a->b->d

我的函数:

funktionD = (.) 。 (.)

但是 :t funktionD

funktionD::(a -> b) -> (c→d→a)→ c-> d->

这相等吗?

I need a function with following attributes.

(c->d)->(a->b->c)->a->b->d

my function:

funktionD = (.) . (.)

but :t funktionD

funktionD :: (a -> b) -> (c -> d -> a) -> c -> d -> b

ist this equal?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

掀纱窥君容 2024-11-15 06:46:49

这是。类型变量——用小写写——就是变量。您可以随意重命名它们,只要相同变量的模式保持不变即可。

此外,出于本质上相同的原因,对于您给出的类型签名,该类型只有一个可能的函数(即排除崩溃或进入无限循环的函数)。值得思考的事情!

It is. Type variables--written in lowercase--are just that, variables. You can rename them all you like as long as the pattern of which are the same variable stays the same.

Furthermore, for essentially the same reason, for the type signature you gave there is only one possible function of that type (excluding functions that crash or go into infinite loops, that is). Something to think about!

山人契 2024-11-15 06:46:49

我认为是的。将 a 替换为 c(反之亦然),然后将 b 替换为 d(反之亦然),它们是相同的。

I think it is. Replace a with c (and vice versa), then replace b with d (and vice versa) and they are the same.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文