rem1
rem1(x,m)
Remainder after division, returning in the range (0,m]
Examples
julia> rem1(8, 3)
2
julia> rem1(8, -3)
2
julia> rem1(-8, 3)
1
See Also
User Contributed Notes
Add a Note
The format of note supported is markdown, use triple backtick to start and end a code block.