Skip to content

Commit cae4c12

Browse files
committed
Fix errors in application of previous motions.
Based on feedback from Daniel Krügler.
1 parent 2fa8c97 commit cae4c12

File tree

4 files changed

+25
-2
lines changed

4 files changed

+25
-2
lines changed

Diff for: algorithms.html

+5-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,11 @@ <h1>Search</h1>
5353
<h1>Sampling</h1>
5454

5555
<cxx-function>
56-
<cxx-signature class="formatted">template&lt;class PopulationIterator, class SampleIterator,
56+
<cxx-signature class="formatted">template&lt;class PopulationIterator, class SampleIterator, class Distance>
57+
SampleIterator sample(PopulationIterator first, PopulationIterator last,
58+
SampleIterator out, Distance n);
59+
60+
template&lt;class PopulationIterator, class SampleIterator,
5761
class Distance, class UniformRandomNumberGenerator>
5862
SampleIterator sample(PopulationIterator first, PopulationIterator last,
5963
SampleIterator out, Distance n,

Diff for: general.html

+17
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ <h1>Namespaces, headers, and modifications to standard classes</h1>
127127
<li><code>&lt;experimental/memory_resource></code></li>
128128
<li><code>&lt;experimental/optional></code></li>
129129
<li><code>&lt;experimental/propagate_const></code></li>
130+
<li><code>&lt;experimental/random></code></li>
130131
<li><code>&lt;experimental/ratio></code></li>
131132
<li><code>&lt;experimental/regex></code></li>
132133
<li><code>&lt;experimental/set></code></li>
@@ -248,6 +249,14 @@ <h1>Feature-testing recommendations (Informative)</h1>
248249
<td>201406</td>
249250
<td><code>&lt;experimental/type_traits></code></td>
250251
</tr>
252+
<tr>
253+
<td>P0013R1</td>
254+
<td>Logical Operator Type Traits</td>
255+
<td><cxx-ref to="meta.logical"></cxx-ref></td>
256+
<td><code>logical_traits</code></td>
257+
<td>201511</td>
258+
<td><code>&lt;experimental/type_traits></code></td>
259+
</tr>
251260
<tr>
252261
<td>N4502</td>
253262
<td>The C++ Detection Idiom</td>
@@ -392,6 +401,14 @@ <h1>Feature-testing recommendations (Informative)</h1>
392401
<td>201411</td>
393402
<td><code>&lt;experimental/numeric></code></td>
394403
</tr>
404+
<tr>
405+
<td>N4531</td>
406+
<td><code>std::rand</code> replacement</td>
407+
<td><cxx-ref to="rand.util.randint"></cxx-ref></td>
408+
<td><code>randint</code></td>
409+
<td>201511</td>
410+
<td><code>&lt;experimental/random></code></td>
411+
</tr>
395412
<tr>
396413
<td>N4519</td>
397414
<td>Source-Code Information Capture</td>

Diff for: numeric.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ <h1>Least common multiple</h1>
6969
<cxx-section id="rand">
7070
<h1>Random number generation</h1>
7171
<cxx-section id="rand.synopsis">
72-
<h1>Header <code>&lt;random></code> synopsis</h1>
72+
<h1>Header <code>&lt;experimental/random></code> synopsis</h1>
7373
<pre><code>#include &lt;random>
7474

7575
namespace std {

Diff for: utilities.html

+2
Original file line numberDiff line numberDiff line change
@@ -433,6 +433,8 @@ <h1>Other type transformations</h1>
433433

434434
<cxx-section id="meta.logical">
435435
<h1>Logical operator traits</h1>
436+
<p>This subclause describes type traits for applying logical operators to
437+
other type traits.</p>
436438

437439
<pre><code>template&lt;class... B> struct conjunction : <i>see below</i> { };</code></pre>
438440

0 commit comments

Comments
 (0)