我注意到 of 的签名nth
与Seq
索引List
( int
) 的位置不同。
在尝试以下操作后,我才注意到它:
[1..10] |> List.nth 2 // error
2 |> List.nth [1..10] // working, but looks awkward for me
List.nth [1..10] 2 // I suspect this is the expected use
seq { 1..10 } |> Seq.nth 2 // working
我知道最初无法确定其中的项目数量,Seq
因为它的计算方式与 的不同List
,我只是不知道它们的差异将如何影响 . 的签名List.nth
。