Files
smartcore/src/readers/mod.rs
Tim Toebrock 2d75c2c405 Implement a generic read_csv method (#147)
* feat: Add interface to build `Matrix` from rows.
* feat: Add option to derive `RealNumber` from string.
To construct a `Matrix` from csv, and therefore from string, I need to be able to deserialize a generic `RealNumber` from string.
* feat: Implement `Matrix::read_csv`.
2022-11-08 11:29:56 -05:00

12 lines
245 B
Rust

/// Read in from csv.
pub mod csv;
/// Error definition for readers.
mod error;
/// Utilities to help with testing functionality using IO.
/// Only meant for internal usage.
#[cfg(test)]
pub(crate) mod io_testing;
pub use error::ReadingError;