1
4

1 回答 1

2

使用:

typedef boost::fusion::result_of::filter_if<
            map_type
            , 
            boost::mpl::lambda<
                boost::mpl::contains<
                    vec_ids_type
                    , 
                    get_first<
                        boost::mpl::_1
                    >
                >
            >::type
        >::type view_type;

正如您在此处看到的那样,似乎可以使其正常工作。目前 LiveWorkspace 使用 boost 1.53.0。

于 2013-04-03T21:08:42.670 回答