lossless_transform_utils/
lib.rs

1#![doc = include_str!("../README.MD")]
2#![no_std]
3#![cfg_attr(feature = "nightly", feature(naked_functions))]
4#![cfg_attr(feature = "estimator-avx512", feature(stdarch_x86_avx512))]
5#![cfg_attr(feature = "estimator-avx512", feature(avx512_target_feature))]
6
7#[cfg(feature = "c-exports")]
8pub mod exports;
9
10#[cfg(feature = "std")]
11extern crate std;
12
13pub mod entropy;
14pub mod histogram;
15pub mod match_estimator;