/usr/include/boost/mpl/aux_/preprocessed/no_ttp
NameSizeModeActions
advance_backward.hpp22060644editdlrm
advance_forward.hpp21860644editdlrm
and.hpp12570644editdlrm
apply.hpp27440644editdlrm
apply_fwd.hpp9720644editdlrm
apply_wrap.hpp12380644editdlrm
arg.hpp28930644editdlrm
basic_bind.hpp84820644editdlrm
bind.hpp117790644editdlrm
bind_fwd.hpp9640644editdlrm
bitand.hpp33120644editdlrm
bitor.hpp32800644editdlrm
bitxor.hpp33120644editdlrm
deque.hpp97230644editdlrm
divides.hpp32970644editdlrm
equal_to.hpp21970644editdlrm
fold_impl.hpp43540644editdlrm
full_lambda.hpp112150644editdlrm
greater.hpp21810644editdlrm
greater_equal.hpp22720644editdlrm
inherit.hpp28320644editdlrm
iter_fold_if_impl.hpp42740644editdlrm
iter_fold_impl.hpp41580644editdlrm
lambda_no_ctps.hpp64770644editdlrm
less.hpp21360644editdlrm
less_equal.hpp22270644editdlrm
list.hpp96160644editdlrm
list_c.hpp107170644editdlrm
map.hpp95510644editdlrm
minus.hpp32330644editdlrm
modulus.hpp23990644editdlrm
not_equal_to.hpp22570644editdlrm
or.hpp12580644editdlrm
placeholders.hpp22110644editdlrm
plus.hpp32010644editdlrm
quote.hpp2920644editdlrm
reverse_fold_impl.hpp73720644editdlrm
reverse_iter_fold_impl.hpp67170644editdlrm
set.hpp95510644editdlrm
set_c.hpp106520644editdlrm
shift_left.hpp24170644editdlrm
shift_right.hpp24340644editdlrm
template_arity.hpp7670644editdlrm
times.hpp32330644editdlrm
unpack_args.hpp19060644editdlrm
vector.hpp97460644editdlrm
vector_c.hpp122370644editdlrm
Edit: /usr/include/boost/mpl/aux_/preprocessed/no_ttp/unpack_args.hpp (1906B)
// 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 "boost/mpl/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 : aux::unpack_args_impl< size::value,F, Args > { }; }; BOOST_MPL_AUX_PASS_THROUGH_LAMBDA_SPEC(1, unpack_args) }}