From Jason Turner

[rand.synopsis]

Diff to HTML by rtfpessoa

tmp/tmp7bhgo6iq/{from.md → to.md} RENAMED
@@ -2,10 +2,14 @@
2
 
3
  ``` cpp
4
  #include <initializer_list>
5
 
6
  namespace std {
 
 
 
 
7
  // [rand.eng.lcong], class template linear_congruential_engine
8
  template<class UIntType, UIntType a, UIntType c, UIntType m>
9
  class linear_congruential_engine;
10
 
11
  // [rand.eng.mers], class template mersenne_twister_engine
 
2
 
3
  ``` cpp
4
  #include <initializer_list>
5
 
6
  namespace std {
7
+ // [rand.req.urng], uniform random bit generator requirements
8
+ template<class G>
9
+ concept uniform_random_bit_generator = see below;
10
+
11
  // [rand.eng.lcong], class template linear_congruential_engine
12
  template<class UIntType, UIntType a, UIntType c, UIntType m>
13
  class linear_congruential_engine;
14
 
15
  // [rand.eng.mers], class template mersenne_twister_engine