/usr/include/boost/mpl/aux_/preprocessed/bcc_pre590
NameSizeModeActions
advance_backward.hpp22020644editdlrm
advance_forward.hpp21820644editdlrm
and.hpp12580644editdlrm
apply.hpp27450644editdlrm
apply_fwd.hpp9730644editdlrm
apply_wrap.hpp69570644editdlrm
arg.hpp26900644editdlrm
basic_bind.hpp71180644editdlrm
bind.hpp104200644editdlrm
bind_fwd.hpp8230644editdlrm
bitand.hpp32090644editdlrm
bitor.hpp31790644editdlrm
bitxor.hpp32090644editdlrm
deque.hpp97240644editdlrm
divides.hpp31920644editdlrm
equal_to.hpp20980644editdlrm
fold_impl.hpp43500644editdlrm
full_lambda.hpp115060644editdlrm
greater.hpp20810644editdlrm
greater_equal.hpp21720644editdlrm
inherit.hpp27500644editdlrm
iter_fold_if_impl.hpp42700644editdlrm
iter_fold_impl.hpp41540644editdlrm
lambda_no_ctps.hpp64730644editdlrm
less.hpp20360644editdlrm
less_equal.hpp21270644editdlrm
list.hpp96170644editdlrm
list_c.hpp107180644editdlrm
map.hpp95520644editdlrm
minus.hpp31320644editdlrm
modulus.hpp22940644editdlrm
not_equal_to.hpp21570644editdlrm
or.hpp12590644editdlrm
placeholders.hpp22120644editdlrm
plus.hpp31020644editdlrm
quote.hpp2930644editdlrm
reverse_fold_impl.hpp88660644editdlrm
reverse_iter_fold_impl.hpp82460644editdlrm
set.hpp95520644editdlrm
set_c.hpp106530644editdlrm
shift_left.hpp22530644editdlrm
shift_right.hpp22680644editdlrm
template_arity.hpp7630644editdlrm
times.hpp31320644editdlrm
unpack_args.hpp19860644editdlrm
vector.hpp97470644editdlrm
vector_c.hpp122380644editdlrm
Edit: /usr/include/boost/mpl/aux_/preprocessed/bcc_pre590/advance_forward.hpp (2182B)
// Copyright Aleksey Gurtovoy 2000-2004 // // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // // *Preprocessed* version of the main "advance_forward.hpp" header // -- DO NOT modify by hand! namespace boost { namespace mpl { namespace aux { template< long N > struct advance_forward; template<> struct advance_forward<0> { template< typename Iterator > struct apply { typedef Iterator iter0; typedef iter0 type; }; }; template<> struct advance_forward<1> { template< typename Iterator > struct apply { typedef Iterator iter0; typedef typename next::type iter1; typedef iter1 type; }; }; template<> struct advance_forward<2> { template< typename Iterator > struct apply { typedef Iterator iter0; typedef typename next::type iter1; typedef typename next::type iter2; typedef iter2 type; }; }; template<> struct advance_forward<3> { template< typename Iterator > struct apply { typedef Iterator iter0; typedef typename next::type iter1; typedef typename next::type iter2; typedef typename next::type iter3; typedef iter3 type; }; }; template<> struct advance_forward<4> { template< typename Iterator > struct apply { typedef Iterator iter0; typedef typename next::type iter1; typedef typename next::type iter2; typedef typename next::type iter3; typedef typename next::type iter4; typedef iter4 type; }; }; template< long N > struct advance_forward { template< typename Iterator > struct apply { typedef typename apply_wrap1< advance_forward<4> , Iterator >::type chunk_result_; typedef typename apply_wrap1< advance_forward<( (N - 4) < 0 ? 0 : N - 4 )> , chunk_result_ >::type type; }; }; }}}