aurum-numeric 0.2.0

Numeric traits
Documentation
// Copyright (c) 2016-2017 <daggerbot@gmail.com>
// This software is available under the terms of the zlib license.
// See COPYING.md for more information.

mod clamp;
mod int;
mod interpolate;
mod num;
mod raw;
mod real;
mod try_ops;

pub use clamp::{Clamp, ClampError, ClampFrom, ClampInto};
pub use interpolate::{Lerp};
pub use num::{One, Zero};
pub use raw::{RawFrom, RawInto};
pub use real::{Sqrt};
pub use try_ops::{
    DivideByZero,
    IntOverflow,
    IntRangeError,
    IntUnderflow,
    TryAdd,
    TryDiv,
    TryMul,
    TryNeg,
    TryRem,
    TrySub,
};