1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// FIXME(conventions): implement bounded iterators
// FIXME(conventions): replace each_reverse by making iter DoubleEnded
// FIXME(conventions): implement iter_mut and into_iter

//! An ordered set based on a trie.

use std::cmp::Ordering::{self, Less, Equal, Greater};
use std::fmt::{self, Debug};
use std::iter::{self, Peekable};
use std::ops;

use super::map::{Map, self};

/// A set implemented as a radix trie.
///
/// # Examples
///
/// ```
/// let mut set = trie::Set::new();
/// set.insert(6);
/// set.insert(28);
/// set.insert(6);
///
/// assert_eq!(set.len(), 2);
///
/// if !set.contains(&3) {
///     println!("3 is not in the set");
/// }
///
/// // Print contents in order
/// for x in set.iter() {
///     println!("{}", x);
/// }
///
/// set.remove(&6);
/// assert_eq!(set.len(), 1);
///
/// set.clear();
/// assert!(set.is_empty());
/// ```
#[derive(Clone, Default, Hash, PartialEq, Eq, PartialOrd, Ord)]
pub struct Set {
    map: Map<()>
}

impl Debug for Set {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.debug_set().entries(self.iter()).finish()
    }
}

impl Set {
    /// Creates an empty set.
    ///
    /// # Examples
    ///
    /// ```
    /// let mut set = trie::Set::new();
    /// ```
    #[inline]
    pub fn new() -> Set {
        Set{map: Map::new()}
    }

    /// Visits all values in reverse order. Aborts traversal when `f` returns `false`.
    /// Returns `true` if `f` returns `true` for all elements.
    ///
    /// # Examples
    ///
    /// ```
    /// let set: trie::Set = [1, 2, 3, 4, 5].iter().cloned().collect();
    ///
    /// let mut vec = vec![];
    /// assert_eq!(true, set.each_reverse(|&x| { vec.push(x); true }));
    /// assert_eq!(vec, [5, 4, 3, 2, 1]);
    ///
    /// // Stop when we reach 3
    /// let mut vec = vec![];
    /// assert_eq!(false, set.each_reverse(|&x| { vec.push(x); x != 3 }));
    /// assert_eq!(vec, [5, 4, 3]);
    /// ```
    #[inline]
    pub fn each_reverse<F>(&self, mut f: F) -> bool where F: FnMut(&usize) -> bool {
        self.map.each_reverse(|k, _| f(k))
    }

    /// Gets an iterator over the values in the set, in sorted order.
    ///
    /// # Examples
    ///
    /// ```
    /// let mut set = trie::Set::new();
    /// set.insert(3);
    /// set.insert(2);
    /// set.insert(1);
    /// set.insert(2);
    ///
    /// // Print 1, 2, 3
    /// for x in set.iter() {
    ///     println!("{}", x);
    /// }
    /// ```
    #[inline]
    pub fn iter(&self) -> Iter {
        Iter { iter: self.map.iter() }
    }

    /// Gets an iterator pointing to the first value that is not less than `val`.
    /// If all values in the set are less than `val` an empty iterator is returned.
    ///
    /// # Examples
    ///
    /// ```
    /// let set: trie::Set = [2, 4, 6, 8].iter().cloned().collect();
    /// assert_eq!(set.lower_bound(4).next(), Some(4));
    /// assert_eq!(set.lower_bound(5).next(), Some(6));
    /// assert_eq!(set.lower_bound(10).next(), None);
    /// ```
    pub fn lower_bound(&self, val: usize) -> Range {
        Range { iter: self.map.lower_bound(val) }
    }

    /// Gets an iterator pointing to the first value that key is greater than `val`.
    /// If all values in the set are less than or equal to `val` an empty iterator is returned.
    ///
    /// # Examples
    ///
    /// ```
    /// let set: trie::Set = [2, 4, 6, 8].iter().cloned().collect();
    /// assert_eq!(set.upper_bound(4).next(), Some(6));
    /// assert_eq!(set.upper_bound(5).next(), Some(6));
    /// assert_eq!(set.upper_bound(10).next(), None);
    /// ```
    pub fn upper_bound(&self, val: usize) -> Range {
        Range { iter: self.map.upper_bound(val) }
    }

    /// Visits the values representing the difference, in ascending order.
    ///
    /// # Examples
    ///
    /// ```
    /// let a: trie::Set = [1, 2, 3].iter().cloned().collect();
    /// let b: trie::Set = [3, 4, 5].iter().cloned().collect();
    ///
    /// // Can be seen as `a - b`.
    /// for x in a.difference(&b) {
    ///     println!("{}", x); // Print 1 then 2
    /// }
    ///
    /// let diff1: trie::Set = a.difference(&b).collect();
    /// assert_eq!(diff1, [1, 2].iter().cloned().collect());
    ///
    /// // Note that difference is not symmetric,
    /// // and `b - a` means something else:
    /// let diff2: trie::Set = b.difference(&a).collect();
    /// assert_eq!(diff2, [4, 5].iter().cloned().collect());
    /// ```
    pub fn difference<'a>(&'a self, other: &'a Set) -> Difference<'a> {
        Difference { a: self.iter().peekable(), b: other.iter().peekable() }
    }

    /// Visits the values representing the symmetric difference, in ascending order.
    ///
    /// # Examples
    ///
    /// ```
    /// let a: trie::Set = [1, 2, 3].iter().cloned().collect();
    /// let b: trie::Set = [3, 4, 5].iter().cloned().collect();
    ///
    /// // Print 1, 2, 4, 5 in ascending order.
    /// for x in a.symmetric_difference(&b) {
    ///     println!("{}", x);
    /// }
    ///
    /// let diff1: trie::Set = a.symmetric_difference(&b).collect();
    /// let diff2: trie::Set = b.symmetric_difference(&a).collect();
    ///
    /// assert_eq!(diff1, diff2);
    /// assert_eq!(diff1, [1, 2, 4, 5].iter().cloned().collect());
    /// ```
    pub fn symmetric_difference<'a>(&'a self, other: &'a Set) -> SymmetricDifference<'a> {
        SymmetricDifference { a: self.iter().peekable(), b: other.iter().peekable() }
    }

    /// Visits the values representing the intersection, in ascending order.
    ///
    /// # Examples
    ///
    /// ```
    /// let a: trie::Set = [1, 2, 3].iter().cloned().collect();
    /// let b: trie::Set = [2, 3, 4].iter().cloned().collect();
    ///
    /// // Print 2, 3 in ascending order.
    /// for x in a.intersection(&b) {
    ///     println!("{}", x);
    /// }
    ///
    /// let diff: trie::Set = a.intersection(&b).collect();
    /// assert_eq!(diff, [2, 3].iter().cloned().collect());
    /// ```
    pub fn intersection<'a>(&'a self, other: &'a Set) -> Intersection<'a> {
        Intersection { a: self.iter().peekable(), b: other.iter().peekable() }
    }

    /// Visits the values representing the union, in ascending order.
    ///
    /// # Examples
    ///
    /// ```
    /// let a: trie::Set = [1, 2, 3].iter().cloned().collect();
    /// let b: trie::Set = [3, 4, 5].iter().cloned().collect();
    ///
    /// // Print 1, 2, 3, 4, 5 in ascending order.
    /// for x in a.union(&b) {
    ///     println!("{}", x);
    /// }
    ///
    /// let diff: trie::Set = a.union(&b).collect();
    /// assert_eq!(diff, [1, 2, 3, 4, 5].iter().cloned().collect());
    /// ```
    pub fn union<'a>(&'a self, other: &'a Set) -> Union<'a> {
        Union { a: self.iter().peekable(), b: other.iter().peekable() }
    }

    /// Return the number of elements in the set
    ///
    /// # Examples
    ///
    /// ```
    /// let mut v = trie::Set::new();
    /// assert_eq!(v.len(), 0);
    /// v.insert(1);
    /// assert_eq!(v.len(), 1);
    /// ```
    #[inline]
    pub fn len(&self) -> usize { self.map.len() }

    /// Returns true if the set contains no elements
    ///
    /// # Examples
    ///
    /// ```
    /// let mut v = trie::Set::new();
    /// assert!(v.is_empty());
    /// v.insert(1);
    /// assert!(!v.is_empty());
    /// ```
    pub fn is_empty(&self) -> bool { self.map.is_empty() }

    /// Clears the set, removing all values.
    ///
    /// # Examples
    ///
    /// ```
    /// let mut v = trie::Set::new();
    /// v.insert(1);
    /// v.clear();
    /// assert!(v.is_empty());
    /// ```
    #[inline]
    pub fn clear(&mut self) { self.map.clear() }

    /// Returns `true` if the set contains a value.
    ///
    /// # Examples
    ///
    /// ```
    /// let set: trie::Set = [1, 2, 3].iter().cloned().collect();
    /// assert_eq!(set.contains(&1), true);
    /// assert_eq!(set.contains(&4), false);
    /// ```
    #[inline]
    pub fn contains(&self, value: &usize) -> bool {
        self.map.contains_key(value)
    }

    /// Returns `true` if the set has no elements in common with `other`.
    /// This is equivalent to checking for an empty intersection.
    ///
    /// # Examples
    ///
    /// ```
    /// let a: trie::Set = [1, 2, 3].iter().cloned().collect();
    /// let mut b = trie::Set::new();
    ///
    /// assert_eq!(a.is_disjoint(&b), true);
    /// b.insert(4);
    /// assert_eq!(a.is_disjoint(&b), true);
    /// b.insert(1);
    /// assert_eq!(a.is_disjoint(&b), false);
    /// ```
    #[inline]
    pub fn is_disjoint(&self, other: &Set) -> bool {
        self.iter().all(|v| !other.contains(&v))
    }

    /// Returns `true` if the set is a subset of another.
    ///
    /// # Examples
    ///
    /// ```
    /// let sup: trie::Set = [1, 2, 3].iter().cloned().collect();
    /// let mut set = trie::Set::new();
    ///
    /// assert_eq!(set.is_subset(&sup), true);
    /// set.insert(2);
    /// assert_eq!(set.is_subset(&sup), true);
    /// set.insert(4);
    /// assert_eq!(set.is_subset(&sup), false);
    /// ```
    #[inline]
    pub fn is_subset(&self, other: &Set) -> bool {
        self.iter().all(|v| other.contains(&v))
    }

    /// Returns `true` if the set is a superset of another.
    ///
    /// # Examples
    ///
    /// ```
    /// let sub: trie::Set = [1, 2].iter().cloned().collect();
    /// let mut set = trie::Set::new();
    ///
    /// assert_eq!(set.is_superset(&sub), false);
    ///
    /// set.insert(0);
    /// set.insert(1);
    /// assert_eq!(set.is_superset(&sub), false);
    ///
    /// set.insert(2);
    /// assert_eq!(set.is_superset(&sub), true);
    /// ```
    #[inline]
    pub fn is_superset(&self, other: &Set) -> bool {
        other.is_subset(self)
    }

    /// Adds a value to the set. Returns `true` if the value was not already
    /// present in the set.
    ///
    /// # Examples
    ///
    /// ```
    /// let mut set = trie::Set::new();
    ///
    /// assert_eq!(set.insert(2), true);
    /// assert_eq!(set.insert(2), false);
    /// assert_eq!(set.len(), 1);
    /// ```
    #[inline]
    pub fn insert(&mut self, value: usize) -> bool {
        self.map.insert(value, ()).is_none()
    }

    /// Removes a value from the set. Returns `true` if the value was
    /// present in the set.
    ///
    /// # Examples
    ///
    /// ```
    /// let mut set = trie::Set::new();
    ///
    /// set.insert(2);
    /// assert_eq!(set.remove(&2), true);
    /// assert_eq!(set.remove(&2), false);
    /// ```
    #[inline]
    pub fn remove(&mut self, value: &usize) -> bool {
        self.map.remove(value).is_some()
    }
}

impl iter::FromIterator<usize> for Set {
    fn from_iter<I: IntoIterator<Item=usize>>(iter: I) -> Set {
        let mut set = Set::new();
        set.extend(iter);
        set
    }
}

impl Extend<usize> for Set {
    fn extend<I: IntoIterator<Item=usize>>(&mut self, iter: I) {
        for elem in iter {
            self.insert(elem);
        }
    }
}

impl<'a, 'b> ops::BitOr<&'b Set> for &'a Set {
    type Output = Set;

    /// Returns the union of `self` and `rhs` as a new set.
    ///
    /// # Example
    ///
    /// ```
    /// let a: trie::Set = [1, 2, 3].iter().cloned().collect();
    /// let b: trie::Set = [3, 4, 5].iter().cloned().collect();
    ///
    /// let set: trie::Set = &a | &b;
    /// let v: Vec<usize> = set.iter().collect();
    /// assert_eq!(v, [1, 2, 3, 4, 5]);
    /// ```
    fn bitor(self, rhs: &Set) -> Set {
        self.union(rhs).collect()
    }
}

impl<'a, 'b> ops::BitAnd<&'b Set> for &'a Set {
    type Output = Set;

    /// Returns the intersection of `self` and `rhs` as a new set.
    ///
    /// # Example
    ///
    /// ```
    /// let a: trie::Set = [1, 2, 3].iter().cloned().collect();
    /// let b: trie::Set = [2, 3, 4].iter().cloned().collect();
    ///
    /// let set: trie::Set = &a & &b;
    /// let v: Vec<usize> = set.iter().collect();
    /// assert_eq!(v, [2, 3]);
    /// ```
    fn bitand(self, rhs: &Set) -> Set {
        self.intersection(rhs).collect()
    }
}

impl<'a, 'b> ops::BitXor<&'b Set> for &'a Set {
    type Output = Set;

    /// Returns the symmetric difference of `self` and `rhs` as a new set.
    ///
    /// # Example
    ///
    /// ```
    /// let a: trie::Set = [1, 2, 3].iter().cloned().collect();
    /// let b: trie::Set = [3, 4, 5].iter().cloned().collect();
    ///
    /// let set: trie::Set = &a ^ &b;
    /// let v: Vec<usize> = set.iter().collect();
    /// assert_eq!(v, [1, 2, 4, 5]);
    /// ```
    fn bitxor(self, rhs: &Set) -> Set {
        self.symmetric_difference(rhs).collect()
    }
}

impl<'a, 'b> ops::Sub<&'b Set> for &'a Set {
    type Output = Set;

    /// Returns the difference of `self` and `rhs` as a new set.
    ///
    /// # Example
    ///
    /// ```
    /// let a: trie::Set = [1, 2, 3].iter().cloned().collect();
    /// let b: trie::Set = [3, 4, 5].iter().cloned().collect();
    ///
    /// let set: trie::Set = &a - &b;
    /// let v: Vec<usize> = set.iter().collect();
    /// assert_eq!(v, [1, 2]);
    /// ```
    fn sub(self, rhs: &Set) -> Set {
        self.difference(rhs).collect()
    }
}

/// A forward iterator over a set.
#[derive(Clone)]
pub struct Iter<'a> {
    iter: map::Iter<'a, ()>
}

/// A bounded forward iterator over a set.
#[derive(Clone)]
pub struct Range<'a> {
    iter: map::Range<'a, ()>
}

/// An iterator producing elements in the set difference (in-order).
#[derive(Clone)]
pub struct Difference<'a> {
    a: Peekable<Iter<'a>>,
    b: Peekable<Iter<'a>>,
}

/// An iterator producing elements in the set symmetric difference (in-order).
#[derive(Clone)]
pub struct SymmetricDifference<'a> {
    a: Peekable<Iter<'a>>,
    b: Peekable<Iter<'a>>,
}

/// An iterator producing elements in the set intersection (in-order).
#[derive(Clone)]
pub struct Intersection<'a> {
    a: Peekable<Iter<'a>>,
    b: Peekable<Iter<'a>>,
}

/// An iterator producing elements in the set union (in-order).
#[derive(Clone)]
pub struct Union<'a> {
    a: Peekable<Iter<'a>>,
    b: Peekable<Iter<'a>>,
}

/// Compare `x` and `y`, but return `short` if x is None and `long` if y is None
fn cmp_opt(x: Option<&usize>, y: Option<&usize>, short: Ordering, long: Ordering) -> Ordering {
    match (x, y) {
        (None    , _       ) => short,
        (_       , None    ) => long,
        (Some(x1), Some(y1)) => x1.cmp(y1),
    }
}

impl<'a> Iterator for Iter<'a> {
    type Item = usize;
    fn next(&mut self) -> Option<usize> {
        self.iter.next().map(|(key, _)| key)
    }

    fn size_hint(&self) -> (usize, Option<usize>) {
        self.iter.size_hint()
    }
}

impl<'a> ExactSizeIterator for Iter<'a> {
    fn len(&self) -> usize { self.iter.len() }
}

impl<'a> Iterator for Range<'a> {
    type Item = usize;
    fn next(&mut self) -> Option<usize> { self.iter.next().map(|(key, _)| key) }
    fn size_hint(&self) -> (usize, Option<usize>) { self.iter.size_hint() }
}

impl<'a> Iterator for Difference<'a> {
    type Item = usize;
    fn next(&mut self) -> Option<usize> {
        loop {
            match cmp_opt(self.a.peek(), self.b.peek(), Less, Less) {
                Less    => return self.a.next(),
                Equal   => { self.a.next(); self.b.next(); }
                Greater => { self.b.next(); }
            }
        }
    }
}

impl<'a> Iterator for SymmetricDifference<'a> {
    type Item = usize;
    fn next(&mut self) -> Option<usize> {
        loop {
            match cmp_opt(self.a.peek(), self.b.peek(), Greater, Less) {
                Less => return self.a.next(),
                Equal => { self.a.next(); self.b.next(); }
                Greater => return self.b.next(),
            }
        }
    }
}

impl<'a> Iterator for Intersection<'a> {
    type Item = usize;
    fn next(&mut self) -> Option<usize> {
        loop {
            let o_cmp = match (self.a.peek(), self.b.peek()) {
                (None    , _       ) => None,
                (_       , None    ) => None,
                (Some(a1), Some(b1)) => Some(a1.cmp(b1)),
            };
            match o_cmp {
                None          => return None,
                Some(Less)    => { self.a.next(); }
                Some(Equal)   => { self.b.next(); return self.a.next() }
                Some(Greater) => { self.b.next(); }
            }
        }
    }
}

impl<'a> Iterator for Union<'a> {
    type Item = usize;
    fn next(&mut self) -> Option<usize> {
        match cmp_opt(self.a.peek(), self.b.peek(), Greater, Less) {
            Less    => self.a.next(),
            Equal   => { self.b.next(); self.a.next() }
            Greater => self.b.next(),
        }
    }
}

impl<'a> IntoIterator for &'a Set {
    type Item = usize;
    type IntoIter = Iter<'a>;
    fn into_iter(self) -> Iter<'a> { self.iter() }
}

#[cfg(test)]
mod test {
    use super::map::USIZE_BITS;
    use super::Set;

    #[test]
    fn test_sane_chunk() {
        let x = 1;
        let y = 1 << (USIZE_BITS - 1);

        let mut trie = Set::new();

        assert!(trie.insert(x));
        assert!(trie.insert(y));

        assert_eq!(trie.len(), 2);

        let expected = [x, y];

        for (i, x) in trie.iter().enumerate() {
            assert_eq!(expected[i], x);
        }
    }

    #[test]
    fn test_from_iter() {
        let xs = [9, 8, 7, 6, 5, 4, 3, 2, 1];

        let set: Set = xs.iter().cloned().collect();

        for x in xs.iter() {
            assert!(set.contains(x));
        }
    }

    #[test]
    fn test_debug() {
        let mut set = Set::new();
        let empty = Set::new();

        set.insert(1);
        set.insert(2);

        assert_eq!(format!("{:?}", set), "{1, 2}");
        assert_eq!(format!("{:?}", empty), "{}");
    }

    #[test]
    fn test_clone() {
        let mut a = Set::new();

        a.insert(1);
        a.insert(2);
        a.insert(3);

        assert!(a.clone() == a);
    }

    #[test]
    fn test_lt() {
        let mut a = Set::new();
        let mut b = Set::new();

        assert!(!(a < b) && !(b < a));
        assert!(b.insert(2));
        assert!(a < b);
        assert!(a.insert(3));
        assert!(!(a < b) && b < a);
        assert!(b.insert(1));
        assert!(b < a);
        assert!(a.insert(0));
        assert!(a < b);
        assert!(a.insert(6));
        assert!(a < b && !(b < a));
    }

    #[test]
    fn test_ord() {
        let mut a = Set::new();
        let mut b = Set::new();

        assert!(a <= b && a >= b);
        assert!(a.insert(1));
        assert!(a > b && a >= b);
        assert!(b < a && b <= a);
        assert!(b.insert(2));
        assert!(b > a && b >= a);
        assert!(a < b && a <= b);
    }

    struct Counter<'a, 'b> {
        i: &'a mut usize,
        expected: &'b [usize],
    }

    impl<'a, 'b> FnOnce<(usize,)> for Counter<'a, 'b> {
        type Output = bool;

        extern "rust-call" fn call_once(mut self, args: (usize,)) -> bool {
            self.call_mut(args)
        }
    }

    impl<'a, 'b> FnMut<(usize,)> for Counter<'a, 'b> {
        extern "rust-call" fn call_mut(&mut self, (x,): (usize,)) -> bool {
            assert_eq!(x, self.expected[*self.i]);
            *self.i += 1;
            true
        }
    }

    fn check<F>(a: &[usize], b: &[usize], expected: &[usize], f: F) where
        // FIXME Replace `Counter` with `Box<FnMut(&usize) -> bool>`
        F: FnOnce(&Set, &Set, Counter) -> bool,
    {
        let mut set_a = Set::new();
        let mut set_b = Set::new();

        for x in a.iter() { assert!(set_a.insert(*x)) }
        for y in b.iter() { assert!(set_b.insert(*y)) }

        let mut i = 0;
        f(&set_a, &set_b, Counter { i: &mut i, expected: expected });
        assert_eq!(i, expected.len());
    }

    #[test]
    fn test_intersection() {
        fn check_intersection(a: &[usize], b: &[usize], expected: &[usize]) {
            check(a, b, expected, |x, y, f| x.intersection(y).all(f))
        }

        check_intersection(&[], &[], &[]);
        check_intersection(&[1, 2, 3], &[], &[]);
        check_intersection(&[], &[1, 2, 3], &[]);
        check_intersection(&[2], &[1, 2, 3], &[2]);
        check_intersection(&[1, 2, 3], &[2], &[2]);
        check_intersection(&[11, 1, 3, 77, 103, 5],
                           &[2, 11, 77, 5, 3],
                           &[3, 5, 11, 77]);
    }

    #[test]
    fn test_difference() {
        fn check_difference(a: &[usize], b: &[usize], expected: &[usize]) {
            check(a, b, expected, |x, y, f| x.difference(y).all(f))
        }

        check_difference(&[], &[], &[]);
        check_difference(&[1, 12], &[], &[1, 12]);
        check_difference(&[], &[1, 2, 3, 9], &[]);
        check_difference(&[1, 3, 5, 9, 11],
                         &[3, 9],
                         &[1, 5, 11]);
        check_difference(&[11, 22, 33, 40, 42],
                         &[14, 23, 34, 38, 39, 50],
                         &[11, 22, 33, 40, 42]);
    }

    #[test]
    fn test_symmetric_difference() {
        fn check_symmetric_difference(a: &[usize], b: &[usize], expected: &[usize]) {
            check(a, b, expected, |x, y, f| x.symmetric_difference(y).all(f))
        }

        check_symmetric_difference(&[], &[], &[]);
        check_symmetric_difference(&[1, 2, 3], &[2], &[1, 3]);
        check_symmetric_difference(&[2], &[1, 2, 3], &[1, 3]);
        check_symmetric_difference(&[1, 3, 5, 9, 11],
                                   &[3, 9, 14, 22],
                                   &[1, 5, 11, 14, 22]);
    }

    #[test]
    fn test_union() {
        fn check_union(a: &[usize], b: &[usize], expected: &[usize]) {
            check(a, b, expected, |x, y, f| x.union(y).all(f))
        }

        check_union(&[], &[], &[]);
        check_union(&[1, 2, 3], &[2], &[1, 2, 3]);
        check_union(&[2], &[1, 2, 3], &[1, 2, 3]);
        check_union(&[1, 3, 5, 9, 11, 16, 19, 24],
                    &[1, 5, 9, 13, 19],
                    &[1, 3, 5, 9, 11, 13, 16, 19, 24]);
    }

    #[test]
    fn test_bit_or() {
        let a: Set = [1, 2, 3].iter().cloned().collect();
        let b: Set = [3, 4, 5].iter().cloned().collect();

        let set: Set = &a | &b;
        let v: Vec<usize> = set.iter().collect();
        assert_eq!(v, [1, 2, 3, 4, 5]);
    }

    #[test]
    fn test_bit_and() {
        let a: Set = [1, 2, 3].iter().cloned().collect();
        let b: Set = [2, 3, 4].iter().cloned().collect();

        let set: Set = &a & &b;
        let v: Vec<usize> = set.iter().collect();
        assert_eq!(v, [2, 3]);
    }

    #[test]
    fn test_bit_xor() {
        let a: Set = [1, 2, 3].iter().cloned().collect();
        let b: Set = [3, 4, 5].iter().cloned().collect();

        let set: Set = &a ^ &b;
        let v: Vec<usize> = set.iter().collect();
        assert_eq!(v, [1, 2, 4, 5]);
    }

    #[test]
    fn test_sub() {
        let a: Set = [1, 2, 3].iter().cloned().collect();
        let b: Set = [3, 4, 5].iter().cloned().collect();

        let set: Set = &a - &b;
        let v: Vec<usize> = set.iter().collect();
        assert_eq!(v, [1, 2]);
    }
}