Luccas Mateus 3d8394a909
to csv and to tsv (#412)
* MathEval Variance and Stddev

* Fix tests and linting

* Typo

* Deal with streams when they are not tables

* ToTsv and ToCsv
2021-12-03 15:02:22 +13:00

15 lines
213 B
Rust

mod command;
mod csv;
mod delimited;
mod json;
mod toml;
mod tsv;
mod url;
pub use self::csv::ToCsv;
pub use self::toml::ToToml;
pub use command::To;
pub use json::ToJson;
pub use tsv::ToTsv;
pub use url::ToUrl;