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