radiate-utils 1.3.1

A Rust library for genetic algorithms and artificial evolution.
Documentation
mod buff;
mod datatype;
mod fmt;
mod id;
mod intern;
mod lru;
mod primitives;
mod stats;
mod str;

pub use buff::{Matrix, SortedBuffer, VersionedCounts, WindowBuffer};
pub use datatype::{
    AnyValue, DType, DataType, dedup_slice, dtype, dtype_names, pow_anyvalue, value,
};
pub use fmt::{ToSnakeCase, generate_metric_key, short_type_name};
pub use intern::{STR_INTERN_CACHE, is_str_interned};
pub use lru::LruCache;
pub use primitives::{Float, Integer, Primitive};
pub use stats::{Distribution, MinMax, Quantile, Slope, Statistic};
pub use str::SmallStr;