-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: cleanup dict encoding logic (#1231)
fixes #965 --------- Co-authored-by: Will Manning <[email protected]>
- Loading branch information
1 parent
1880c2e
commit 0195c02
Showing
6 changed files
with
128 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
pub type DefaultHashBuilder = hashbrown::DefaultHashBuilder; | ||
pub type HashMap<K, V> = hashbrown::HashMap<K, V>; | ||
pub type Entry<'a, K, V, S> = hashbrown::hash_map::Entry<'a, K, V, S>; | ||
pub type IntoIter<K, V> = hashbrown::hash_map::IntoIter<K, V>; | ||
pub type HashTable<T> = hashbrown::HashTable<T>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.