I\'m trying to learn F# by rewriting some C# algorithms I have into idiomatic F#.
One of the first functions I\'m trying to rewrite is a batchesOf where:
Hurray, we can use List.chunkBySize, Seq.chunkBySize and Array.chunkBySize in F# 4, as mentioned by Brad Collins and Scott Wlaschin.
List.chunkBySize
Seq.chunkBySize
Array.chunkBySize