TAKE/part of offset gob! returns contents from head of gob! #1797
Labels
Datatype: gob!
Oldes.resolved
Bugs/wishes with Oldes' fixes/features
Ren.resolved
Test.written
Type.bug
Submitted by: BrianH
When you TAKE/part from a gob!, it returns a block of sub-gobs of the length that you specified in the length argument. That number of gobs is removed from the parent gob at the position passed to the function.
However, the gobs returned from the block are the ones at the beginning of the sub-gob list, not the ones at the offset position passed to TAKE. That means that the gobs returned are not necessarily the ones removed, and some of the ones removed can be lost.
Note that TAKE without /part works correctly.
Imported from: CureCode [ Version: alpha 110 Type: Bug Platform: All Category: Datatype Reproduce: Always Fixed-in:none ]
Imported from: metaeducation#1797
Comments:
This is still broken in R3-Alpha, but now it's fixed in Ren-C. The method by which it is fixed is that while a bit-tweaked structure is used to store the GOB! itself (parent, owner, flags, size, offset, old size, old offset, alpha, type...), an ordinary BLOCK! is used to store the child panes. Hence GOB's TAKE is implemented by delegating to the ordinary implementation for TAKE. As tradeoffs go, this seems a fair one.
metaeducation/ren-c@7e4a507#diff-28cbe579c0d704de5a2764ddf110f75eR1136
The text was updated successfully, but these errors were encountered: