/*============================================================================= 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_ALGORITHM_FIXED_RESULT_OF_HPP #define SPROUT_ALGORITHM_FIXED_RESULT_OF_HPP #include #include #include #include namespace sprout { namespace fixed { namespace results { // // algorithm // template struct algorithm { public: typedef typename sprout::container_construct_traits::copied_type type; }; // // shuffle // template struct shuffle { public: typedef sprout::pair< typename sprout::fixed::results::algorithm::type, typename std::decay::type > type; }; } // namespace results } // namespace fixed namespace results { using sprout::fixed::results::algorithm; using sprout::fixed::results::shuffle; } // namespace results } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_FIXED_RESULT_OF_HPP