/*============================================================================= Copyright (c) 2011-2014 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) =============================================================================*/ #ifndef SPROUT_ARRAY_NESTED_ARRAY_HPP #define SPROUT_ARRAY_NESTED_ARRAY_HPP #include #include #include #include namespace sprout { namespace detail { template struct nested_array_t_impl; template struct nested_array_t_impl : public sprout::identity > {}; template struct nested_array_t_impl : public sprout::detail::nested_array_t_impl, Ms...> {}; } // namespace detail // // nested_array_t // template struct nested_array_t : public sprout::detail::nested_array_t_impl {}; #if SPROUT_USE_TEMPLATE_ALIASES // // nested_array // template using nested_array = typename sprout::nested_array_t::type; #endif // #if SPROUT_USE_TEMPLATE_ALIASES } // namespace sprout #endif // #ifndef SPROUT_ARRAY_NESTED_ARRAY_HPP