mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-16 10:49:05 +00:00
39 lines
1.2 KiB
C++
39 lines
1.2 KiB
C++
/*=============================================================================
|
|
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_FIT_RESULT_OF_HPP
|
|
#define SPROUT_ALGORITHM_FIT_RESULT_OF_HPP
|
|
|
|
#include <type_traits>
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/container/traits.hpp>
|
|
#include <sprout/container/metafunctions.hpp>
|
|
#include <sprout/algorithm/fixed/results.hpp>
|
|
#include <sprout/sub_array/sub_array.hpp>
|
|
|
|
namespace sprout {
|
|
namespace fit {
|
|
namespace results {
|
|
//
|
|
// algorithm
|
|
//
|
|
template<typename Result>
|
|
struct algorithm {
|
|
public:
|
|
typedef sprout::sub_array<
|
|
typename std::decay<
|
|
typename sprout::containers::internal<
|
|
typename sprout::fixed::results::algorithm<Result>::type
|
|
>::type
|
|
>::type
|
|
> type;
|
|
};
|
|
} // namespace results
|
|
} // namespace fit
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_FIT_RESULT_OF_HPP
|