/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/quote.hpp (2187B)
// 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/quote.hpp" header // -- DO NOT modify by hand! namespace boost { namespace mpl { template< typename T, bool has_type_ > struct quote_impl : T { }; template< typename T > struct quote_impl< T,false > { typedef T type; }; template< template< typename P1 > class F , typename Tag = void_ > struct quote1 { template< typename U1 > struct apply : quote_impl< F , aux::has_type< F >::value > { }; }; template< template< typename P1, typename P2 > class F , typename Tag = void_ > struct quote2 { template< typename U1, typename U2 > struct apply : quote_impl< F< U1,U2 > , aux::has_type< F< U1,U2 > >::value > { }; }; template< template< typename P1, typename P2, typename P3 > class F , typename Tag = void_ > struct quote3 { template< typename U1, typename U2, typename U3 > struct apply : quote_impl< F< U1,U2,U3 > , aux::has_type< F< U1,U2,U3 > >::value > { }; }; template< template< typename P1, typename P2, typename P3, typename P4 > class F , typename Tag = void_ > struct quote4 { template< typename U1, typename U2, typename U3, typename U4 > struct apply : quote_impl< F< U1,U2,U3,U4 > , aux::has_type< F< U1,U2,U3,U4 > >::value > { }; }; template< template< typename P1, typename P2, typename P3, typename P4 , typename P5 > class F , typename Tag = void_ > struct quote5 { template< typename U1, typename U2, typename U3, typename U4 , typename U5 > struct apply : quote_impl< F< U1,U2,U3,U4,U5 > , aux::has_type< F< U1,U2,U3,U4,U5 > >::value > { }; }; }}