nfx-containers 0.6.0
Modern C++20 header-only library providing high-performance hash containers with Robin Hood and perfect hashing
Loading...
Searching...
No Matches
StackHashSet.h File Reference

Hash set with small buffer optimization (SBO) and heap fallback. More...

#include "nfx/containers/FastHashSet.h"
#include <array>
#include <cstddef>
#include <functional>
#include <initializer_list>
#include <memory>
#include <optional>
#include <utility>
#include "nfx/detail/containers/StackHashSet.inl"
Include dependency graph for StackHashSet.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  nfx::containers::StackHashSet< TKey, N, KeyEqual >
 Hash set with small buffer optimization for stack-allocated storage. More...

Detailed Description

Hash set with small buffer optimization (SBO) and heap fallback.

Stack-allocated storage for small sets (≤N elements) with linear search, automatic transition to FastHashSet for larger datasets

Definition in file StackHashSet.h.