///// Remainder functions. The remainder of dividing "a" by "b", where the quotient is rounded toward zero to the nearest integer. Similar to (a - trunc(a / b) * b).
See Implementation
///// Remainder functions. The remainder of dividing "a" by "b", where the quotient is rounded toward zero to the nearest integer. Similar to (a - trunc(a / b) * b).