Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a container facade in Boost?

I'm learning how to use iterator_facade to hide some boilerplate of iterator implementation. In my current use case I'm wrapping another container (from .NET code, actually) so I need the begin(), end(), typedefs, etc. At a minimum I want the resulting type to work with BOOST_FOREACH. Is there a convenient thing in boost to simplify that?

like image 836
Matt Chambers Avatar asked Jul 04 '11 21:07

Matt Chambers


1 Answers

I would wrap a pair of iterators from the given container in a boost::iterator_range from the Boost.Range library.

like image 163
ildjarn Avatar answered Oct 26 '22 09:10

ildjarn