fpmath 0.1.1

A floating point math library
Documentation
1
2
3
4
5
6
7
use crate::double::SemiDouble;
use crate::traits::{Float, Like};

pub(crate) trait RadToDeg<L = Like<Self>>: Float {
    fn rad_to_deg() -> Self;
    fn rad_to_deg_ex() -> SemiDouble<Self>;
}