Logo

Programming-Idioms

History of Idiom 44 > diff from v36 to v37

Edit summary for version 37 by hjlpb:
New JS implementation by user [hjlpb]

Version 36

2019-10-14, 12:24:36

Version 37

2019-10-30, 12:25:29

Idiom #44 Insert element in list

Insert element x at position i in list s. Further elements must be shifted to the right.

Illustration

Idiom #44 Insert element in list

Insert element x at position i in list s. Further elements must be shifted to the right.

Illustration
Code
s.aplice(i,0,x)