Logo

Programming-Idioms

History of Idiom 171 > diff from v26 to v27

Edit summary for version 27 by programming-idioms.org:
[Lua] Emphasize in comments

Version 26

2020-04-29, 02:56:04

Version 27

2020-05-02, 18:07:32

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.

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