Experimental library header <experimental/ranges/random>

From cppreference.com
< cpp‎ | header‎ | experimental
 
 
 
Experimental library headers
Filesystem TS
<experimental/filesystem>
Parallelism TS (v1, v2)
Library Fundamentals TS (v1, v2, v3)
Concurrency TS
Ranges TS
Coroutines TS
<experimental/coroutine>
Networking TS
Reflection TS
<experimental/reflect>
 

This header is part of the ranges library.

Random number generator concept

Defined in namespace std::experimental::ranges
specifies that a type qualifies as a uniform random number generator
(concept)

Synopsis

namespace std { namespace experimental { namespace ranges { inline namespace v1 {
 
template <class G>
concept bool UniformRandomNumberGenerator = /* see definition */;
 
}}}}