1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! Implementation of J. H. Conway's surreal numbers, as explained in the book
//! *[Surreal Numbers](https://www.amazon.com/dp/0201038129)* by Donald Knuth. This crate provides
//! an interface to the rules and theorems in the book, as well as a comprehensive surreal type.

mod conv;
mod repr;

pub use conv::ftos;
pub use conv::stof;
pub use repr::Surreal;

#[cfg(test)]
mod tests;