honestintervals 0.2.0

Comprehensive, correctly rounding interval arithmetic library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Trait for transcendental functions.
pub trait Transc<RHS=Self> {
    /// Output type.
    type Output;
    /// Computes the natural logarithm of `self`.
    fn log(self) -> Self::Output;
    /// Computes the natural exponential of `self`.
    fn exp(self) -> Self::Output;
    /// Computes `self` raised to the power `rhs`.
    fn pow(self, rhs: RHS) -> Self::Output;
}