2013-08-08 18:54:33 +09:00
|
|
|
/*=============================================================================
|
|
|
|
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)
|
|
|
|
=============================================================================*/
|
2011-09-03 22:26:26 +09:00
|
|
|
#ifndef SPROUT_ALGORITHM_FIXED_RESULT_OF_HPP
|
|
|
|
#define SPROUT_ALGORITHM_FIXED_RESULT_OF_HPP
|
|
|
|
|
2013-02-04 01:10:26 +09:00
|
|
|
#include <type_traits>
|
2011-09-03 22:26:26 +09:00
|
|
|
#include <sprout/config.hpp>
|
2012-03-31 16:24:13 +09:00
|
|
|
#include <sprout/container/traits.hpp>
|
2013-02-07 23:12:57 +09:00
|
|
|
#include <sprout/utility/pair/pair.hpp>
|
2011-09-03 22:26:26 +09:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace fixed {
|
|
|
|
namespace result_of {
|
|
|
|
//
|
|
|
|
// algorithm
|
|
|
|
//
|
|
|
|
template<typename Result>
|
|
|
|
struct algorithm {
|
|
|
|
public:
|
2012-03-31 16:24:13 +09:00
|
|
|
typedef typename sprout::container_construct_traits<Result>::copied_type type;
|
2011-09-03 22:26:26 +09:00
|
|
|
};
|
2013-02-04 01:10:26 +09:00
|
|
|
|
|
|
|
//
|
|
|
|
// shuffle
|
|
|
|
//
|
|
|
|
template<typename Container, typename UniformRandomNumberGenerator>
|
|
|
|
struct shuffle {
|
|
|
|
public:
|
|
|
|
typedef sprout::pair<
|
|
|
|
typename sprout::fixed::result_of::algorithm<Container>::type,
|
|
|
|
typename std::decay<UniformRandomNumberGenerator>::type
|
|
|
|
> type;
|
|
|
|
};
|
2011-09-03 22:26:26 +09:00
|
|
|
} // namespace result_of
|
|
|
|
} // namespace fixed
|
|
|
|
|
|
|
|
namespace result_of {
|
|
|
|
using sprout::fixed::result_of::algorithm;
|
2013-02-04 01:10:26 +09:00
|
|
|
using sprout::fixed::result_of::shuffle;
|
2011-09-03 22:26:26 +09:00
|
|
|
} // namespace result_of
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_FIXED_RESULT_OF_HPP
|