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
fn into_con_iter<T: Send>(slice: &mut [T]) {
    use crate::IntoConcurrentIter;
    let _con_iter = slice.into_con_iter();
}

#[test]
fn slice_con_iter_trait_bounds() {
    into_con_iter(&mut [1, 2, 4]);
}