rusty_data/
lib.rs

1//! # The rusty-data library
2//!
3//! This is a scientific data handling library.
4//!
5//! The core struct of the library is the DataTable. This struct
6//! stores the data as Strings and provides conversion methods
7//! to cast the data to various types.
8//!
9//! In addition to the DataTable there is a Loader which is used to
10//! read in data from file to tables.
11
12extern crate num;
13
14pub mod loader;
15pub mod datatable;
16pub mod error;