cubek-std 0.3.0-pre.2

CubeK: Standard Library
Documentation
1
2
3
4
5
6
7
8
9
10
11
use cubek_test_utils::CatalogEntry;

pub struct ContiguousStrategy;

pub fn strategies() -> Vec<CatalogEntry<ContiguousStrategy>> {
    vec![CatalogEntry::new(
        "default",
        "Default (into_contiguous)",
        ContiguousStrategy,
    )]
}