pub fn mod_floor(dividend: i64, divisor: i64) -> i64
Returns the mathematical floor-style remainder of dividend / divisor.
dividend / divisor
Panics when divisor is zero or when the matching quotient does not fit in i64.
divisor
i64