了解 syb 样板消除

发布于 2024-08-28 00:24:51 字数 530 浏览 6 评论 0原文

http:// 中给出的示例中web.archive.org/web/20080622204226/http://www.cs.vu.nl/boilerplate/

-- Increase salary by percentage
increase :: Float -> Company -> Company
increase k = everywhere (mkT (incS k))

-- "interesting" code for increase
incS :: Float -> Salary -> Salary
incS k (S s) = S (s * (1+k))

为什么增加函数编译时没有绑定其类型签名中提到的第一家公司的任何内容。

是不是类似于分配给部分函数?为什么要这样做呢?

In the example given in http://web.archive.org/web/20080622204226/http://www.cs.vu.nl/boilerplate/

-- Increase salary by percentage
increase :: Float -> Company -> Company
increase k = everywhere (mkT (incS k))

-- "interesting" code for increase
incS :: Float -> Salary -> Salary
incS k (S s) = S (s * (1+k))

how come increase function compiles without binding anything for the first Company mentioned in its type signature.

Is it something like assigning to a partial function? Why is it done like that?

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

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

发布评论

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

评论(1

浊酒尽余欢 2024-09-04 00:24:51

是的,这与部分应用是相同的概念。该行是更短(但可以说不太清楚)的等价物,

increase k c = everywhere (mkT (incS k)) c

因为 everywhere 接受两个参数,但只给出一个参数,everywhere (mkT (incS k)) 的类型是公司 ->公司。因为这正是 increase k 对每个 Float k 返回的结果,所以 increase 的结果类型是 Float ->公司->公司

Yes, it's the same concept as partial application. The line is a shorter (but arguably less clear) equivalent of

increase k c = everywhere (mkT (incS k)) c

As everywhere takes two parameters but is only given one, the type of everywhere (mkT (incS k)) is Company -> Company. Because this is exactly what increase k returns for each Float k, the resulting type of increase is Float -> Company -> Company.

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