pub trait CotPiDerivatives: FloatElement {
const COT_PI_ROWS: &'static [&'static [Self]];
}Expand description
Coefficient rows for the derivatives of $\cot(\pi x)$. See the module docs.
Required Associated Constants§
Sourceconst COT_PI_ROWS: &'static [&'static [Self]]
const COT_PI_ROWS: &'static [&'static [Self]]
Row n - 1 is the polynomial for the n-th derivative.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".