/** @file IntegerOps.cpp * * @author Roland Conybeare, Feb 2026 **/ #include "IntegerOps.hpp" #include "integer/INumeric_DInteger.hpp" namespace xo { using xo::mm::AGCObject; namespace scm { obj IntegerOps::multiply(obj rcx, DInteger * x, DInteger * y) { return DInteger::box(rcx.allocator(), x->value() * y->value()); } obj IntegerOps::divide(obj rcx, DInteger * x, DInteger * y) { return DInteger::box(rcx.allocator(), x->value() / y->value()); } } } /* end IntegerOps.cpp */