bags union

main
Ziyang Hu 2 years ago
parent 218757ce21
commit c099ece0a9

@ -252,8 +252,12 @@ impl<'a> MegaTupleIt<'a> {
MegaTupleIt::KeyedDifferenceIt { .. } => {
todo!()
}
MegaTupleIt::BagsUnionIt { .. } => {
todo!()
MegaTupleIt::BagsUnionIt { bags } => {
let bags = bags.iter().map(|i| i.iter()).collect();
Box::new(BagsUnionIterator {
bags,
current: 0
})
}
}
}

Loading…
Cancel
Save