orx-concurrent-iter 3.3.0

A thread-safe and ergonomic concurrent iterator trait and efficient lock-free implementations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::{ConcurrentIter, implementations::ConIterOfIter};
use core::fmt::Debug;

impl<I> Debug for ConIterOfIter<I>
where
    I: Iterator,
    I::Item: Send,
{
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        f.debug_struct("ConIterOfIter")
            .field("size_hint", &self.size_hint())
            .finish()
    }
}