c++ - Does boost offer make_zip_range? -
c++ - Does boost offer make_zip_range? -
here: http://stackoverflow.com/a/20703588/1593077 comment suggests useful construct, similar make_zip_iterator
, ranges: takes tuple of ranges , produces new range - begin() , end() iterators appropriate zip iterators.
now, should not hard implement, wondering - isn't offered boost somehow?
boost.range providing combine()
function zip_iterator
's range.
http://www.boost.org/doc/libs/1_56_0/libs/range/doc/html/range/reference/utilities/combine.html
c++ boost iterator tuples commutativity
Comments
Post a Comment