🐐 Zipping

This commit is contained in:
2026-04-25 18:34:47 +02:00
parent 3a80c4e941
commit 8d06407527
10 changed files with 109 additions and 2 deletions

View File

@@ -376,6 +376,16 @@ Returns a new array with the element at 1-based position `idx` removed. The inde
Returns a new array with `value` inserted at 1-based position `idx`, shifting later elements one position to the right. The index must be an integer in the range `[I, LONGITVDO(array) + I]`; passing `LONGITVDO(array) + I` is equivalent to `ADDE`.
### NECTE
`NECTE(array1, array2)`
Weaves two arrays together into a new array of two-element pair arrays. The two inputs must have equal length; mismatched lengths raise an error.
### IVNGE
`IVNGE(keys, values)`
Builds a dict by yoking two parallel arrays — the i-th element of `keys` becomes the key for the i-th element of `values`. The two arrays must have equal length. Keys must be strings or integers. If `keys` contains duplicates, the later value wins.
### SENATVS
`SENATVS(bool, ...)` or `SENATVS([bool])`