gpt4 book ai didi

f# - 如何将混合 'T and seq<' T> 的输入展平为单个 seq<'T>

转载 作者:行者123 更新时间:2023-12-02 21:42:17 25 4
gpt4 key购买 nike

我需要一个可以接受任意数量参数的函数,每个参数可以是 'T 类型之一或seq<'T> 。在函数内部,我需要将其作为单个 seq<'T> 进行处理所有输入均按照提供的顺序组合。

显而易见的方法是:

module Test =
let flatten ([<ParamArray>] args) =
let flat = seq {
for a in args do
match box a with
| :? int as x -> yield x
| :? seq<int> as sq ->
for s in sq do
yield s
| _ -> failwith "wrong input type"
}
flat // this should be seq<int>

但即使是最简单的情况,我也无法使其在 FSI 中工作

let fl = Test.flatten 1;;
----------------------^

...: error FS0001: The type 'int' is not compatible with the type 'seq<'a>'

这里出了什么问题以及如何让它按需要工作?也许这可以通过某种完全不同的方式来完成?

最佳答案

来自msdn :

In F#, parameter arrays can only be defined in methods. They cannot be used in standalone functions or functions that are defined in modules.

因此,不要使用模块,而是使用静态方法声明类型。

open System
type Test() =
static member flatten ([<ParamArray>] args: obj[]) =
let flat = seq {
for a in args do
match box a with
| :? int as x -> yield x
| :? seq<int> as sq ->
for s in sq do
yield s
| _ -> failwith "wrong input type"
}
flat

如果您有其他 let 绑定(bind),您仍然可以声明具有相同名称的模块。另请注意,在比赛的第二个后卫中,您可以通过执行以下操作来避免 for 循环:

| :? seq<int> as sq -> yield! sq 

并且不需要

关于f# - 如何将混合 'T and seq<' T> 的输入展平为单个 seq<'T>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20166011/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com