Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 943053
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T22:22:29+00:00 2026-05-15T22:22:29+00:00

Boost range library ( http://www.boost.org/doc/libs/1_35_0/libs/range/index.html ) allows us to abstract a pair of iterators

  • 0

Boost range library (http://www.boost.org/doc/libs/1_35_0/libs/range/index.html) allows us to abstract a pair of iterators into a range. Now I want to combine two ranges into one, viz:

given two ranges r1 and r2, define r which traverses [r1.begin(), r1.end()[ and then [r2.begin(), r2.end()[. Is there some way to define r as a range using r1 and r2?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T22:22:30+00:00Added an answer on May 15, 2026 at 10:22 pm

    I needed this again so I had a second look. There is a way to concat two ranges using boost/range/join.hpp. Unluckily the output range type is not included in the interface:

    #include "boost/range/join.hpp"
    #include "boost/foreach.hpp"
    #include <iostream>
    
    int main() {
            int a[] = {1, 2, 3, 4};
            int b[] = {7, 2, 3, 4};
    
            boost::iterator_range<int*> ai(&a[0], &a[4]);
            boost::iterator_range<int*> bi(&b[0], &b[4]);
            boost::iterator_range<
               boost::range_detail::
               join_iterator<int*, int*, int, int&, 
               boost::random_access_traversal_tag> > ci = boost::join(ai, bi); 
    
            BOOST_FOREACH(int& i, ci) {
                    std::cout << i; //prints 12347234
            }
    }
    

    I found the output type using the compiler messages. C++0x auto will be relevant there as well.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm aware of the range iterators in boost, and as for this reference ,
Boost is meant to be the standard non-standard C++ library that every C++ user
Boost is a very large library with many inter-dependencies -- which also takes a
When the Boost library/headers is used with VC++ 9 compilers (Visual C++ 2008 Express
First off, a big thanks to the people behind the new boost::geometry library! This
I'm trying to implement a method which returns a boost::filter_iterator pair (begin, end). I
I am experimenting with Boost.Range and the Boost Tuple. If I have a Tuple
The following program: #include <boost/range/concepts.hpp> #include <iterator> #include <istream> using boost::range_detail::SinglePassIteratorConcept; int main() {
I'm using Boost.Range to pass around some data and a container class for this
Boost is a great set of libraries and it really boosts productivity. But debugging

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.