I'm reading on HAMT's, and looked at a reference implementation in unordered-containers, but noticed that they have their own implementation of arrays. Why is this? Is it for speed? Or is it for some custom API that they require?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
After looking at the code I can see a few optimizations. It does not have support for the "Ix" index translation that most Haskell Arrays have. It has specialized primitives such as So the answer is both speed and custom API. |
|||
|
|