0

基本的にboost::filter_iterator、いくつかの条件で反復子をフィルター処理するために使用している状況がいくつかあります。2つの条件を同時にフィルタリングしたい状況があり、これにはすでにいくつかの既存のコードがありますが、ブーストまたは標準ライブラリでこれを行う慣用的な方法があるかどうか知りたいです:

    /*! TODO: Surely there should be something in std/boost to achieve this??? */
    /*! Filter for things that satisfy F1 and F2 */
    template <
        typename F1,
        typename F2,
        typename ArgT
    >
    struct filter_and
    {
        F1 f1;
        F2 f2;

        filter_and(F1 _f1, F2 _f2): f1(_f1), f2(_f2)
        {}

        inline bool operator() (ArgT const& arg) const
        {
            return f1(arg) && f2(arg);
        }
    };

ソリューションに c++11 が必要な場合、最新の MSVC で処理できる限り問題ありません。

4

1 に答える 1

1

これを試して:make_filter_iterator( it, [=](value_type const& v) { return f1(v) && f2(v); } );

より凝ったもののために...

bool and_in_order() { return true; }
template<typename F0, typename Funcs...>
bool and_in_order( F0&& f0, Funcs&&... funcs ) {
  return f0() && and_in_order(funcs...);
}

template<typename... Funcs>
struct and_unary_functors {
  std::tuple<Funcs...> funcs;
  template<typename Arg, typename seq=typename make_seq<sizeof...(Funcs)>::type>
  bool operator()(Arg&& arg) const;

  template<typename Arg, int...s>
  bool operator()<Arg, seq<s...>>(Arg&& arg) const {
    return and_in_order( [&](){ return get<s>(funcs)(arg); }... );
  }
};

template<typename... Funcs>
and_unary_functors<Funcs> make_and_unary( Funcs const&... funcs ) {
  return {std::make_tuple(funcs...)};
};

auto filter_it = make_filter_iterator( base_iterator, make_and_unary( f1, f2, f3, f4 ) );

またはそのようなばかげたこと。

于 2013-02-26T20:39:57.423 に答える