orx-split-vec 3.22.0

An efficient dynamic capacity vector with pinned element guarantees.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::GrowthWithConstantTimeAccess;
use crate::concurrent_pinned_vec::iter_ptr::IterPtrOfCon;
use crate::{Doubling, Linear};
use std::string::String;
use test_case::test_matrix;

#[test_matrix([
    Doubling,
    Linear::new(4),
])]
fn iter_ptr_default<G>(_: G)
where
    G: GrowthWithConstantTimeAccess,
{
    let iter = IterPtrOfCon::<String, G>::default();
    for _ in iter {}
}