to_array.hpp 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. // (C) Copyright Edward Diener 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_SEQ_TO_ARRAY_HPP)
  6. #define BOOST_VMD_SEQ_TO_ARRAY_HPP
  7. #include <boost/vmd/detail/setup.hpp>
  8. #if BOOST_PP_VARIADICS
  9. #include <boost/preprocessor/control/iif.hpp>
  10. #include <boost/preprocessor/seq/to_array.hpp>
  11. #include <boost/vmd/identity.hpp>
  12. #include <boost/vmd/is_empty.hpp>
  13. /*
  14. The succeeding comments in this file are in doxygen format.
  15. */
  16. /** \file
  17. */
  18. /** \def BOOST_VMD_SEQ_TO_ARRAY(seq)
  19. \brief converts a seq to an array.
  20. seq = seq to be converted.
  21. If the seq is an empty seq it is converted to an array with 0 elements.
  22. Otherwise the seq is converted to an array with the same number of elements as the seq.
  23. */
  24. #define BOOST_VMD_SEQ_TO_ARRAY(seq) \
  25. BOOST_VMD_IDENTITY_RESULT \
  26. ( \
  27. BOOST_PP_IIF \
  28. ( \
  29. BOOST_VMD_IS_EMPTY(seq), \
  30. BOOST_VMD_IDENTITY((0,())), \
  31. BOOST_PP_SEQ_TO_ARRAY \
  32. ) \
  33. (seq) \
  34. ) \
  35. /**/
  36. #endif /* BOOST_PP_VARIADICS */
  37. #endif /* BOOST_VMD_SEQ_TO_ARRAY_HPP */