2012-07-05から1日間の記事一覧

cpprefjp更新

C++

std::forward_listにemplace_front()、push_front()、pop_front()を追加。

Boost.Algorithm C++11アルゴリズム

C++

Boost.Algorithmには、C++11で新たに追加されたアルゴリズムと、そのRange版が用意されています。 以下はall_ofの例: #include <iostream> #include <vector> #include <boost/algorithm/cxx11/all_of.hpp> bool is_even(int x) { return x % 2 == 0; } int main() { const std::vector<int> v = {2, 4, 6, 8, 10}; st</int></boost/algorithm/cxx11/all_of.hpp></vector></iostream>…