use core::fmt;
use core::fmt::Debug;
use core::iter::FusedIterator;
use crate::adaptors::generic_combinations::GenericCombinations;
pub trait IterArrayCombinations: Iterator {
#[inline]
fn array_combinations<const K: usize>(self) -> ArrayCombinations<Self, K>
where
Self: Sized,
Self::Item: Clone,
{
ArrayCombinations::new(self)
}
}
impl<I: ?Sized> IterArrayCombinations for I where I: Iterator {}
#[must_use = "iterators are lazy and do nothing unless consumed"]
pub struct ArrayCombinations<I, const K: usize>(GenericCombinations<I, [usize; K]>)
where
I: Iterator;
impl<I, const K: usize> ArrayCombinations<I, K>
where
I: Iterator,
I::Item: Clone,
{
#[track_caller]
pub(crate) fn new(iter: I) -> Self {
assert!(K != 0, "combination size must be non-zero");
let comb = unsafe { arrays::from_iter_unchecked(0..K) };
Self(GenericCombinations::new(iter, comb))
}
}
impl<I, const K: usize> Clone for ArrayCombinations<I, K>
where
I: Iterator + Clone,
I::Item: Clone,
{
fn clone(&self) -> Self {
Self(self.0.clone())
}
}
impl<I, const K: usize> Debug for ArrayCombinations<I, K>
where
I: Iterator + Debug,
I::Item: Debug,
{
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.0.fmt_with(f, "ArrayCombinations")
}
}
impl<I, const K: usize> Iterator for ArrayCombinations<I, K>
where
I: Iterator,
I::Item: Clone,
{
type Item = [I::Item; K];
fn next(&mut self) -> Option<Self::Item> {
self.0.fill_next().map(|it| {
unsafe { arrays::from_iter_unchecked(it) }
})
}
}
impl<I, const K: usize> FusedIterator for ArrayCombinations<I, K>
where
I: Iterator,
I::Item: Clone,
{
}