← Back to context

Comment by john01dav

10 hours ago

Do you rewrite fundamental data structures over and over, like maps, of just not use them?

Often yes, specialized to the specific thing I am doing. Eg: for a JIT translator one often needs a combo hash-map + LRU, where each node is a member of both structures.