1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#![doc = include_str!("../README.md")]

pub mod runners;
pub mod low_level_analysis;
pub mod metrics_allocator;
pub mod configs;


// exported symbols
pub use {
    configs::{ALLOC, OUTPUT},
    low_level_analysis::types::{
        BigOAlgorithmComplexity,
        TimeUnits,
    },
    runners::{
        standard::{test_algorithm,test_constant_set_iterator_algorithm,test_set_resizing_iterator_algorithm},
        crud::test_crud_algorithms,
    },
};