/usr/include/boost/mpl/aux_/preprocessed/plain
NameSizeModeActions
advance_backward.hpp22060644editdlrm
advance_forward.hpp21860644editdlrm
and.hpp11540644editdlrm
apply.hpp21610644editdlrm
apply_fwd.hpp9720644editdlrm
apply_wrap.hpp12380644editdlrm
arg.hpp28930644editdlrm
basic_bind.hpp102600644editdlrm
bind.hpp144090644editdlrm
bind_fwd.hpp9640644editdlrm
bitand.hpp31010644editdlrm
bitor.hpp30720644editdlrm
bitxor.hpp31010644editdlrm
deque.hpp97230644editdlrm
divides.hpp30840644editdlrm
equal_to.hpp20400644editdlrm
fold_impl.hpp43540644editdlrm
full_lambda.hpp112150644editdlrm
greater.hpp20240644editdlrm
greater_equal.hpp21090644editdlrm
inherit.hpp24670644editdlrm
iter_fold_if_impl.hpp42740644editdlrm
iter_fold_impl.hpp41580644editdlrm
lambda_no_ctps.hpp64140644editdlrm
less.hpp19820644editdlrm
less_equal.hpp20670644editdlrm
list.hpp96160644editdlrm
list_c.hpp107170644editdlrm
map.hpp95510644editdlrm
minus.hpp30260644editdlrm
modulus.hpp22370644editdlrm
not_equal_to.hpp20950644editdlrm
or.hpp11560644editdlrm
placeholders.hpp22110644editdlrm
plus.hpp29970644editdlrm
quote.hpp21870644editdlrm
reverse_fold_impl.hpp73720644editdlrm
reverse_iter_fold_impl.hpp67170644editdlrm
set.hpp95510644editdlrm
set_c.hpp106520644editdlrm
shift_left.hpp21930644editdlrm
shift_right.hpp22070644editdlrm
template_arity.hpp3060644editdlrm
times.hpp30260644editdlrm
unpack_args.hpp19060644editdlrm
vector.hpp97460644editdlrm
vector_c.hpp122370644editdlrm
Edit: /usr/include/boost/mpl/aux_/preprocessed/plain/advance_backward.hpp (2206B)
// 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 "boost/mpl/aux_/advance_backward.hpp" header // -- DO NOT modify by hand! namespace boost { namespace mpl { namespace aux { template< long N > struct advance_backward; template<> struct advance_backward<0> { template< typename Iterator > struct apply { typedef Iterator iter0; typedef iter0 type; }; }; template<> struct advance_backward<1> { template< typename Iterator > struct apply { typedef Iterator iter0; typedef typename prior::type iter1; typedef iter1 type; }; }; template<> struct advance_backward<2> { template< typename Iterator > struct apply { typedef Iterator iter0; typedef typename prior::type iter1; typedef typename prior::type iter2; typedef iter2 type; }; }; template<> struct advance_backward<3> { template< typename Iterator > struct apply { typedef Iterator iter0; typedef typename prior::type iter1; typedef typename prior::type iter2; typedef typename prior::type iter3; typedef iter3 type; }; }; template<> struct advance_backward<4> { template< typename Iterator > struct apply { typedef Iterator iter0; typedef typename prior::type iter1; typedef typename prior::type iter2; typedef typename prior::type iter3; typedef typename prior::type iter4; typedef iter4 type; }; }; template< long N > struct advance_backward { template< typename Iterator > struct apply { typedef typename apply_wrap1< advance_backward<4> , Iterator >::type chunk_result_; typedef typename apply_wrap1< advance_backward<( (N - 4) < 0 ? 0 : N - 4 )> , chunk_result_ >::type type; }; }; }}}