1985-01-01から1年間の記事一覧

cpprejp 用

template<class InputIterator, class Predicate> bool all_of(InputIterator first, InputIterator last, Predicate pred) { for ( ; first != last; ++first) if (!pred(*first)) return false; return true; } template<class InputIterator, class Predicate> bool none_of(InputIterator first, InputIterator last, P…</class></class>

テンポラリ用

自己紹介 めるぽん Boost C++ Libraries ○ Boost C++をチューンアップする最先端ライブラリ × D&E × C++ Templates △ Boost.Coroutine とは 関数の途中で凍結する 別名: microthread, fiber, continuation スレッドのようなもの コンテキストの切り替えはシ…