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
use crate::{
BoundedRange, BoundedSet, LowerBoundedSet, RangeUnion, Rangetools, UnboundedRange,
UnboundedSet, UpperBoundedSet,
};
impl<T, R> RangeUnion<R, BoundedSet<T>> for BoundedRange<T>
where
R: Rangetools<Set = BoundedSet<T>>,
T: Copy + Ord,
{
type Output = BoundedSet<T>;
fn union(self, other: R) -> Self::Output {
RangeUnion::union(self.to_set(), other)
}
}
impl<T, R> RangeUnion<R, LowerBoundedSet<T>> for BoundedRange<T>
where
R: Rangetools<Set = LowerBoundedSet<T>>,
T: Copy + Ord,
{
type Output = LowerBoundedSet<T>;
fn union(self, other: R) -> Self::Output {
RangeUnion::union(self.to_set(), other)
}
}
impl<T, R> RangeUnion<R, UpperBoundedSet<T>> for BoundedRange<T>
where
R: Rangetools<Set = UpperBoundedSet<T>>,
T: Copy + Ord,
{
type Output = UpperBoundedSet<T>;
fn union(self, other: R) -> Self::Output {
RangeUnion::union(self.to_set(), other)
}
}
impl<T, R> RangeUnion<R, UnboundedSet<T>> for BoundedRange<T>
where
R: Rangetools<Set = UnboundedSet<T>>,
T: Copy + Ord,
{
type Output = UnboundedSet<T>;
fn union(self, other: R) -> Self::Output {
RangeUnion::union(self.to_set(), other)
}
}
impl<T, R> RangeUnion<R, UnboundedRange> for BoundedRange<T>
where
R: Rangetools<Set = UnboundedRange>,
T: Copy + Ord,
{
type Output = UnboundedRange;
fn union(self, other: R) -> Self::Output {
RangeUnion::union(other.to_set(), self)
}
}