Function fact

Source
pub fn fact(m: u64) -> u64
Expand description

Calculate the nth factorial number.

The n! is defined as n * (n-1) * … * 1