/*============================================================================= 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) =============================================================================*/ #ifndef SPROUT_ALGORITHM_FIT_RESULT_OF_HPP #define SPROUT_ALGORITHM_FIT_RESULT_OF_HPP #include #include #include #include #include #include namespace sprout { namespace fit { namespace result_of { // // algorithm // template struct algorithm { public: typedef sprout::sub_array< typename std::decay< typename sprout::containers::internal< typename sprout::fixed::result_of::algorithm::type >::type >::type > type; }; } // namespace result_of } // namespace fit } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_FIT_RESULT_OF_HPP