1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//! OVER: the best data format.
//!
//! # Examples
//!
//!

#![deny(missing_docs)]

extern crate fraction;
extern crate num;
extern crate num_traits;

#[macro_use]
pub mod macros;

pub mod arr;
pub mod error;
pub mod obj;
pub mod tup;
pub mod types;
pub mod value;

mod parse;

#[cfg(test)]
mod tests;

pub use error::OverError;
pub use obj::*;

/// Result type for this crate.
pub type OverResult<T> = Result<T, OverError>;