RoundedFmod

Trait RoundedFmod 

Source
pub trait RoundedFmod: RoundingContext {
    // Required method
    fn fmod<N1, N2>(&self, src1: &N1, src2: &N2) -> Self::Format
       where N1: Real,
             N2: Real;
}
Expand description

Rounded fmod(x, y) for rounding contexts.

Required Methods§

Source

fn fmod<N1, N2>(&self, src1: &N1, src2: &N2) -> Self::Format
where N1: Real, N2: Real,

Performs rounded fmod(x, y).

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§