/*============================================================================= 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_RANDOM_RANGE_HPP #define SPROUT_RANDOM_RANGE_HPP #include #include #include #include #include #include namespace sprout { namespace random { // // make_range // template< typename Engine, typename Distribution, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR auto make_range( Engine const& engine, Distribution const& distribution, typename sprout::generator_iterator::type>::difference_type count = -1 ) -> sprout::range::range_container::type> > { return sprout::range::range_container::type> >( sprout::random::begin(engine, distribution, count), sprout::random::end(engine, distribution) ); } template inline SPROUT_CONSTEXPR auto make_range( Engine const& engine, typename sprout::generator_iterator::type>::difference_type count = -1 ) -> sprout::range::range_container::type> > { return sprout::range::range_container::type> >( sprout::random::begin(engine, count), sprout::random::end(engine) ); } } // namespace random } // namespace sprout #endif // #ifndef SPROUT_RANDOM_RANGE_HPP