Logo

Programming-Idioms

History of Idiom 171 > diff from v24 to v25

Edit summary for version 25 by pocico:
New Lua implementation by user [pocico]

Version 24

2020-02-09, 16:53:54

Version 25

2020-04-29, 02:54:15

Idiom #171 Add an element at the end of a list

Append element x to the list s.

Idiom #171 Add an element at the end of a list

Append element x to the list s.

Extra Keywords
push grow
Extra Keywords
push grow
Code
s[#s + 1] = x
Comments bubble
Assuming that s is a contiguous array.