We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 900d20d commit 8a19b32Copy full SHA for 8a19b32
libcxx/include/__hash_table
@@ -54,6 +54,10 @@
54
_LIBCPP_PUSH_MACROS
55
#include <__undef_macros>
56
57
+// __hash_table implements a hash table that is built from a forward list. The __bucket_list_ points into that forward
58
+// list. Specifically, the pointers in the __bucket_list_ point to the element before the start of the bucket. This
59
+// makes it possible to insert elements into a bucket without having to iterate through the previous bucket.
60
+
61
_LIBCPP_BEGIN_NAMESPACE_STD
62
63
template <class _Key, class _Tp>
0 commit comments