@@ -305,9 +305,8 @@ <h1>Reductions</h1>
305
305
</ cxx-section >
306
306
307
307
< cxx-section id ="parallel.alg.inductions ">
308
- < h1 > < ins > Inductions</ ins > </ h1 >
308
+ < h1 > Inductions</ h1 >
309
309
310
- < ins >
311
310
< p >
312
311
Each of the function templates in this section return an < em > induction object</ em > of unspecified type having an < em > induction
313
312
value type</ em > and encapsulating an initial value < em > i</ em > of that type and, optionally, a < em > stride</ em > .
@@ -323,25 +322,20 @@ <h1><ins>Inductions</ins></h1>
323
322
An induction object may refer to a < em > live-out</ em > object to hold the final value of the induction sequence. When the algorithm using the induction
324
323
object completes, the live-out object is assigned the value < em > i + n * stride</ em > , where < em > n</ em > is the number of elements in the input range.
325
324
</ p >
326
- </ ins >
327
325
328
326
< cxx-function >
329
- < cxx-signature > < ins > template<class T>
330
- < em > unspecified</ em > induction(T&& var);</ ins > </ cxx-signature >
327
+ < cxx-signature > template<class T>
328
+ < em > unspecified</ em > induction(T&& var);</ cxx-signature >
331
329
332
- < cxx-signature > < ins > template<class T, class S>
333
- < em > unspecified</ em > induction(T&& var, S stride);</ ins > </ cxx-signature >
330
+ < cxx-signature > template<class T, class S>
331
+ < em > unspecified</ em > induction(T&& var, S stride);</ cxx-signature >
334
332
335
- < ins >
336
333
< cxx-returns >
337
- < ins >
338
334
an induction object with induction value type < code > remove_cv_t>remove_reference_t>T<<</ code > ,
339
335
initial value < code > var</ code > , and (if specified) stride < code > stride</ code > . If < code > T</ code > is an lvalue reference
340
336
to non-< code > const</ code > type, then the object referenced by < code > var</ code > becomes the live-out object for the
341
337
induction object; otherwise there is no live-out object.
342
- </ ins >
343
338
</ cxx-returns >
344
- </ ins >
345
339
</ cxx-function >
346
340
</ cxx-section >
347
341
0 commit comments