From 14447a377f99f21a33220063379d94aaf2ace691 Mon Sep 17 00:00:00 2001 From: mousecrusher2 <95418154+mousecrusher2@users.noreply.github.com> Date: Tue, 10 Sep 2024 10:24:38 +0900 Subject: [PATCH] Add README --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..39995e4 --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# neomultiset + +multiset implementation for rust + +## Difference of other multiset implementations + +`hashbag` crate is a hashmap with value as count. So `HashBag` can't store owneship of value.`neomultiset` can store owneship of value.