Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ use hashbrown::HashMap;
let mut map = HashMap::new();
map.insert(1, "one");
```

## Flags
This crate has the following Cargo features:

Expand Down
2 changes: 1 addition & 1 deletion src/control/group/generic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ impl Group {
/// - This never happens for `EMPTY` and `DELETED`, only full entries.
/// - The check for key equality will catch these.
/// - This only happens if there is at least 1 true match.
/// - The chance of this happening is very low (< 1% chance per byte).
/// - The chance of this happening is very low (< 1% chance per tag).
#[inline]
pub(crate) fn match_tag(self, tag: Tag) -> BitMask {
// This algorithm is derived from
Expand Down