Computes the remainder of dividing a by n using the modulo operator.
This function uses a trick to avoid using the modulo operator directly, which can be slow
for large values of a and n.
Value
The remainder of dividing a by n, of type T in the form of a NumericVector.
Arguments
a
The input value of type T. This is a NumericVector.