Function StackHash.this

Due to the nature of RegionAllocator, you must specify on object creation the approximate number of elements your table will have. Too large a number will waste space and incur poor cache performance. Too low a number will make this struct perform like a linked list. Generally, if you're building a table from some other range, some fraction of the size of that range is a good guess.

this (
  size_t nElem,
  RegionAllocator alloc
);