File-backed HashMap

This code is a slightly changed version of the HashMap from libcollections. For the original version see libcolletions.

The only difference is how memory is allocated. Specifically this versions allocator uses file-backed memory (effectively swap).

This is probably a bad idea, but could be useful in situations where you plan to allocate huge HashMaps, but do not want to depend on your systems swap. There might be several reasons for this:

Right now this only works on Linux 3.11 and higher, since it uses the O_TMPFILE flag.