F# TupleGet ActivePattern 用法

发布于 2024-12-08 13:34:59 字数 104 浏览 1 评论 0原文

我想知道如何在使用引号时从 F# 中的元组表达式中提取值。例如,如果我有一个引用 <@ fst(sample_tuple) @>,如何解构元组引用以获取值?

I would like to know how to extract values out of a tuple Expression in F# when using quotations. If for example, I have a quotation <@ fst(sample_tuple) @>, how do I deconstruct the tuple quotation to get out the values?

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

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

发布评论

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

评论(2

╰◇生如夏花灿烂 2024-12-15 13:34:59

unquote 库 [1] 包含一个 eval 函数,据报道该函数比 FSharp.PowerPack 更快。

[1] http://code.google.com/p/unquote

The unquote library [1] contains an eval function that is reported as being faster than the FSharp.PowerPack.

[1] http://code.google.com/p/unquote

雨巷深深 2024-12-15 13:34:59

从向 FSI 发送此类报价的输出中可以看出,您的报价不使用 TupleGet,而是使用对通用 Fst< 的 Call /code> 方法,因此您无法使用 TupleGet 对其进行解构。

<@ 这样的引用将sample_tuple 与 | 匹配一个,_-> @> 将使用 TupleGet 提取第一个元素。

As you can see from the output of sending a quotation like that to FSI, your quotation doesn't use TupleGet, it uses a Call to the generic Fst method, so you can't destructure it using TupleGet.

A quotation like <@ match sample_tuple with | a, _ -> a @> would use TupleGet to extract the first element.

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