Skip to main content

rem

Function rem 

Source
pub fn rem(a: Value, b: Value) -> DogeResult
Expand description

% — modulo whose result takes the sign of the divisor (Python-style), so that a == (a // b) * b + (a % b) holds.