/** @file IntegerOps.hpp * * @author Roland Conybeare, Feb 2026 **/ #pragma once #include "Numeric.hpp" #include #include namespace xo { namespace scm { class IntegerOps { public: using AGCObject = xo::mm::AGCObject; public: static obj multiply(obj rcx, DInteger * x, DInteger * y); static obj divide(obj rcx, DInteger * x, DInteger * y); }; } } /* end IntegerOps.hpp */