fix(front, back) -> undefined exception; feat(resize)

This commit is contained in:
2025-07-22 19:22:25 +03:00
parent f762717de5
commit 94ce32cff3
10 changed files with 1648 additions and 44 deletions

View File

@ -6,7 +6,7 @@ export class ForwardIterator {
}
get value() {
return this.deref()?.value
return this.deref().value
}
set value(value) {
@ -32,4 +32,4 @@ ForwardIterator.is = function (obj, ...args) {
'neq',
]
return satisfiesConcept(obj, pure_virtual, virtual, ...args)
}
}