modern-multiset 0.2.0

A hash multiset implementation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Modern Multiset [![Crates.io]https://img.shields.io/crates/v/modern-multiset.svg?maxAge=86400]https://crates.io/crates/modern-multiset [![Docs]https://docs.rs/modern-multiset/badge.svg]https://docs.rs/modern-multiset

A multiset is an unordered collection of values.

Unlike sets where each value is either included or not, multisets permit duplicates. Consequently, they're useful for maintaining a count of distinct values.

See the documentation of [HashMultiSet](https://docs.rs/modern-multiset/latest/modern-multiset/struct.HashMultiSet.html) for examples.

## License

Licensed under GPL version 3.

The original version of this code was published by [jmitchell](https://github.com/jmitchell/multiset) under both the [MIT license](http://opensource.org/licenses/MIT) and the [Apache License version 2.0](http://www.apache.org/licenses/LICENSE-2.0).

### Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, is provided to the crate author under the terms of the MIT license. The crate author integrates them into the code, providing the result to you and anyone else under the GPLv3 license.