feat(Vector)

This commit is contained in:
2025-07-23 10:36:50 +03:00
parent 83c491ff6f
commit aca4539ce4
21 changed files with 1103 additions and 1533 deletions

View File

@ -121,6 +121,14 @@ export class ListIterator {
this._item = rhs._item
return this
}
get value() {
return this.deref().value
}
set value(value) {
return this.deref().value = value
}
deref() {
return this._item