void pop_front();
概要
先頭要素を削除する
要件
empty() == false
であること。
戻り値
なし
例外
投げない
例
#include <iostream>
#include <forward_list>
#include <algorithm>
int main()
{
std::forward_list<int> ls = {1, 2, 3};
ls.pop_front();
std::for_each(ls.begin(), ls.end(), [](int x) {
std::cout << x << std::endl;
});
}
xxxxxxxxxx
#include <iostream>
#include <forward_list>
#include <algorithm>
int main()
{
std::forward_list<int> ls = {1, 2, 3};
ls.pop_front();
std::for_each(ls.begin(), ls.end(), [](int x) {
std::cout << x << std::endl;
});
}
出力
2
3
バージョン
言語
- C++11
処理系
- Clang: ??
- GCC: 4.7.0 ✅
- ICC: ??
- Visual C++: ??