Skip to main content

radiate_utils/
lib.rs

1mod array;
2mod buff;
3mod datatype;
4mod fmt;
5mod intern;
6mod lru;
7mod primitives;
8mod stats;
9mod str;
10
11pub use array::{Shape, Strides, Tensor};
12pub use buff::{SortedBuffer, Value, VersionedCounts, WindowBuffer};
13pub use datatype::{
14    AnyValue, DType, DataType, dedup_slice, dtype, dtype_names, pow_anyvalue, value,
15};
16pub use fmt::{ToSnakeCase, intern_kv_pair, short_type_name};
17pub use intern::{
18    STR_CACHE, STR_INTERN_CACHE, is_str_cached, is_str_interned, try_get_interned_str,
19};
20pub use lru::LruCache;
21pub use primitives::{Float, Integer, Primitive};
22pub use stats::{Distribution, MinMax, Quantile, Slope, Statistic};
23pub use str::SmallStr;