The issue has already shown up before, and its reason answered by John Palmer : why is Seq.iter and Seq.map so much slower?
let ar = Array.zeroCreate<int> (64*1024*1024)
#time
//Real: 00:00:00.171, CPU: 00:00:00.171, GC gen0: 0, gen1: 0, gen2: 0
for i in 0 .. ar.Length - 1 do
ar.[i] <- ar.[i]*3
//Real: 00:00:00.327, CPU: 00:00:00.328, GC gen0: 0, gen1: 0, gen2: 0
ar |> Array.iteri(fun i _ -> ar.[i] <- ar.[i]*3)
//Real: 00:00:02.249, CPU: 00:00:02.250, GC gen0: 0, gen1: 0, gen2: 0
ar |> Seq.iteri(fun i _ -> ar.[i] <- ar.[i]*3)
I wonder if there are some kind of "inlining" or other generic mechanisms that could map, say a Sequence to (its last known?) concrete type to accelerate those behaviour. For instance here i have static guarantee that I will iterate over an array.
Do you know of satisfactory solution that exists in theory to this ? (what would be there fancy name ?)
Are there some langage that acknowledge and solve that issue nicely ?
Iterable c => c a -> (a -> ()) -> ()and you could then provide implementations forArray,Seqand any other collection type. You might find adriaanm.github.com/files/higher.pdf of interest. – Lee Nov 28 '12 at 13:03mapanditerfunctions that are optimal for all collections? My guess is if that were possible F# wouldn't have separate modules such asArray,List, andSeq. – Daniel Nov 28 '12 at 14:42Seq.Lengthat github.com/fsharp/fsharp/blob/master/src/fsharp/FSharp.Core/… line 1027. Although it doesn't bother formap/itertype functions – John Palmer Nov 28 '12 at 20:45