Logo

Programming-Idioms

History of Idiom 224 > diff from v13 to v14

Edit summary for version 14 by nuraby:
New C++ implementation by user [nuraby]

Version 13

2020-05-18, 18:26:01

Version 14

2020-05-18, 18:27:02

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
Imports
#include <list>
Code
items.push_front(x);
Comments bubble
any c++
Doc URL
https://en.cppreference.com/w/cpp/container/list/push_front