2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
|
|
|
Copyright (c) 2011-2013 Bolero MURAKAMI
|
|
|
|
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)
|
|
|
|
=============================================================================*/
|
2011-11-13 08:54:38 +00:00
|
|
|
#ifndef SPROUT_WEED_ATTR_CNV_TIMES_HPP
|
|
|
|
#define SPROUT_WEED_ATTR_CNV_TIMES_HPP
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
2013-02-07 14:12:57 +00:00
|
|
|
#include <sprout/array/array.hpp>
|
2012-03-31 07:24:13 +00:00
|
|
|
#include <sprout/container/make.hpp>
|
2011-11-13 08:54:38 +00:00
|
|
|
#include <sprout/algorithm/string/join.hpp>
|
|
|
|
#include <sprout/weed/unused.hpp>
|
|
|
|
#include <sprout/weed/traits/type/is_container.hpp>
|
|
|
|
#include <sprout/weed/traits/type/is_unused.hpp>
|
|
|
|
#include <sprout/weed/attr_cnv/result_of/times.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace weed {
|
|
|
|
namespace attr_cnv {
|
|
|
|
//
|
|
|
|
// times
|
|
|
|
//
|
|
|
|
// times<N>(container<V, K>) -> container<V, N * K>
|
|
|
|
template<std::size_t Limit, typename T, typename... Args>
|
|
|
|
static SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
sprout::weed::traits::is_container<T>::value,
|
|
|
|
typename sprout::weed::attr_cnv::result_of::times<Limit, T>::type
|
|
|
|
>::type times(Args const&... args) {
|
|
|
|
return sprout::algorithm::join(
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::make<sprout::array<T, Limit> >(args...)
|
2011-11-13 08:54:38 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
// times<N>(V) -> container<V, N>
|
|
|
|
template<std::size_t Limit, typename T, typename... Args>
|
|
|
|
static SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
!sprout::weed::traits::is_container<T>::value
|
|
|
|
&& !sprout::weed::traits::is_unused<T>::value,
|
|
|
|
typename sprout::weed::attr_cnv::result_of::times<Limit, T>::type
|
|
|
|
>::type times(Args const&... args) {
|
|
|
|
typedef typename sprout::weed::attr_cnv::result_of::times<Limit, T>::type type;
|
2012-03-31 07:24:13 +00:00
|
|
|
return sprout::make<type>(args...);
|
2011-11-13 08:54:38 +00:00
|
|
|
}
|
|
|
|
// times<N>(unused) -> unused
|
|
|
|
template<std::size_t Limit, typename T, typename... Args>
|
|
|
|
static SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
sprout::weed::traits::is_unused<T>::value,
|
|
|
|
typename sprout::weed::attr_cnv::result_of::times<Limit, T>::type
|
2013-07-22 13:00:09 +00:00
|
|
|
>::type times(Args const&...) {
|
2011-11-13 08:54:38 +00:00
|
|
|
return sprout::weed::unused();
|
|
|
|
}
|
|
|
|
} // namespace attr_cnv
|
|
|
|
} // namespace weed
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_WEED_ATTR_CNV_TIMES_HPP
|