Logo

Programming-Idioms

History of Idiom 224 > diff from v6 to v7

Edit summary for version 7 by steenslag:
New Ruby implementation by user [steenslag]

Version 6

2020-04-19, 15:08:15

Version 7

2020-04-22, 21:45:07

Idiom #224 Add element to the beginning of the list

Insert element x at the beginning of list items.

Idiom #224 Add element to the beginning of the list

Insert element x at the beginning of list items.

Extra Keywords
prepend prefix start
Extra Keywords
prepend prefix start
Code
items.unshift(x)
Comments bubble
prepend_ would also work