Module assert_bag_eq

Module assert_bag_eq 

Source
Expand description

Assert a bag is equal to another.

Pseudocode:
(a_collection ⇒ a_bag) = (b_collection ⇒ b_bag)

§Example

use assertables::*;

let a = [1, 1];
let b = [1, 1];
assert_bag_eq!(a, b);

§Module macros