docs: Bucket
This commit is contained in:
parent
532e52cc7f
commit
bc58ca5af8
@ -5,6 +5,12 @@
|
|||||||
|
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
|
|
||||||
|
/** A Bucket contains a partial WordRefList, split-up and (hash-)mapped by their
|
||||||
|
* first characters.
|
||||||
|
*
|
||||||
|
* It's meant to be read and written by a single thread without the need for
|
||||||
|
* synchronization.
|
||||||
|
*/
|
||||||
class Bucket {
|
class Bucket {
|
||||||
private:
|
private:
|
||||||
std::unordered_map<char, WordRefList> directory_;
|
std::unordered_map<char, WordRefList> directory_;
|
||||||
|
Reference in New Issue
Block a user