is_seq.hpp 731 B

123456789101112131415161718192021222324252627
  1. // (C) Copyright Edward Diener 2011-2015
  2. // Use, modification and distribution are subject to the Boost Software License,
  3. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt).
  5. #if !defined(BOOST_VMD_DETAIL_IS_SEQ_HPP)
  6. #define BOOST_VMD_DETAIL_IS_SEQ_HPP
  7. #include <boost/vmd/detail/is_entire.hpp>
  8. #include <boost/vmd/detail/seq.hpp>
  9. #define BOOST_VMD_DETAIL_IS_SEQ(seq) \
  10. BOOST_VMD_DETAIL_IS_ENTIRE \
  11. ( \
  12. BOOST_VMD_DETAIL_SEQ_SPLIT(seq) \
  13. ) \
  14. /**/
  15. #define BOOST_VMD_DETAIL_IS_SEQ_D(d,seq) \
  16. BOOST_VMD_DETAIL_IS_ENTIRE \
  17. ( \
  18. BOOST_VMD_DETAIL_SEQ_SPLIT_D(d,seq) \
  19. ) \
  20. /**/
  21. #endif /* BOOST_VMD_DETAIL_IS_SEQ_HPP */