Sprout/sprout/weed/attr_cnv/results/times.hpp

80 lines
2.4 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
2015-01-10 10:13:57 +00:00
Copyright (c) 2011-2015 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)
=============================================================================*/
2014-05-29 16:22:00 +00:00
#ifndef SPROUT_WEED_ATTR_CNV_RESULTS_TIMES_HPP
#define SPROUT_WEED_ATTR_CNV_RESULTS_TIMES_HPP
2011-11-13 08:54:38 +00:00
#include <type_traits>
#include <sprout/config.hpp>
#include <sprout/workaround/std/cstddef.hpp>
2011-11-13 08:54:38 +00:00
#include <sprout/string.hpp>
2013-02-07 14:12:57 +00:00
#include <sprout/array/array.hpp>
2011-11-13 08:54:38 +00:00
#include <sprout/algorithm/string/join.hpp>
2013-03-25 03:43:47 +00:00
#include <sprout/type_traits/identity.hpp>
2011-11-13 08:54:38 +00:00
#include <sprout/weed/unused.hpp>
#include <sprout/weed/traits/type/is_char_type.hpp>
#include <sprout/weed/traits/type/is_container.hpp>
#include <sprout/weed/traits/type/is_unused.hpp>
namespace sprout {
namespace weed {
namespace attr_cnv {
namespace results {
2011-11-13 08:54:38 +00:00
//
// times
//
template<std::size_t Limit, typename T, typename = void>
struct times;
// times<N>(container<V, K>) -> container<V, N * K>
template<std::size_t Limit, typename T>
struct times<
Limit,
T,
typename std::enable_if<
Limit != std::size_t(-1)
&& sprout::weed::traits::is_container<T>::value
>::type
2013-03-25 03:43:47 +00:00
>
: public sprout::algorithm::results::join<
2011-11-13 08:54:38 +00:00
sprout::array<T, Limit>
2013-03-25 03:43:47 +00:00
>
{};
2011-11-13 08:54:38 +00:00
// times<N>(V) -> container<V, N>
template<std::size_t Limit, typename T>
struct times<
Limit,
T,
typename std::enable_if<
Limit != std::size_t(-1)
&& !sprout::weed::traits::is_container<T>::value
&& !sprout::weed::traits::is_unused<T>::value
>::type
2013-03-25 03:43:47 +00:00
>
: public std::conditional<
2011-11-13 08:54:38 +00:00
sprout::weed::traits::is_char_type<T>::value,
sprout::basic_string<T, Limit>,
sprout::array<T, Limit>
2013-03-25 03:43:47 +00:00
>
{};
2011-11-13 08:54:38 +00:00
// times<N>(unused) -> unused
template<std::size_t Limit, typename T>
struct times<
Limit,
T,
typename std::enable_if<
sprout::weed::traits::is_unused<T>::value
>::type
2013-03-25 03:43:47 +00:00
>
: public sprout::identity<sprout::weed::unused>
{};
} // namespace results
2011-11-13 08:54:38 +00:00
} // namespace attr_cnv
} // namespace weed
} // namespace sprout
2014-05-29 16:22:00 +00:00
#endif // #ifndef SPROUT_WEED_ATTR_CNV_RESULTS_TIMES_HPP