[][src]Module un_algebra::numeric

Numeric support module for floating point types.

Unfortunately, floating point numbers are only an approximation to the infinitude of real numbers and they do not reliably implement basic arithmetic properties like associativity or commutativity.

The numeric module provides traits and helper functions for working with floating point number types. This includes floating point absolute and relative error comparisons with an "epsilon" term.

Re-exports

pub use self::equal::*;
pub use self::order::*;

Modules

equal

Numeric equality tests.

order

Numeric ordering tests.