xo-interpreter2: apply sequence now working in interpreter

This commit is contained in:
Roland Conybeare 2026-02-04 16:26:19 -05:00
commit 8b9a2e09d6

View file

@ -68,7 +68,8 @@ namespace xo {
requires (std::same_as<Args, obj<AGCObject>> && ...)
static DArray * array(obj<AAllocator> mm, Args... args);
obj<AGCObject> operator[](size_type index) const noexcept { return elts_[index]; }
const obj<AGCObject> & operator[](size_type index) const noexcept { return elts_[index]; }
obj<AGCObject> & operator[](size_type index) noexcept { return elts_[index]; }
///@}
/** @defgroup darray-access acecss methods **/