template IntrusiveHashMap::IntrusiveHashMap()

in code/include/swoc/IntrusiveHashMap.h [384:388]


template <typename H> IntrusiveHashMap<H>::IntrusiveHashMap(size_t n) {
  if (n) {
    _table.resize(*std::lower_bound(PRIME.begin(), PRIME.end(), n));
  }
}