xo-object2: implement APrintable for DArray

This commit is contained in:
Roland Conybeare 2026-01-29 15:12:00 -05:00
commit 8f531065a9
5 changed files with 58 additions and 0 deletions

View file

@ -108,6 +108,9 @@ namespace xo {
/** @defgroup darray-printable-methods **/
///@{
/** pretty-printing support **/
bool pretty(const ppindentinfo & ppii) const;
///@}
/** @defgroup darray-gcobject-methods **/
///@{

View file

@ -14,6 +14,7 @@
#pragma once
#include "GCObject.hpp"
#include <xo/object2/number/GCObjectConversion_DFloat.hpp>
#include <xo/gc/GCObject.hpp>
#include <xo/alloc2/Allocator.hpp>
#include "DFloat.hpp"