/usr/include/boost/mpl/aux_/preprocessed/bcc551
NameSizeModeActions
advance_backward.hpp22060644editdlrm
advance_forward.hpp21860644editdlrm
and.hpp12570644editdlrm
apply.hpp27440644editdlrm
apply_fwd.hpp9720644editdlrm
apply_wrap.hpp69560644editdlrm
arg.hpp28930644editdlrm
basic_bind.hpp73260644editdlrm
bind.hpp106230644editdlrm
bind_fwd.hpp8220644editdlrm
bitand.hpp32080644editdlrm
bitor.hpp31780644editdlrm
bitxor.hpp32080644editdlrm
deque.hpp97230644editdlrm
divides.hpp31910644editdlrm
equal_to.hpp20970644editdlrm
fold_impl.hpp43540644editdlrm
full_lambda.hpp115100644editdlrm
greater.hpp20800644editdlrm
greater_equal.hpp21710644editdlrm
inherit.hpp28320644editdlrm
iter_fold_if_impl.hpp42740644editdlrm
iter_fold_impl.hpp41580644editdlrm
lambda_no_ctps.hpp64770644editdlrm
less.hpp20350644editdlrm
less_equal.hpp21260644editdlrm
list.hpp96160644editdlrm
list_c.hpp107170644editdlrm
map.hpp95510644editdlrm
minus.hpp31310644editdlrm
modulus.hpp22930644editdlrm
not_equal_to.hpp21560644editdlrm
or.hpp12580644editdlrm
placeholders.hpp22110644editdlrm
plus.hpp31010644editdlrm
quote.hpp2920644editdlrm
reverse_fold_impl.hpp88700644editdlrm
reverse_iter_fold_impl.hpp82500644editdlrm
set.hpp95510644editdlrm
set_c.hpp106520644editdlrm
shift_left.hpp22520644editdlrm
shift_right.hpp22670644editdlrm
template_arity.hpp7670644editdlrm
times.hpp31310644editdlrm
unpack_args.hpp19850644editdlrm
vector.hpp97460644editdlrm
vector_c.hpp122370644editdlrm
Edit: /usr/include/boost/mpl/aux_/preprocessed/bcc551/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; }; }; }}}