F# 中所有 lambda 参数都会自动内联吗
这篇来自 F# 的帖子新闻指出 F# 可以内联作为参数传递的函数。 总是这样吗?它会自动发生吗?
This post from F# News states that F# can inline a function passed as an argument.
Is it always the case? Does it happen automatically?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
答案是否定的。如果您有如下所示的函数,则 lambda 不会内联。
在以下代码中,使用
FSharpFunc<,>.InvokeFast()
调用 lambda,但是如果将
fold
函数标记为inline
,情况就会发生变化。不仅fold
函数被内联,lambda 也被内联。我使用 .NET Reflector 来确认这一点。The answer is no. If you have a function like the following, lambdas do not get inlined.
In the following code lambdas are invoked using
FSharpFunc<,>.InvokeFast()
But if you mark
fold
function asinline
situation changes. Not onlyfold
function gets inlined, but lambdas get inlined as well. I used .NET Reflector to confirm that.我不知道编译器对高阶函数做了哪些优化,但本文似乎指的是显式标记为
inline
的类型通用函数。这是为了支持静态解析类型参数。I don't know what optimizations the compiler makes to higher-order functions, but this article seems to be referring to type-generalized functions explicitly marked
inline
. This is to support statically resolved type parameters.