Back to home page

EIC code displayed by LXR

 
 

    


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

0001 
0002 //  (C) Copyright Edward Diener 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_ARRAY_TO_TUPLE_HPP)
0008 #define BOOST_VMD_ARRAY_TO_TUPLE_HPP
0009 
0010 #include <boost/vmd/detail/setup.hpp>
0011 
0012 #if BOOST_PP_VARIADICS
0013 
0014 #include <boost/preprocessor/control/iif.hpp>
0015 #include <boost/preprocessor/array/to_tuple.hpp>
0016 #include <boost/vmd/empty.hpp>
0017 #include <boost/vmd/is_empty_array.hpp>
0018 
0019 /*
0020 
0021   The succeeding comments in this file are in doxygen format.
0022 
0023 */
0024 
0025 /** \file
0026 */
0027 
0028 /** \def BOOST_VMD_ARRAY_TO_TUPLE(array)
0029 
0030     \brief converts an array to a tuple.
0031 
0032     array = array to be converted.
0033     
0034     If the array is an array of 0 elements it is converted to an empty tuple.
0035     Otherwise the array is converted to a tuple with the same number of elements as the array.
0036 */
0037 
0038 #define BOOST_VMD_ARRAY_TO_TUPLE(array) \
0039     BOOST_PP_IIF \
0040         ( \
0041         BOOST_VMD_IS_EMPTY_ARRAY(array), \
0042         BOOST_VMD_EMPTY, \
0043         BOOST_PP_ARRAY_TO_TUPLE \
0044         ) \
0045     (array) \
0046 /**/
0047 
0048 #endif /* BOOST_PP_VARIADICS */
0049 #endif /* BOOST_VMD_ARRAY_TO_TUPLE_HPP */