/usr/include/boost/mpl/aux_/preprocessed/bcc
NameSizeModeActions
advance_backward.hpp22020644editdlrm
advance_forward.hpp21820644editdlrm
and.hpp12580644editdlrm
apply.hpp27450644editdlrm
apply_fwd.hpp9730644editdlrm
apply_wrap.hpp70780644editdlrm
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.hpp23460644editdlrm
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/unpack_args.hpp (1986B)
// Copyright Aleksey Gurtovoy 2002-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 "unpack_args.hpp" header // -- DO NOT modify by hand! namespace boost { namespace mpl { namespace aux { template< int size, typename F, typename Args > struct unpack_args_impl; template< typename F, typename Args > struct unpack_args_impl< 0,F,Args > : apply0< F > { }; template< typename F, typename Args > struct unpack_args_impl< 1,F,Args > : apply1< F , typename at_c< Args,0 >::type > { }; template< typename F, typename Args > struct unpack_args_impl< 2,F,Args > : apply2< F , typename at_c< Args,0 >::type, typename at_c< Args,1 >::type > { }; template< typename F, typename Args > struct unpack_args_impl< 3,F,Args > : apply3< F , typename at_c< Args,0 >::type, typename at_c< Args,1 >::type , typename at_c< Args,2 >::type > { }; template< typename F, typename Args > struct unpack_args_impl< 4,F,Args > : apply4< F , typename at_c< Args,0 >::type, typename at_c< Args,1 >::type , typename at_c< Args,2 >::type, typename at_c< Args,3 >::type > { }; template< typename F, typename Args > struct unpack_args_impl< 5,F,Args > : apply5< F , typename at_c< Args,0 >::type, typename at_c< Args,1 >::type , typename at_c< Args,2 >::type, typename at_c< Args,3 >::type , typename at_c< Args,4 >::type > { }; } template< typename F > struct unpack_args { template< typename Args > struct apply { typedef typename aux::unpack_args_impl< size::value , F , Args >::type type; }; }; BOOST_MPL_AUX_PASS_THROUGH_LAMBDA_SPEC(1, unpack_args) }}