pub trait Factorials: FloatElement {
const FACTORIALS: &'static [Self];
}Expand description
Static factorial tables for a float format.
Required Associated Constants§
Sourceconst FACTORIALS: &'static [Self]
const FACTORIALS: &'static [Self]
$0!, 1!, 2!, \ldots$, every factorial finite in Self, so entry i is $i!$.
See the module docs for why the table ends where it does.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".