Files
Nim/lib/system
ringabout 8914baae78 fixes #25007; implements setLenUninit for refc (#25022)
fixes #25007

```nim
proc setLengthSeqUninit(s: PGenericSeq, typ: PNimType, newLen: int, isTrivial: bool): PGenericSeq {.
    compilerRtl.} =
```

In this added function, only the line `zeroMem(dataPointer(result,
elemAlign, elemSize, newLen), (result.len-%newLen) *% elemSize)` is
removed from `proc setLengthSeqV2` when enlarging a sequence.

JS and VM versions simply use `setLen`.

(cherry picked from commit 611b8bbf67)
2025-11-21 13:28:13 +01:00
..
2025-11-07 12:33:33 +01:00
2025-05-19 17:48:22 +02:00
2025-11-05 11:33:32 +01:00
2025-10-28 13:50:59 +01:00
2025-10-28 13:50:59 +01:00
2023-11-06 07:57:29 +01:00
2024-08-11 10:35:09 +08:00
2020-01-30 10:54:50 +01:00