1 2 3 4 5 6
use crate::double::SemiDouble; use crate::traits::{FloatConsts, Like}; pub(crate) trait DivPi<L = Like<Self>>: FloatConsts { fn frac_1_pi_ex() -> SemiDouble<Self>; }