Skip to content

Commit c924a91

Browse files
committed
Remove redlining from Terms and Definitions section
1 parent a65af54 commit c924a91

File tree

1 file changed

+0
-54
lines changed

1 file changed

+0
-54
lines changed

terms_and_definitions.html

Lines changed: 0 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<cxx-clause id="parallel.defns">
22
<h1>Terms and definitions</h1>
33

4-
<ins>
54
<ul>
65
<li>No terms and definitions are listed in this document.</li>
76
<li>ISO and IEC maintained terminological databases for us in standardization at the following addresses:</li>
@@ -10,58 +9,5 @@ <h1>Terms and definitions</h1>
109
<li>ISO Online browsing platform: available at <a href="http://www.iso.org/obp">http://www.iso.org/obp</a></li>
1110
</ul>
1211
</ul>
13-
</ins>
14-
15-
<del>
16-
<p>For the purposes of this document, the terms and definitions given in the C++ Standard and the following apply.</p>
17-
18-
<p>A <dfn>parallel algorithm</dfn> is a function template described by this Technical Specification declared in namespace <code>std::experimental::parallel::v2</code> with a formal template parameter named <code>ExecutionPolicy</code>.</p>
19-
20-
<p>
21-
Parallel algorithms access objects indirectly accessible via their arguments by invoking the following functions:
22-
23-
<ul>
24-
<li>
25-
All operations of the categories of the iterators that the algorithm is instantiated with.
26-
</li>
27-
28-
<li>
29-
Functions on those sequence elements that are required by its specification.
30-
</li>
31-
32-
<li>
33-
User-provided function objects to be applied during the execution of the algorithm, if required by the specification.
34-
</li>
35-
36-
<li>
37-
Operations on those function objects required by the specification.
38-
39-
<cxx-note>
40-
See clause 25.1 of <em>C++ Standard Algorithms Library</em>.
41-
</cxx-note>
42-
</li>
43-
</ul>
44-
45-
These functions are herein called <em>element access functions</em>.
46-
47-
<cxx-example>
48-
The <code>sort</code> function may invoke the following element access functions:
49-
50-
<ul>
51-
<li>
52-
Methods of the random-access iterator of the actual template argument, as per 24.2.7, as implied by the name of the
53-
template parameters <code>RandomAccessIterator</code>.
54-
</li>
55-
56-
<li>
57-
The <code>swap</code> function on the elements of the sequence (as per 25.4.1.1 [sort]/2).
58-
</li>
59-
60-
<li>
61-
The user-provided <code>Compare</code> function object.
62-
</li>
63-
</ul>
64-
</cxx-example>
65-
</del>
6612
</cxx-clause>
6713

0 commit comments

Comments
 (0)