import { mathMod } from "https://dotland.deno.dev/x/rambda@v9.2.0/immutable.d.ts";
R.mathMod
behaves like the modulo operator should mathematically, unlike the %
operator (and by extension, R.modulo
). So while -17 % 5
is -2
, mathMod(-17, 5)
is 3
.