fixnum/mod ( x y -- z w )


Vocabulary
math.private

Inputs
xa fixnum
ya fixnum


Outputs
zan integer
wa fixnum


Word description
Primitive version of /mod. The result may overflow to a bignum.

Warning
This word does not perform type checking, and passing objects of the wrong type can crash the runtime. User code should call the generic word /mod instead.


Definition