Logo

Programming-Idioms

History of Idiom 224 > diff from v5 to v6

Edit summary for version 6 by programming-idioms.org:
[Fortran] Variable name items

Version 5

2020-04-17, 19:38:44

Version 6

2020-04-19, 15:08:15

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
list_items = [x, list_items]
Code
items = [x, items]
Comments bubble
This assumes that list_items is an allocatable array.
Comments bubble
This assumes that items is an allocatable array.