Module lib::assert_bag::assert_bag_ne
source · Expand description
Assert a bag is not equal to another.
§Example
let a = [1, 1];
let b = [1, 1, 1];
assert_bag_ne!(&a, &b);This implementation uses std::collections::BTreeMap to count items and sort them.