#Task 在 F# 函数签名中表示什么?

huangapple go评论52阅读模式
英文:

What does #Task<T> indicate in an F# function signature?

问题

在以下示例代码中:

namespace MyNamespace

open System.Threading.Tasks

module MyModule =

    let handler fn = task { return! fn () }

如果我悬停在 handler 函数上,其签名是:
val handler: fn: (unit -&gt; #Task&lt;&#39;b&gt;) -&gt; Task&lt;&#39;b&gt;

我之前没有见过 #Task 这个符号。在这种情况下,# 符号的含义是什么?

英文:

In the following sample code:

namespace MyNamespace

open System.Threading.Tasks

module MyModule =

    let handler fn = task { return! fn () }

If I hover the handler function the signature is:
val handler: fn: (unit -&gt; #Task&lt;&#39;b&gt;) -&gt; Task&lt;&#39;b&gt;

I haven't see the #Task before. What is the meaning of the # sign in this case?

答案1

得分: 2

#Task&lt;&#39;t&gt;&#39;a when &#39;a :&gt; Task&lt;&#39;t&gt; 的缩写 - 也就是说,任何 Task&lt;&#39;t&gt; 的子类型。

英文:

#Task&lt;&#39;t&gt; is short for &#39;a when &#39;a :&gt; Task&lt;&#39;t&gt; - that is, any subtype of Task&lt;&#39;t&gt;

huangapple
  • 本文由 发表于 2023年7月14日 03:06:51
  • 转载请务必保留本文链接:https://go.coder-hub.com/76682527.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定