/usr/include/boost/proto/detail/preprocessed
NameSizeModeActions
and_n.hpp156630644editdlrm
args.hpp57400644editdlrm
basic_expr.hpp223530644editdlrm
class_member_traits.hpp58870644editdlrm
deduce_domain_n.hpp81920644editdlrm
deep_copy.hpp169580644editdlrm
expr.hpp1236950644editdlrm
expr_variadic.hpp590840644editdlrm
extends_funop.hpp131150644editdlrm
extends_funop_const.hpp70160644editdlrm
funop.hpp150320644editdlrm
generate_by_value.hpp192000644editdlrm
lambda_matches.hpp79410644editdlrm
make_expr.hpp120040644editdlrm
make_expr_.hpp218140644editdlrm
make_expr_funop.hpp90580644editdlrm
matches_.hpp387500644editdlrm
memfun_funop.hpp39740644editdlrm
or_n.hpp54570644editdlrm
poly_function_funop.hpp140110644editdlrm
poly_function_traits.hpp129850644editdlrm
template_arity_helper.hpp34510644editdlrm
traits.hpp521950644editdlrm
unpack_expr_.hpp452660644editdlrm
vararg_matches_impl.hpp74220644editdlrm
Edit: /usr/include/boost/proto/detail/preprocessed/memfun_funop.hpp (3974B)
/////////////////////////////////////////////////////////////////////////////// // memfun_funop.hpp // Contains overloads of memfun::operator(). // // Copyright 2008 Eric Niebler. 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) template BOOST_FORCEINLINE result_type operator()(A0 const &a0) const { BOOST_PROTO_USE_GET_POINTER(); return (BOOST_PROTO_GET_POINTER(V, obj) ->* pmf)(a0); } template BOOST_FORCEINLINE result_type operator()(A0 const &a0 , A1 const &a1) const { BOOST_PROTO_USE_GET_POINTER(); return (BOOST_PROTO_GET_POINTER(V, obj) ->* pmf)(a0 , a1); } template BOOST_FORCEINLINE result_type operator()(A0 const &a0 , A1 const &a1 , A2 const &a2) const { BOOST_PROTO_USE_GET_POINTER(); return (BOOST_PROTO_GET_POINTER(V, obj) ->* pmf)(a0 , a1 , a2); } template BOOST_FORCEINLINE result_type operator()(A0 const &a0 , A1 const &a1 , A2 const &a2 , A3 const &a3) const { BOOST_PROTO_USE_GET_POINTER(); return (BOOST_PROTO_GET_POINTER(V, obj) ->* pmf)(a0 , a1 , a2 , a3); } template BOOST_FORCEINLINE result_type operator()(A0 const &a0 , A1 const &a1 , A2 const &a2 , A3 const &a3 , A4 const &a4) const { BOOST_PROTO_USE_GET_POINTER(); return (BOOST_PROTO_GET_POINTER(V, obj) ->* pmf)(a0 , a1 , a2 , a3 , a4); } template BOOST_FORCEINLINE result_type operator()(A0 const &a0 , A1 const &a1 , A2 const &a2 , A3 const &a3 , A4 const &a4 , A5 const &a5) const { BOOST_PROTO_USE_GET_POINTER(); return (BOOST_PROTO_GET_POINTER(V, obj) ->* pmf)(a0 , a1 , a2 , a3 , a4 , a5); } template BOOST_FORCEINLINE result_type operator()(A0 const &a0 , A1 const &a1 , A2 const &a2 , A3 const &a3 , A4 const &a4 , A5 const &a5 , A6 const &a6) const { BOOST_PROTO_USE_GET_POINTER(); return (BOOST_PROTO_GET_POINTER(V, obj) ->* pmf)(a0 , a1 , a2 , a3 , a4 , a5 , a6); } template BOOST_FORCEINLINE result_type operator()(A0 const &a0 , A1 const &a1 , A2 const &a2 , A3 const &a3 , A4 const &a4 , A5 const &a5 , A6 const &a6 , A7 const &a7) const { BOOST_PROTO_USE_GET_POINTER(); return (BOOST_PROTO_GET_POINTER(V, obj) ->* pmf)(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7); } template BOOST_FORCEINLINE result_type operator()(A0 const &a0 , A1 const &a1 , A2 const &a2 , A3 const &a3 , A4 const &a4 , A5 const &a5 , A6 const &a6 , A7 const &a7 , A8 const &a8) const { BOOST_PROTO_USE_GET_POINTER(); return (BOOST_PROTO_GET_POINTER(V, obj) ->* pmf)(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8); } template BOOST_FORCEINLINE result_type operator()(A0 const &a0 , A1 const &a1 , A2 const &a2 , A3 const &a3 , A4 const &a4 , A5 const &a5 , A6 const &a6 , A7 const &a7 , A8 const &a8 , A9 const &a9) const { BOOST_PROTO_USE_GET_POINTER(); return (BOOST_PROTO_GET_POINTER(V, obj) ->* pmf)(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8 , a9); }