Oldes / Rebol-wishes

Repository for keeping Rebol related wishes out of issues
0 stars 0 forks source link

Wish: make `block!` using `pair!` #26

Closed Oldes closed 3 years ago

Oldes commented 3 years ago

It could be possible to preallocate block size using pair! value. Now it is:

>> make block! 2x2
** Script error: invalid argument: 2x2

But it could be like make block! 4 (preallocating block to hold at least 4 values)