radiate-utils 1.3.0

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

pub use array::{Shape, Strides, Tensor};
pub use buff::{SortedBuffer, Value, VersionedCounts, WindowBuffer};
pub use datatype::{
    AnyValue, DType, DataType, dedup_slice, dtype, dtype_names, pow_anyvalue, value,
};
pub use fmt::{ToSnakeCase, intern_kv_pair, short_type_name};
pub use intern::{
    STR_CACHE, STR_INTERN_CACHE, is_str_cached, is_str_interned, try_get_interned_str,
};
pub use lru::LruCache;
pub use primitives::{Float, Integer, Primitive};
pub use stats::{Distribution, MinMax, Quantile, Slope, Statistic};
pub use str::SmallStr;