gpt4 book ai didi

.net-core - `List.map` 在哪里定义的?

转载 作者:行者123 更新时间:2023-12-05 02:33:42 24 4
gpt4 key购买 nike

我一直在寻找 List.map 在 F# 中的实现。 code in list.fs in dotnet/fsharp on GitHub委托(delegate)给一个神秘的 Microsoft.FSharp.Primitives.Basics.List.map 函数。

那个函数的来源在哪里?我在 repo 中找不到任何这样的目录路径。

最佳答案

我认为this是吗:

    let map mapping x =
match x with
| [] -> []
| [h] -> [mapping h]
| h :: t ->
let cons = freshConsNoTail (mapping h)
mapToFreshConsTail cons mapping t
cons

关于.net-core - `List.map` 在哪里定义的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70897933/

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