Logo

Programming-Idioms

History of Idiom 171 > diff from v17 to v18

Edit summary for version 18 by chardan:
New Lua implementation by user [chardan]

Version 17

2019-09-27, 20:54:06

Version 18

2019-09-27, 23:12:17

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.push_back(x);
Comments bubble
Where s is a std::list<>.