pub trait ZetaConsts {
const LOG2_3: Self;
const LOG2_5: Self;
const LOG2_7: Self;
}Expand description
Per-element constants: the base-2 logarithms of the primes under N. log2(pi) for
the functional equation comes from FloatConsts. Declared for f32/f64. Add more as needed.
Required Associated Constants§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".