Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:53:36

0001 
0002 //  (C) Copyright Edward Diener 2011-2015
0003 //  Use, modification and distribution are subject to the Boost Software License,
0004 //  Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
0005 //  http://www.boost.org/LICENSE_1_0.txt).
0006 
0007 #if !defined(BOOST_VMD_DETAIL_IS_SEQ_HPP)
0008 #define BOOST_VMD_DETAIL_IS_SEQ_HPP
0009 
0010 #include <boost/vmd/detail/is_entire.hpp>
0011 #include <boost/vmd/detail/seq.hpp>
0012 
0013 #define BOOST_VMD_DETAIL_IS_SEQ(seq) \
0014     BOOST_VMD_DETAIL_IS_ENTIRE \
0015         ( \
0016         BOOST_VMD_DETAIL_SEQ_SPLIT(seq) \
0017         ) \
0018 /**/
0019 
0020 #define BOOST_VMD_DETAIL_IS_SEQ_D(d,seq) \
0021     BOOST_VMD_DETAIL_IS_ENTIRE \
0022         ( \
0023         BOOST_VMD_DETAIL_SEQ_SPLIT_D(d,seq) \
0024         ) \
0025 /**/
0026 
0027 #endif /* BOOST_VMD_DETAIL_IS_SEQ_HPP */