mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2024-11-12 21:09:01 +00:00
27 lines
650 B
C++
27 lines
650 B
C++
|
#ifndef SPROUT_ALGORITHM_FIXED_RESULT_OF_HPP
|
||
|
#define SPROUT_ALGORITHM_FIXED_RESULT_OF_HPP
|
||
|
|
||
|
#include <sprout/config.hpp>
|
||
|
#include <sprout/fixed_container/traits.hpp>
|
||
|
|
||
|
namespace sprout {
|
||
|
namespace fixed {
|
||
|
namespace result_of {
|
||
|
//
|
||
|
// algorithm
|
||
|
//
|
||
|
template<typename Result>
|
||
|
struct algorithm {
|
||
|
public:
|
||
|
typedef typename sprout::fixed_container_traits<Result>::clone_type type;
|
||
|
};
|
||
|
} // namespace result_of
|
||
|
} // namespace fixed
|
||
|
|
||
|
namespace result_of {
|
||
|
using sprout::fixed::result_of::algorithm;
|
||
|
} // namespace result_of
|
||
|
} // namespace sprout
|
||
|
|
||
|
#endif // #ifndef SPROUT_ALGORITHM_FIXED_RESULT_OF_HPP
|