[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
idiv
, irem
%
i2
for replacement of irem()
which only differs in the point that
the result is always normalized to non-negative values.
sdiv()
, srem()
for polynomial quotient.
[0] idiv(100,7); 14 [0] idiv(-100,7); -14 [1] irem(100,7); 2 [1] irem(-100,7); -2 |
sdiv
, sdivm
, srem
, sremm
, sqr
, sqrm
, 6.3.10 %
.