$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: chun ping wang (cablepuff_at_[hidden])
Date: 2007-12-24 19:23:40
Hi I have two questions. How would I go about using iterator_range to
construct a new boost iterator_range of specific size_type ?
1.)
Like std::vector<int> v(40); // constructs 40 int objects but instead your
giving only
std::vector<int>::iterator beg(v.begin()), end(v.end()); // the range
2.) How would with combination of iterator_range modify an existing
sequence.
Like BOOST_FOREACH(int& x, v) but using boost iterator_range concept
instead.
Thanks.