xo-interpreter2: apply sequence now working in interpreter
This commit is contained in:
parent
2da4054e4d
commit
8b9a2e09d6
1 changed files with 2 additions and 1 deletions
|
|
@ -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 **/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue