Module lib::assert_bag::assert_bag_eq

source ·
Expand description

Assert a bag is equal to another.

Pseudocode:
(collection1 into bag) = (collection2 into bag)

§Example

use assertables::*;
let a = [1, 1];
let b = [1, 1];
assert_bag_eq!(&a, &b);

§Module macros