F# – Speed test iter and map operations with array vs list
I have heard a few people argue that when it comes to performance critical code you should prefer arrays over other collections (such as F#’s lists) as it benefits from sequential reads (which is faster than seeks) and offers better memory locality. To test that theory somewhat, I wanted to see if there is any …
F# – Speed test iter and map operations with array vs list Read More »