2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2014-01-08 07:48:12 +00:00
|
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
=============================================================================*/
|
2012-06-22 10:14:21 +00:00
|
|
|
#ifndef SPROUT_ARRAY_MAKE_ARRAY_HPP
|
|
|
|
#define SPROUT_ARRAY_MAKE_ARRAY_HPP
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
2013-04-06 04:06:51 +00:00
|
|
|
#include <sprout/index_tuple/metafunction.hpp>
|
2012-06-22 10:14:21 +00:00
|
|
|
#include <sprout/array/array.hpp>
|
|
|
|
#include <sprout/utility/forward.hpp>
|
2013-03-21 13:11:40 +00:00
|
|
|
#include <sprout/type_traits/common_decay.hpp>
|
2012-06-22 10:14:21 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
2014-04-15 03:31:13 +00:00
|
|
|
namespace detail {
|
|
|
|
enum make_array_t {
|
|
|
|
make_array_in_common_elements
|
|
|
|
};
|
|
|
|
} // namespace detail
|
2012-06-22 10:14:21 +00:00
|
|
|
//
|
|
|
|
// make_array
|
|
|
|
//
|
|
|
|
template<typename T, typename... Types>
|
2013-10-25 15:32:36 +00:00
|
|
|
inline SPROUT_CONSTEXPR sprout::array<typename std::remove_cv<T>::type, sizeof...(Types)>
|
2012-10-04 16:53:39 +00:00
|
|
|
make_array(Types&&... args) {
|
2014-02-22 07:32:51 +00:00
|
|
|
return sprout::array<typename std::remove_cv<T>::type, sizeof...(Types)>{{T(SPROUT_FORWARD(Types, args))...}};
|
2012-06-22 10:14:21 +00:00
|
|
|
}
|
2014-04-15 03:31:13 +00:00
|
|
|
template<sprout::detail::make_array_t = sprout::detail::make_array_in_common_elements, typename... Types>
|
|
|
|
inline SPROUT_CONSTEXPR sprout::array<typename sprout::common_decay<Types...>::type, sizeof...(Types)>
|
|
|
|
make_array(Types&&... args) {
|
|
|
|
typedef sprout::array<
|
|
|
|
typename sprout::common_decay<Types...>::type,
|
|
|
|
sizeof...(Types)
|
|
|
|
> type;
|
|
|
|
return type{{typename sprout::common_decay<Types...>::type(SPROUT_FORWARD(Types, args))...}};
|
|
|
|
}
|
2012-06-22 10:14:21 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// make_common_array
|
|
|
|
//
|
|
|
|
template<typename... Types>
|
2013-10-25 15:32:36 +00:00
|
|
|
inline SPROUT_CONSTEXPR sprout::array<typename sprout::common_decay<Types...>::type, sizeof...(Types)>
|
2012-10-04 16:53:39 +00:00
|
|
|
make_common_array(Types&&... args) {
|
2014-04-15 03:31:13 +00:00
|
|
|
return sprout::make_array(SPROUT_FORWARD(Types, args)...);
|
2012-06-22 10:14:21 +00:00
|
|
|
}
|
2013-08-03 11:03:13 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// convert_array
|
2014-02-20 15:25:55 +00:00
|
|
|
// [[deprecated]]
|
2013-08-03 11:03:13 +00:00
|
|
|
//
|
|
|
|
template<typename T, typename Converter, typename... Types>
|
2014-02-20 15:25:55 +00:00
|
|
|
SPROUT_DEPRECATED
|
2013-08-03 11:03:13 +00:00
|
|
|
inline SPROUT_CONSTEXPR sprout::array<T, sizeof...(Types)>
|
|
|
|
convert_array(Converter&& conv, Types&&... args) {
|
2014-02-22 07:32:51 +00:00
|
|
|
return sprout::make_array<T>(SPROUT_FORWARD(Converter, conv)(SPROUT_FORWARD(Types, args))...);
|
2013-08-03 11:03:13 +00:00
|
|
|
}
|
2012-06-22 10:14:21 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ARRAY_MAKE_ARRAY_HPP
|