Confused with F# List.nth's argument order
Posted
by Kev
on Stack Overflow
See other posts from Stack Overflow
or by Kev
Published on 2010-06-03T19:10:08Z
Indexed on
2010/06/03
19:14 UTC
Read the original article
Hit count: 183
F#
List.nth is 'T list -> int -> 'T, rather than the standard int -> 'T list -> 'T like Seq.nth.
This makes pipeline somewhat awkward.
Is there something behind the scene?
I don't know why.
© Stack Overflow or respective owner