1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
use std::collections::BTreeSet; #[test] fn test_hash() { use crate::hash; let mut x = BTreeSet::new(); let mut y = BTreeSet::new(); x.insert(1); x.insert(2); x.insert(3); y.insert(3); y.insert(2); y.insert(1); assert_eq!(hash(&x), hash(&y)); }