reckoner 0.3.0

A high level arbitrary precision arithmetic library supporting integer and rational numbers.
Documentation
// Neg          The unary negation operator -.

use crate::integer::Integer;
use core::ops::Neg;

impl Neg for Integer {
    type Output = Integer;

    fn neg(self) -> Self::Output {
        self.negate()
    }
}

impl Neg for &Integer {
    type Output = Integer;

    fn neg(self) -> Self::Output {
        self.negate()
    }
}