cheby 0.2.0

Unit-safe Chebyshev approximation and spectral numerics for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Optional serialization helpers.
//!
//! # Features
//!
//! - `binary`: a compact, versioned, checksummed `f64` coefficient layout
//!   (see [`binary`]).
//! - `serde`: derives that integrate with the `serde` ecosystem.
//!
//! Both submodules require `alloc`.

#[cfg(feature = "binary")]
pub mod binary;
pub mod metadata;
#[cfg(feature = "serde")]
pub mod serde;