1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #if !defined(BOOST_VMD_IS_VMD_TUPLE_HPP)
- #define BOOST_VMD_IS_VMD_TUPLE_HPP
- #include <boost/vmd/detail/setup.hpp>
- #if BOOST_PP_VARIADICS
- #include <boost/preprocessor/control/iif.hpp>
- #include <boost/vmd/identity.hpp>
- #include <boost/vmd/is_empty.hpp>
- #include <boost/vmd/is_tuple.hpp>
- #define BOOST_VMD_IS_VMD_TUPLE(sequence) \
- BOOST_VMD_IDENTITY_RESULT \
- ( \
- BOOST_PP_IIF \
- ( \
- BOOST_VMD_IS_EMPTY(sequence), \
- BOOST_VMD_IDENTITY(1), \
- BOOST_VMD_IS_TUPLE \
- ) \
- (sequence) \
- ) \
- #endif
- #endif
|