
27 Oct
2008
27 Oct
'08
5 p.m.
On Mon, Oct 27, 2008 at 7:24 AM, Robert Jones <robertgbjones@gmail.com> wrote:
Given two ranges (say vectors), I'd like to be able to generate an iterable composite, and iterate through that, something like
vector<int> v1; vector<int> v2;
typedef zip_composite<int, int> Z; Z zip( v1, v2 );
As written, this would require erasure of the range/container type. Such a thing is not impossible (google around for any_iterator) but is perhaps something for a range_ex_ex rather than range_ex.