finit 0.4.0

Finit is a library for defining sets of data, and then performing set operations on them. It is designed to be used for permission systems, but can be used for any kind of data that can be represented as a set.
Documentation
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
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
use crate::Set;
use crate::comparisons::{SetEq, SubsetOf};
use crate::operations::identity::{
    disjunctive_union_using_difference_and_union, intersection_using_double_difference,
};
use crate::operations::{
    Difference, DifferenceAssign, DisjunctiveUnionAssign, IntersectionAssign, Union, UnionAssign,
};
use std::{collections::BTreeMap, ops::Deref};

#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
/// An extension of [`BTreeMap`] with easy representation of undefined key values.
///
/// This is a generalization of a [`BTreeMap`] which cannot represent the universal set of its domain in an easy way without having to define a specific value for every value possible of its key type.
///
/// For a similar structure that uses a [`std::collections::HashMap`] instead of a [`BTreeMap`], see [`super::WildcardHashMap`].
pub struct WildcardBTreeMap<Key: Ord + Eq + Clone, Value: Set> {
    wildcard_exceptions: BTreeMap<Key, Value>,
    wildcard_value: Box<Value>,
    rest_list: BTreeMap<Key, Value>,
}

impl<Key: Ord + Eq + Clone, Value: Set> WildcardBTreeMap<Key, Value> {
    pub fn new(wildcard_value: Value) -> Self {
        Self {
            wildcard_exceptions: BTreeMap::empty(),
            wildcard_value: Box::new(wildcard_value),
            rest_list: BTreeMap::empty(),
        }
    }
}

impl<Key: Ord + Eq + Clone, Value: Set<Empty = Value>> Set for WildcardBTreeMap<Key, Value> {
    type Empty = Self;

    fn is_empty(&self) -> bool {
        self.rest_list.is_empty() && self.wildcard_value.is_empty()
    }

    fn empty() -> Self::Empty {
        WildcardBTreeMap {
            wildcard_exceptions: BTreeMap::empty(),
            wildcard_value: Box::new(Value::empty()),
            rest_list: BTreeMap::empty(),
        }
    }
}

impl<Key: Ord + Eq + Clone, Value: Set<Empty = Value>> Default for WildcardBTreeMap<Key, Value> {
    fn default() -> Self {
        Self::empty()
    }
}

impl<Key: Ord + Eq + Clone, Value: Set<Empty = Value>> From<BTreeMap<Key, Value>>
    for WildcardBTreeMap<Key, Value>
{
    fn from(rest_list: BTreeMap<Key, Value>) -> Self {
        WildcardBTreeMap {
            rest_list,
            ..Default::default()
        }
    }
}

// WildcardList A <-> List B
impl<Key: Ord + Eq + Clone, Value: Set<Empty = Value>, OtherValue: Clone>
    UnionAssign<&BTreeMap<Key, OtherValue>> for WildcardBTreeMap<Key, Value>
where
    for<'a> Value: DifferenceAssign<&'a Value>
        + IntersectionAssign<&'a OtherValue>
        + UnionAssign<&'a OtherValue>,
    for<'a> OtherValue: DifferenceAssign<&'a Value>,
{
    fn union_assign(&mut self, rhs: &BTreeMap<Key, OtherValue>) {
        for (key, value) in rhs.iter() {
            //For each key, for the intersection that is covered by the wildcard and value, remove it from the exceptions for this key.
            //For the rest (that is not part of the intersection), add it to the rest list.
            self.wildcard_value.intersection_assign(value);

            let mut rest = value.clone();

            rest.difference_assign(&self.wildcard_value);

            if !self.wildcard_value.is_empty() {
                let mut remove: bool = false;
                if let Some(val) = self.wildcard_exceptions.get_mut(key) {
                    val.difference_assign(&self.wildcard_value);

                    remove = val.is_empty();
                };

                if remove {
                    self.wildcard_exceptions.remove(key);
                };
            }

            if !rest.is_empty() {
                self.rest_list
                    .entry(key.clone())
                    .or_insert_with(Value::empty)
                    .union_assign(&rest);
            }
        }
    }
}

impl<Key: Ord + Eq + Clone, Value: Set<Empty = Value>, OtherValue: Clone>
    Union<&BTreeMap<Key, OtherValue>> for WildcardBTreeMap<Key, Value>
where
    for<'a> Value: DifferenceAssign<&'a Value>
        + IntersectionAssign<&'a OtherValue>
        + UnionAssign<&'a OtherValue>,
    for<'a> OtherValue: DifferenceAssign<&'a Value>,
{
    type Output = Self;

    fn union(mut self, rhs: &BTreeMap<Key, OtherValue>) -> Self::Output {
        self.union_assign(rhs);
        self
    }
}

impl<Key: Ord + Eq + Clone, Value: Set<Empty = Value>, OtherValue: Clone>
    Union<BTreeMap<Key, OtherValue>> for WildcardBTreeMap<Key, Value>
where
    for<'a> Self: Union<&'a BTreeMap<Key, OtherValue>, Output = Self>,
{
    type Output = Self;

    fn union(self, rhs: BTreeMap<Key, OtherValue>) -> Self::Output {
        self.union(&rhs)
    }
}

impl<Key: Ord + Eq + Clone, Value: Set<Empty = Value>, OtherValue: Set<Empty = OtherValue>>
    DifferenceAssign<&BTreeMap<Key, OtherValue>> for WildcardBTreeMap<Key, Value>
where
    for<'a> Value: DifferenceAssign<&'a OtherValue>
        + IntersectionAssign<&'a OtherValue>
        + UnionAssign<&'a Value>,
{
    fn difference_assign(&mut self, rhs: &BTreeMap<Key, OtherValue>) {
        self.rest_list.difference_assign(rhs);

        for (key, value) in rhs.iter() {
            self.wildcard_value.intersection_assign(value);

            // Whatever intersection exists between the wildcard and the value of a key should be inserted as an exception on that key.
            if !self.wildcard_value.is_empty() {
                self.wildcard_exceptions
                    .entry(key.clone())
                    .or_insert_with(Value::empty)
                    .union_assign(&self.wildcard_value);
            }
        }
    }
}

impl<Key: Ord + Eq + Clone, Value: Set<Empty = Value>, OtherValue: Set<Empty = OtherValue>>
    Difference<&BTreeMap<Key, OtherValue>> for WildcardBTreeMap<Key, Value>
where
    for<'a> Value: DifferenceAssign<&'a OtherValue>
        + IntersectionAssign<&'a OtherValue>
        + UnionAssign<&'a Value>,
{
    type Output = Self;

    fn difference(mut self, rhs: &BTreeMap<Key, OtherValue>) -> Self::Output {
        self.difference_assign(rhs);
        self
    }
}

// WildcardList A <-> WildcardList B
impl<Key, Value, OtherValue> UnionAssign<&WildcardBTreeMap<Key, OtherValue>>
    for WildcardBTreeMap<Key, Value>
where
    Key: Ord + Eq + Clone,
    Value: Set<Empty = Value> + Clone,
    for<'a> Value: DifferenceAssign<&'a Value>
        + DifferenceAssign<&'a OtherValue>
        + UnionAssign<&'a OtherValue>,
    OtherValue: Set<Empty = OtherValue> + Clone,
    for<'a> OtherValue: DifferenceAssign<&'a Value> + DifferenceAssign<&'a OtherValue>,
    for<'a> BTreeMap<Key, Value>: UnionAssign<&'a BTreeMap<Key, OtherValue>>,
{
    fn union_assign(&mut self, rhs: &WildcardBTreeMap<Key, OtherValue>) {
        let mut cleaned_rhs_wildcard_exceptions = rhs.wildcard_exceptions.clone();

        /// This function removes covered exceptions from a wildcard value (and it's associated exceptions).
        fn remove_covered_values<Key, Value, OtherValue>(
            exceptions: &mut BTreeMap<Key, OtherValue>,
            wildcard_value: &Value,
            wildcard_exceptions: &BTreeMap<Key, Value>,
        ) where
            Key: Ord + Eq + Clone,
            Value: Set<Empty = Value> + Clone,
            for<'a> Value: DifferenceAssign<&'a Value>, // + DifferenceAssign<&'a OtherValue>,
            for<'a> OtherValue: DifferenceAssign<&'a Value>, // + DifferenceAssign<&'a OtherValue>,
        {
            for (key, other_exception) in exceptions.iter_mut() {
                if let Some(exception) = wildcard_exceptions.get(key) {
                    let mut wildcard_value = wildcard_value.clone();
                    wildcard_value.difference_assign(exception);
                    other_exception.difference_assign(&wildcard_value);
                } else {
                    other_exception.difference_assign(wildcard_value);
                };
            }

            crate::impls::btreemap::remove_empty_keys(exceptions);
        }

        // Remove exceptions in rhs covered by selfs wildcard.
        remove_covered_values(
            &mut cleaned_rhs_wildcard_exceptions,
            self.wildcard_value.as_ref(),
            &self.wildcard_exceptions,
        );
        cleaned_rhs_wildcard_exceptions.difference_assign(&self.rest_list);

        // Remove exceptions in self covered by rhs' wildcard.
        remove_covered_values(
            &mut self.wildcard_exceptions,
            rhs.wildcard_value.as_ref(),
            &rhs.wildcard_exceptions,
        );
        self.wildcard_exceptions.difference_assign(&rhs.rest_list);

        // Merge the exception lists and the wildcards.
        self.wildcard_exceptions
            .union_assign(&cleaned_rhs_wildcard_exceptions);
        self.wildcard_value.union_assign(rhs.wildcard_value.deref());

        // Merge rest lists.
        self.rest_list.union_assign(&rhs.rest_list);

        // Remove values in rest list covered by new wildcard.
        remove_covered_values(
            &mut self.rest_list,
            self.wildcard_value.as_ref(),
            &self.wildcard_exceptions,
        );
    }
}

impl<Key, Value, OtherValue> Union<&WildcardBTreeMap<Key, OtherValue>>
    for WildcardBTreeMap<Key, Value>
where
    Key: Ord + Eq + Clone,
    Value: Set<Empty = Value> + Clone,
    for<'a> Value: DifferenceAssign<&'a Value>
        + DifferenceAssign<&'a OtherValue>
        + UnionAssign<&'a OtherValue>,
    OtherValue: Set<Empty = OtherValue> + Clone,
    for<'a> OtherValue: DifferenceAssign<&'a Value> + DifferenceAssign<&'a OtherValue>,
    for<'a> BTreeMap<Key, Value>: UnionAssign<&'a BTreeMap<Key, OtherValue>>,
{
    type Output = Self;

    fn union(mut self, rhs: &WildcardBTreeMap<Key, OtherValue>) -> Self::Output {
        self.union_assign(rhs);
        self
    }
}

impl<Key, Value, OtherValue> Union<WildcardBTreeMap<Key, OtherValue>>
    for WildcardBTreeMap<Key, Value>
where
    Key: Ord + Eq + Clone,
    Value: Set<Empty = Value> + Clone,
    OtherValue: Set<Empty = OtherValue> + Clone,
    for<'a> Self: Union<&'a WildcardBTreeMap<Key, OtherValue>, Output = Self>,
{
    type Output = Self;

    fn union(self, rhs: WildcardBTreeMap<Key, OtherValue>) -> Self::Output {
        self.union(&rhs)
    }
}

impl<Key, Value, OtherValue> DifferenceAssign<&WildcardBTreeMap<Key, OtherValue>>
    for WildcardBTreeMap<Key, Value>
where
    Key: Ord + Eq + Clone,
    Value: Set<Empty = Value> + Clone,
    for<'a> Value: DifferenceAssign<&'a Value>
        + DifferenceAssign<&'a OtherValue>
        + IntersectionAssign<&'a OtherValue>
        + UnionAssign<&'a OtherValue>
        + UnionAssign<&'a Value>,
    OtherValue: Set<Empty = OtherValue> + Clone,
    for<'a> OtherValue: IntersectionAssign<&'a Value>,
{
    fn difference_assign(&mut self, rhs: &WildcardBTreeMap<Key, OtherValue>) {
        //If exception exists for X key, that value should not be removed for that key.
        //That means, if there is an intersection between that exception and the wildcard value, it should be added to the rest list.
        for (key, other_exception) in rhs.wildcard_exceptions.iter() {
            let mut value = self.wildcard_value.deref().clone();

            if let Some(exception) = self.wildcard_exceptions.get(key) {
                value.difference_assign(exception);
            }

            value.intersection_assign(other_exception);

            if value.is_empty() {
                continue;
            }

            if let Some(rest_value) = self.rest_list.get_mut(key) {
                rest_value.union_assign(&value);
            } else {
                self.rest_list.insert(key.clone(), value);
            }
        }
        //Remove rhs wildcard from self wildcard.
        self.wildcard_value
            .difference_assign(rhs.wildcard_value.as_ref());

        // If any rest list items in rhs intersect with the self wildcard, add them to the exceptions.
        // Subtract any rest list items in self with rhs.

        for (key, value) in rhs.rest_list.iter() {
            let mut value = value.clone();

            value.intersection_assign(&self.wildcard_value);

            if value.is_empty() {
                continue;
            }

            self.wildcard_exceptions
                .entry(key.clone())
                .or_insert_with(Value::empty)
                .union_assign(&value);
        }

        self.rest_list.difference_assign(&rhs.rest_list);
    }
}

impl<Key, Value, OtherValue> Difference<&WildcardBTreeMap<Key, OtherValue>>
    for WildcardBTreeMap<Key, Value>
where
    Key: Ord + Eq + Clone,
    Value: Set<Empty = Value> + Clone,
    OtherValue: Set<Empty = OtherValue> + Clone,
    for<'a> Self: DifferenceAssign<&'a WildcardBTreeMap<Key, OtherValue>>,
{
    type Output = Self;

    fn difference(mut self, rhs: &WildcardBTreeMap<Key, OtherValue>) -> Self::Output {
        self.difference_assign(rhs);
        self
    }
}

impl<Key, Value, OtherValue> Difference<WildcardBTreeMap<Key, OtherValue>>
    for WildcardBTreeMap<Key, Value>
where
    Key: Ord + Eq + Clone,
    Value: Set<Empty = Value> + Clone,
    OtherValue: Set<Empty = OtherValue> + Clone,
    for<'a> Self: Difference<&'a WildcardBTreeMap<Key, OtherValue>, Output = Self>,
{
    type Output = Self;

    fn difference(self, rhs: WildcardBTreeMap<Key, OtherValue>) -> Self::Output {
        self.difference(&rhs)
    }
}

impl<Key, Value, OtherValue> IntersectionAssign<&WildcardBTreeMap<Key, OtherValue>>
    for WildcardBTreeMap<Key, Value>
where
    Key: Ord + Eq + Clone,
    Value: Set<Empty = Value> + Clone,
    OtherValue: Set<Empty = OtherValue> + Clone,
    for<'a> Self: Difference<&'a WildcardBTreeMap<Key, OtherValue>, Output = Self>,
    Self: Difference<Self, Output = Self>,
{
    fn intersection_assign(&mut self, rhs: &WildcardBTreeMap<Key, OtherValue>) {
        *self = intersection_using_double_difference(self.clone(), rhs);
    }
}

impl<Key, Value, OtherValue> IntersectionAssign<WildcardBTreeMap<Key, OtherValue>>
    for WildcardBTreeMap<Key, Value>
where
    Key: Ord + Eq + Clone,
    Value: Set<Empty = Value> + Clone,
    OtherValue: Set<Empty = OtherValue> + Clone,
    for<'a> Self: IntersectionAssign<&'a WildcardBTreeMap<Key, OtherValue>>,
{
    fn intersection_assign(&mut self, rhs: WildcardBTreeMap<Key, OtherValue>) {
        self.intersection_assign(&rhs);
    }
}

impl<Key, Value, OtherValue> DisjunctiveUnionAssign<&WildcardBTreeMap<Key, OtherValue>>
    for WildcardBTreeMap<Key, Value>
where
    Key: Ord + Eq + Clone,
    Value: Set<Empty = Value> + Clone,
    OtherValue: Set<Empty = OtherValue> + Clone,
    Self: DisjunctiveUnionAssign<WildcardBTreeMap<Key, OtherValue>>,
    WildcardBTreeMap<Key, OtherValue>: Clone,
{
    fn disjunctive_union_assign(&mut self, rhs: &WildcardBTreeMap<Key, OtherValue>) {
        self.disjunctive_union_assign(rhs.clone());
    }
}

impl<Key, Value, OtherValue> DisjunctiveUnionAssign<WildcardBTreeMap<Key, OtherValue>>
    for WildcardBTreeMap<Key, Value>
where
    Key: Ord + Eq + Clone,
    Value: Set<Empty = Value> + Clone,
    OtherValue: Set<Empty = OtherValue> + Clone,
    Self: Difference<WildcardBTreeMap<Key, OtherValue>, Output = Self> + Union<Self, Output = Self>,
    WildcardBTreeMap<Key, OtherValue>: Difference<Self, Output = Self>,
{
    fn disjunctive_union_assign(&mut self, rhs: WildcardBTreeMap<Key, OtherValue>) {
        *self = disjunctive_union_using_difference_and_union(self.clone(), rhs);
    }
}

impl<Key: Ord + Eq + Clone, Value: Set + SetEq<OtherValue>, OtherValue: Set>
    SetEq<WildcardBTreeMap<Key, OtherValue>> for WildcardBTreeMap<Key, Value>
{
    fn set_eq(&self, rhs: &WildcardBTreeMap<Key, OtherValue>) -> bool {
        self.wildcard_value.set_eq(rhs.wildcard_value.as_ref())
            && self.wildcard_exceptions.set_eq(&rhs.wildcard_exceptions)
            && self.rest_list.set_eq(&rhs.rest_list)
    }
}

impl<Key: Ord + Eq + Clone, Value: Set + SetEq<OtherValue>, OtherValue: Set>
    SetEq<BTreeMap<Key, OtherValue>> for WildcardBTreeMap<Key, Value>
{
    fn set_eq(&self, rhs: &BTreeMap<Key, OtherValue>) -> bool {
        self.wildcard_value.is_empty() && self.rest_list.set_eq(rhs)
    }
}

impl<Key: Ord + Eq + Clone, Value: Set + SubsetOf<OtherValue>, OtherValue: Set>
    SubsetOf<WildcardBTreeMap<Key, OtherValue>> for WildcardBTreeMap<Key, Value>
where
    for<'a> Value: DifferenceAssign<&'a Value>
        + DifferenceAssign<&'a OtherValue>
        + UnionAssign<&'a Value>
        + IntersectionAssign<&'a OtherValue>
        + Clone,
{
    fn subset_of(&self, rhs: &WildcardBTreeMap<Key, OtherValue>) -> bool {
        // The wildcard itself must be a subset
        if !self.wildcard_value.subset_of(rhs.wildcard_value.as_ref()) {
            return false;
        }

        let mut checked_keys = std::collections::BTreeSet::new();

        for key in rhs.wildcard_exceptions.keys().chain(self.rest_list.keys()) {
            if checked_keys.contains(key) {
                continue;
            }
            checked_keys.insert(key);

            let mut a = self.wildcard_value.deref().clone();
            if let Some(exc) = self.wildcard_exceptions.get(key) {
                a.difference_assign(exc);
            }
            if let Some(rest) = self.rest_list.get(key) {
                a.union_assign(rest);
            }

            if let Some(rhs_rest) = rhs.rest_list.get(key) {
                a.difference_assign(rhs_rest);
            }

            let mut a_minus_wb = a.clone();
            a_minus_wb.difference_assign(rhs.wildcard_value.as_ref());
            if !a_minus_wb.is_empty() {
                return false;
            }

            if let Some(rhs_exc) = rhs.wildcard_exceptions.get(key) {
                a.intersection_assign(rhs_exc);
                if !a.is_empty() {
                    return false;
                }
            }
        }

        true
    }
}

impl<Key: Ord + Eq + Clone, Value: Set + SubsetOf<OtherValue>, OtherValue: Set>
    SubsetOf<BTreeMap<Key, OtherValue>> for WildcardBTreeMap<Key, Value>
{
    fn subset_of(&self, rhs: &BTreeMap<Key, OtherValue>) -> bool {
        if !self.wildcard_value.is_empty() {
            return false;
        }

        self.rest_list.subset_of(rhs)
    }
}

#[cfg(test)]
mod tests {
    use std::fmt::Debug;

    use rstest::*;

    #[allow(unused_imports)]
    use super::*;

    use maplit::btreemap;

    #[rstest]
    // WildcardList A <-> List B
    #[case(WildcardBTreeMap {
        wildcard_value: Box::new(false),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {
            0 => true,
        },
    }, btreemap! {
        1 => true,
    }, WildcardBTreeMap {
        wildcard_value: Box::new(false),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {
            0 => true,
            1 => true,
        }
    })]
    #[case(WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {},
    }, btreemap! {
        1 => true,
    }, WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {}
    })]
    #[case(WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {
            1 => true
        },
        rest_list: btreemap! {},
    }, btreemap! {
        1 => true,
    }, WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {}
    })]
    #[case(WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {
            1 => true,
            2 => true,
        },
        rest_list: btreemap! {},
    }, btreemap! {
        1 => true,
    }, WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {
            2 => true,
        },
        rest_list: btreemap! {}
    })]
    // WildcardList A <-> WildcardList B
    #[case(WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {
            2 => true,
        },
        rest_list: btreemap! {},
    }, WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {
            1 => true,
        },
        rest_list: btreemap! {},
    }, WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {}
    })]
    #[case(WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {
            1 => true,
            2 => true,
        },
        rest_list: btreemap! {},
    }, WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {
            1 => true,
        },
        rest_list: btreemap! {},
    }, WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {
            1 => true,
        },
        rest_list: btreemap! {}
    })]
    #[case(WildcardBTreeMap {
        wildcard_value: Box::new(btreemap! {
            1 => true
        }),
        wildcard_exceptions: btreemap! {
            2 => btreemap! {
                1 => true
            }
        },
        rest_list: btreemap! {},
    }, WildcardBTreeMap {
        wildcard_value: Box::new(btreemap! {
            2 => true
        }),
        wildcard_exceptions: btreemap! {
            1 => btreemap! {
                2 => true
            }
        },
        rest_list: btreemap! {
            2 => btreemap! {
                1 => true
            }
        },
    }, WildcardBTreeMap {
        wildcard_value: Box::new(btreemap! {
            1 => true,
            2 => true
        }),
        wildcard_exceptions: btreemap! {
            1 => btreemap! {
                2 => true
            }
        },
        rest_list: btreemap! {}
    })]
    fn union_list_tests<I1, I2, R>(#[case] mut list1: I1, #[case] list2: I2, #[case] result: R)
    where
        I1: PartialEq<R> + Debug,
        I2: Debug,
        R: Debug,
        for<'a> I1: UnionAssign<&'a I2>,
    {
        list1.union_assign(&list2);

        assert_eq!(list1, result);
    }

    #[rstest]
    #[case(WildcardBTreeMap {
        wildcard_value: Box::new(false),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {
            0 => true,
        },
    }, btreemap! {
        1 => true,
    }, WildcardBTreeMap {
        wildcard_value: Box::new(false),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {
            0 => true,
        }
    })]
    #[case(WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {},
    }, btreemap! {
        1 => true,
    }, WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {
            1 => true,
        },
        rest_list: btreemap! {}
    })]
    #[case(WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {
            1 => true
        },
        rest_list: btreemap! {},
    }, btreemap! {
        1 => true,
    }, WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {
            1 => true,
        },
        rest_list: btreemap! {}
    })]
    #[case(WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {
            2 => true,
        },
        rest_list: btreemap! {
        },
    }, btreemap! {
        1 => true,
    }, WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {
            2 => true,
            1 => true,
        },
        rest_list: btreemap! {}
    })]
    // WildcardList A <-> WildcardList B
    #[case(WildcardBTreeMap::<i32, bool> {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {},
    }, WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {},
    }, WildcardBTreeMap {
        wildcard_value: Box::new(false),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {}
    })]
    #[case(WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {},
    }, WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {
            1 => true,
        },
        rest_list: btreemap! {},
    }, WildcardBTreeMap {
        wildcard_value: Box::new(false),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {
            1 => true,
        }
    })]
    #[case(WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {},
    }, WildcardBTreeMap {
        wildcard_value: Box::new(false),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {
            1 => true,
        },
    }, WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {
            1 => true,
        },
        rest_list: btreemap! {}
    })]
    #[case(WildcardBTreeMap {
        wildcard_value: Box::new(btreemap! {
            1 => true,
            2 => true
        }),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {},
    }, WildcardBTreeMap {
        wildcard_value: Box::new(btreemap! {
            1 => true
        }),
        wildcard_exceptions: btreemap! {
            2 => btreemap! {
                1 => true
            }
        },
        rest_list: btreemap! {},
    }, WildcardBTreeMap {
        wildcard_value: Box::new(btreemap! {
            2 => true
        }),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {
            2 => btreemap! {
                1 => true
            }
        }
    })]
    fn difference_list_tests<I1, I2, R>(#[case] mut list1: I1, #[case] list2: I2, #[case] result: R)
    where
        I1: PartialEq<R> + Debug,
        I2: Debug,
        R: Debug,
        for<'a> I1: DifferenceAssign<&'a I2>,
    {
        list1.difference_assign(&list2);

        assert_eq!(list1, result);
    }

    #[test]
    fn test_add() {
        let tree_1 = btreemap! {
            1 => WildcardBTreeMap {
                rest_list: btreemap! {},
                wildcard_exceptions: btreemap! {},
                wildcard_value: Box::new(btreemap! {
                    15 => true,
                })
            }
        };

        let tree_2 = btreemap! {
            1 => btreemap! {
                5 => btreemap! {
                    15 => true,
                    5 => true,
                },
            },
        };

        let mut tree_1_minus_2 = tree_1.clone();
        tree_1_minus_2.difference_assign(&tree_2);

        let result = btreemap! {
          1 => WildcardBTreeMap {
            rest_list: btreemap! {},
            wildcard_exceptions: btreemap! {
                5 => btreemap! {
                    15 => true,
                },
            },
            wildcard_value: Box::new(btreemap! {
                15 => true,
            }),
          }
        };

        assert_eq!(tree_1_minus_2, result);

        tree_1_minus_2.union_assign(&tree_2);
        //Does not equal tree_1 because 1.5.5 has been added.
        assert_ne!(tree_1, tree_1_minus_2);
    }

    #[rstest]
    #[case(WildcardBTreeMap::<i32, bool> {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {},
    }, WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {},
    }, WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {}
    })]
    #[case(WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {
            1 => true,
        },
        rest_list: btreemap! {},
    }, WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {},
    }, WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {
            1 => true,
        },
        rest_list: btreemap! {}
    })]
    #[case(WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {
            1 => true,
        },
    }, WildcardBTreeMap {
        wildcard_value: Box::new(false),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {
            1 => true,
        },
    }, WildcardBTreeMap {
        wildcard_value: Box::new(false),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {
            1 => true,
        }
    })]
    fn intersection_list_tests<I1, I2, R>(
        #[case] mut list1: I1,
        #[case] list2: I2,
        #[case] result: R,
    ) where
        I1: PartialEq<R> + Debug,
        I2: Debug,
        R: Debug,
        for<'a> I1: IntersectionAssign<&'a I2>,
    {
        list1.intersection_assign(&list2);
        assert_eq!(list1, result);
    }

    #[rstest]
    #[case(WildcardBTreeMap::<i32, bool> {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {},
    }, WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {},
    }, WildcardBTreeMap {
        wildcard_value: Box::new(false),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {}
    })]
    #[case(WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {
            1 => true,
        },
        rest_list: btreemap! {},
    }, WildcardBTreeMap {
        wildcard_value: Box::new(false),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {
            1 => true,
        },
    }, WildcardBTreeMap {
        wildcard_value: Box::new(true),
        wildcard_exceptions: btreemap! {},
        rest_list: btreemap! {}
    })]
    fn disjunctive_union_list_tests<I1, I2, R>(
        #[case] mut list1: I1,
        #[case] list2: I2,
        #[case] result: R,
    ) where
        I1: PartialEq<R> + Debug,
        I2: Debug,
        R: Debug,
        I1: DisjunctiveUnionAssign<I2>,
    {
        list1.disjunctive_union_assign(list2);
        assert_eq!(list1, result);
    }
}