--- In Boost-Users@y..., Jon Kalb
At 3:01 AM +0000 3/15/02, rodrigo_braz wrote:
copy(boost::make_filter_iterator
(m.begin, m.end ()), copy(boost::make_filter_iterator
(m.begin(), m.end ()),
Ouch. Ok, sorry about that. Actually my main problem with this
iterator is in the code below:
#include <vector>
#include "boost/iterator_adaptors.hpp"
using namespace std;
using namespace boost;
struct is_active {
bool operator()(int p) { return 0 < p; }
};
struct A
{
typedef
filter_iterator_generator