This adds 2630 bytes to the wasm build and a dependency. It is ok-ish The idea is that it will help us greatly with the statistical functions
15 lines
291 B
Rust
15 lines
291 B
Rust
mod bessel_i;
|
|
mod bessel_j0_y0;
|
|
mod bessel_j1_y1;
|
|
mod bessel_jn_yn;
|
|
mod bessel_k;
|
|
mod bessel_util;
|
|
|
|
#[cfg(test)]
|
|
mod test_bessel;
|
|
|
|
pub(crate) use bessel_i::bessel_i;
|
|
pub(crate) use bessel_jn_yn::jn as bessel_j;
|
|
pub(crate) use bessel_jn_yn::yn as bessel_y;
|
|
pub(crate) use bessel_k::bessel_k;
|