これは、プリントアウトしstd::any_of
ユーザ定義のBoost.MPLアルゴリズムにバイナリ述語を渡す方法は?
#include <iostream> // cout
#include <type_traits> // is_base_of, is_pod
#include <boost/mpl/apply.hpp> // apply
#include <boost/mpl/fold.hpp> // fold
#include <boost/mpl/lambda.hpp> // lambda, _1, _2
#include <boost/mpl/logical.hpp> // and_, true_
#include <boost/mpl/vector.hpp> // vector
template
<
typename Sequence,
typename Pred
>
struct all_of
:
boost::mpl::fold<
Sequence,
boost::mpl::true_,
boost::mpl::lambda<
boost::mpl::and_<
boost::mpl::_1,
boost::mpl::apply< Pred, boost::mpl::_2 >
>
>
>
{};
typedef int P1; typedef char P2; typedef float P3;
typedef boost::mpl::vector<
P1, P2, P3
> pod_types;
struct B {}; struct D1: B {}; struct D2: B {}; struct D3: B {};
typedef boost::mpl::vector<
D1, D2, D3
> derived_types;
int main()
{
std::cout << (std::is_pod<P1>::value) << '\n'; // true
std::cout << (std::is_pod<P2>::value) << '\n'; // true
std::cout << (std::is_pod<P3>::value) << '\n'; // true
std::cout << (
all_of<
pod_types,
std::is_pod<boost::mpl::_1>
>::type::value // true
) << '\n';
std::cout << (std::is_base_of<B, D1>::value) << '\n'; // true
std::cout << (std::is_base_of<B, D2>::value) << '\n'; // true
std::cout << (std::is_base_of<B, D3>::value) << '\n'; // true
std::cout << (
all_of<
derived_types,
std::is_base_of< B, boost::mpl::_1 >
>::type::value // false (but should be true)
) << '\n';
return 0;
}
のBoost.MPLスタイルのメタプログラミングのバージョンでは、次の試みを考えてみましょう:1 1 1 1 1 1 1 0すなわち、述語が生成するとして渡されたstd::is_base_of
とall_of
への最後の呼び出し偽です。なぜこれは機能しませんか? Apperently、基底クラスB
は、述語に正しくバインドされません。どのようにバイナリ述語を渡すべきですか? mpl :: lambdaまたはmpl :: bindのいくつかの組み合わせ?リュックTourailleの優れた回答に基づいて
UPDATE
は、ここで追加ボーナスとして、私の質問にラムダを含まない溶液であるコンパイル時none_of
のバージョンとany_of
template<typename Sequence, typename Pred>
struct all_of
:
std::is_same< typename
boost::mpl::find_if<
Sequence,
boost::mpl::not_<Pred>
>::type, typename
boost::mpl::end<Sequence>::type
>
{};
template<typename Sequence, typename Pred>
struct none_of
:
all_of< Sequence, boost::mpl::not_<Pred> >
{};
template<typename Sequence, typename Pred>
struct any_of
:
boost::mpl::not_< none_of< Sequence, Pred > >
{};
それは最初のケースでは動作しないか:あなたはpod_types' '非ポッドを追加した場合、あなたは' all_ofは 'まだtrueを返すことがわかります。 –
@Luc Touraille十分にテストすることはできません!私は否定的な結果もテストすべきだった。面白いことに、単項述語は真と二項述語に写像して偽に写像する。 – TemplateRex