Logo

Programming-Idioms

History of Idiom 224 > diff from v12 to v13

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

Version 12

2020-04-29, 09:36:21

Version 13

2020-05-18, 18:26:01

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.emplace_front(x);
Comments bubble
c++ 11
Doc URL
https://en.cppreference.com/w/cpp/container/list/emplace_front