template<typename T, size_t N, typename Alloc = detail::hashing::StackAllocator<T, N* sizeof(T)>>
slang::SmallSet class

A hash set container that allocates room for its first N elements on the stack.

Prefer this over a normal hash set for temporary stack variables and small sets where heap allocations can be avoided.