We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0423878 commit 5942412Copy full SHA for 5942412
Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
name = "hashcow"
3
-version = "0.1.0"
+version = "0.2.0"
4
authors = ["Octavian Oncescu <octavonce@gmail.com>"]
5
edition = "2018"
6
repository = "https://github.com/purpleprotocol/hashcow"
src/lib.rs
@@ -57,6 +57,7 @@ pub enum Form {
57
Owned,
58
}
59
60
+/// A HashMap data-structure with copy-on-write keys and values.
61
pub struct CowHashMap<'a, K, V>
62
where K: Hash + ?Sized + PartialEq + Eq + ToOwned,
63
V: ToOwned + ?Sized,
0 commit comments