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
// impl<T, I> MultiwayRangeMapBlazeRef<T> for I
// where
// T: Integer,
// I: IntoIterator<Item = RangeMapBlaze<T, V>>,
// {
// }
use crate::{
intersection_iter_map::IntersectionIterMap,
map::{CloneBorrow, ValueOwned},
range_values::RangeValuesToRangesIter,
BitAndMapWithRangeValues, BitOrMapKMerge, BitXorMapKMerge, Integer, RangeMapBlaze,
SortedDisjointMap, UnionIterMap,
};
impl<'a, T, V, I> MultiwayRangeMapBlaze<'a, T, V> for I
where
T: Integer + 'a,
V: ValueOwned + 'a,
I: IntoIterator<Item = &'a RangeMapBlaze<T, V>>,
{
}
/// The trait used to provide methods on multiple [`RangeMapBlaze`]'s,
/// specifically [`union`] and [`intersection`].
///
/// Also see [`MultiwayRangeMapBlazeRef`].
///
/// [`union`]: MultiwayRangeMapBlaze::union
/// [`intersection`]: MultiwayRangeMapBlaze::intersection
pub trait MultiwayRangeMapBlaze<'a, T: Integer + 'a, V: ValueOwned + 'a>:
IntoIterator<Item = &'a RangeMapBlaze<T, V>> + Sized
{
/// Unions the given [`RangeMapBlaze`]'s, creating a new [`RangeMapBlaze`].
/// Any number of input can be given.
///
/// For exactly two inputs, you can also use the '|' operator.
/// Also see [`MultiwayRangeMapBlazeRef::union`].
///
/// # Performance
///
/// All work is done on demand, in one pass through the inputs. Minimal memory is used.
///
/// # Example
///
/// Find the integers that appear in any of the [`RangeMapBlaze`]'s.
///
/// ```
/// use range_set_blaze::prelude::*;
///
/// let a = RangeMapBlaze::from_iter([1..=6, 8..=9, 11..=15]);
/// let b = RangeMapBlaze::from_iter([5..=13, 18..=29]);
/// let c = RangeMapBlaze::from_iter([25..=100]);
///
/// let union = [a, b, c].union();
///
/// assert_eq!(union, RangeMapBlaze::from_iter([1..=15, 18..=100]));
/// ```
fn union(self) -> RangeMapBlaze<T, V> {
self.into_iter()
.map(|x| RangeMapBlaze::range_values(x))
.union()
.into_range_map_blaze()
}
/// Intersects the given [`RangeMapBlaze`]'s, creating a new [`RangeMapBlaze`].
/// Any number of input can be given.
///
/// For exactly two inputs, you can also use the '&' operator.
/// Also see [`MultiwayRangeMapBlazeRef::intersection`].
///
/// The intersection of 0 maps is undefined. (We can create a universal set of integers, but we don't know that value to use.)
///
/// # Performance
///
/// All work is done on demand, in one pass through the inputs. Minimal memory is used.
///
/// # Example
///
/// Find the integers that appear in all the [`RangeMapBlaze`]'s.
///
/// ```
/// use range_set_blaze::prelude::*;
///
/// let a = RangeMapBlaze::from_iter([1..=6, 8..=9, 11..=15]);
/// let b = RangeMapBlaze::from_iter([5..=13, 18..=29]);
/// let c = RangeMapBlaze::from_iter([-100..=100]);
///
/// let intersection = [a, b, c].intersection();
///
/// assert_eq!(intersection, RangeMapBlaze::from_iter([5..=6, 8..=9, 11..=13]));
/// ```
fn intersection(self) -> RangeMapBlaze<T, V> {
self.into_iter()
.map(|x| RangeMapBlaze::range_values(x))
.intersection()
.into_range_map_blaze()
}
/// Symmetric difference on the given [`RangeMapBlaze`]'s, creating a new [`RangeMapBlaze`].
fn symmetric_difference(self) -> RangeMapBlaze<T, V> {
self.into_iter()
.map(|x| RangeMapBlaze::range_values(x))
.symmetric_difference()
.into_range_map_blaze()
}
}
impl<T, V, VR, II, I> MultiwaySortedDisjointMap<T, V, VR, I> for II
where
T: Integer,
V: ValueOwned,
VR: CloneBorrow<V>,
I: SortedDisjointMap<T, V, VR>,
II: IntoIterator<Item = I>,
{
}
/// The trait used to define methods on multiple [`SortedDisjointMap`] iterators,
/// specifically [`union`] and [`intersection`].
///
/// [`union`]: crate::MultiwaySortedDisjointMap::union
/// [`intersection`]: crate::MultiwaySortedDisjointMap::intersection
pub trait MultiwaySortedDisjointMap<T, V, VR, I>: IntoIterator<Item = I> + Sized
where
T: Integer,
V: ValueOwned,
VR: CloneBorrow<V>,
I: SortedDisjointMap<T, V, VR>,
{
/// Unions the given [`SortedDisjointMap`] iterators, creating a new [`SortedDisjointMap`] iterator.
/// The input iterators must be of the same type. Any number of input iterators can be given.
///
/// For input iterators of different types, use the [`union_dyn`] macro.
///
/// # Performance
///
/// All work is done on demand, in one pass through the input iterators. Minimal memory is used.
///
/// # Example
///
/// Find the integers that appear in any of the [`SortedDisjointMap`] iterators.
///
/// ```
/// use range_set_blaze::prelude::*;
///
/// let a = RangeMapBlaze::from_iter([1..=6, 8..=9, 11..=15]).into_ranges();
/// let b = RangeMapBlaze::from_iter([5..=13, 18..=29]).into_ranges();
/// let c = RangeMapBlaze::from_iter([25..=100]).into_ranges();
///
/// let union = [a, b, c].union();
///
/// assert_eq!(union.into_string(), "1..=15, 18..=100");
/// ```
fn union(self) -> BitOrMapKMerge<T, V, VR, I> {
// cmk0 why does this not have .into_iter() but intersection does?
UnionIterMap::new_k(self)
}
/// Intersects the given [`SortedDisjointMap`] iterators, creating a new [`SortedDisjointMap`] iterator.
/// The input iterators must be of the same type. Any number of input iterators can be given.
///
/// For input iterators of different types, use the [`intersection_dyn`] macro.
///
/// # Performance
///
/// All work is done on demand, in one pass through the input iterators. Minimal memory is used.
///
/// # Example
///
/// Find the integers that appear in all the [`SortedDisjointMap`] iterators.
///
/// ```
/// use range_set_blaze::prelude::*;
///
/// let a = RangeMapBlaze::from_iter([1..=6, 8..=9, 11..=15]).into_ranges();
/// let b = RangeMapBlaze::from_iter([5..=13, 18..=29]).into_ranges();
/// let c = RangeMapBlaze::from_iter([-100..=100]).into_ranges();
///
/// let intersection = [a, b, c].intersection();
///
/// assert_eq!(intersection.into_string(), "5..=6, 8..=9, 11..=13");
/// ```
fn intersection<'a>(self) -> BitAndMapWithRangeValues<'a, T, V, VR, I> {
// We define map intersection -- in part -- in terms of set intersection.
// Elsewhere, we define set intersection in terms of complement and (set/map) union.
use crate::MultiwaySortedDisjoint;
let mut iter = self.into_iter();
let iter_map = iter
.next()
.expect("The intersection of 0 maps is undefined.");
let iter_set = iter.map(|x| RangeValuesToRangesIter::new(x)).intersection();
IntersectionIterMap::new(iter_map, iter_set)
}
/// Symmetric difference on the given [`SortedDisjointMap`] iterators, creating a new [`SortedDisjointMap`] iterator.
fn symmetric_difference(self) -> BitXorMapKMerge<T, V, VR, I> {
let result = BitXorMapKMerge::new_k(self);
result
}
}
// cmk confirm that on ranges the union of 0 sets 0 empty and the intersection of 0 sets is the universal set.
// cmk on maps, the union is still empty, but the intersection is undefined because we can't give a value to T.s