Barretenberg
The ZK-SNARK library at the core of Aztec
Loading...
Searching...
No Matches
set.hpp
Go to the documentation of this file.
1#pragma once
2
4
5namespace bb::avm2 {
6
7// We use an alternative single-header implementation that is faster and more memory efficient.
8// https://github.com/martinus/unordered_dense
9// https://martin.ankerl.com/2019/04/01/hashmap-benchmarks-01-overview/
10// https://github.com/martinus/robin-hood-hashing is archived and recommends ankerl::unordered_dense.
11template <class Key> using unordered_flat_set = ::ankerl::unordered_dense::set<Key>;
12
13} // namespace bb::avm2
::ankerl::unordered_dense::set< Key > unordered_flat_set
Definition set.hpp:11