peroxide/util/
mod.rs

1//! Utility - plot, print, pickle and etc.
2
3pub mod api;
4pub mod non_macro;
5
6#[cfg(feature = "plot")]
7pub mod plot;
8
9pub mod low_level;
10pub mod print;
11pub mod useful;
12pub mod wrapper;
13pub mod writer;