File indexing completed on 2025-01-18 09:52:54
0001
0002
0003
0004
0005
0006
0007 #if !defined(BOOST_TTI_DETAIL_LAMBDA_HPP)
0008 #define BOOST_TTI_DETAIL_LAMBDA_HPP
0009
0010 #include <boost/mpl/or.hpp>
0011 #include <boost/tti/detail/dmetafunc.hpp>
0012 #include <boost/tti/detail/dplaceholder.hpp>
0013 #include <boost/tti/gen/namespace_gen.hpp>
0014
0015 namespace boost
0016 {
0017 namespace tti
0018 {
0019 namespace detail
0020 {
0021 template <class BOOST_TTI_DETAIL_TP_T>
0022 struct is_lambda_expression :
0023 boost::mpl::or_
0024 <
0025 BOOST_TTI_NAMESPACE::detail::is_metafunction_class<BOOST_TTI_DETAIL_TP_T>,
0026 BOOST_TTI_NAMESPACE::detail::is_placeholder_expression<BOOST_TTI_DETAIL_TP_T>
0027 >
0028 {
0029 };
0030 }
0031 }
0032 }
0033
0034 #endif