Logo

Programming-Idioms

History of Idiom 224 > diff from v7 to v8

Edit summary for version 8 by steenslag:
[Ruby] removed underscore

Version 7

2020-04-22, 21:45:07

Version 8

2020-04-22, 22:13: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)
Code
items.unshift(x)
Comments bubble
prepend_ would also work
Comments bubble
prepend would also work