/** @file DInteger.cpp * * @author Roland Conybeare, Jan 2026 **/ #include "DInteger.hpp" #include namespace xo { using xo::facet::typeseq; using xo::print::ppdetail_atomic; namespace scm { DInteger * DInteger::make(obj mm, long x) { void * mem = mm.alloc(typeseq::id(), sizeof(DInteger)); return new (mem) DInteger(x); } bool DInteger::pretty(const ppindentinfo & ppii) const { return ppdetail_atomic::print_pretty(ppii, value_); } } /*namespace scm*/ } /*namespace xo*/ /* end DInteger.cpp */