18 Jun
2007
18 Jun
'07
2:53 p.m.
On Mon, June 18, 2007 09:58, Vít Kasal wrote:
Hi,
I have a problem with using pop_front on an integral sequence.
pop_front< vector_c
>::type results in
vector
Is it intended behavior? Is there some way to get
vector_c
> Thanks Vit
_______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
I think vector_c is implemented as vector< mpl::int_<c2>, ... mpl::int_<cn> >. May be you should try using iterator_range which will result in a view to your initial vector and probably have a better compiler performance. With Kind Regards, Ovanes Markarian