xo-allod: + per-type stats + pretty printing

This commit is contained in:
Roland Conybeare 2025-08-06 22:34:20 -05:00
commit 13f4fb0935
26 changed files with 473 additions and 203 deletions

View file

@ -42,6 +42,12 @@ namespace xo {
return Reflect::make_tp(const_cast<Boolean*>(this));
}
void
Boolean::display(std::ostream & os) const
{
os << (value_ ? "#t" : "#f");
}
std::size_t
Boolean::_shallow_size() const
{