Skip to content

Commit f32e068

Browse files
jensmaurertkoeppe
authored andcommitted
[unord] Use 'key equality predicate' consistently. (#1241)
Replaces occasional uses of 'key equality function'. Fixes #630.
1 parent b54f250 commit f32e068

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

source/containers.tex

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7666,7 +7666,7 @@
76667666
\begin{itemdescr}
76677667
\pnum
76687668
\effects Constructs an empty \tcode{unordered_map} using the
7669-
specified hash function, key equality function, and allocator, and
7669+
specified hash function, key equality predicate, and allocator, and
76707670
using at least \tcode{n} buckets. For the default constructor,
76717671
the number of buckets is \impldef{default number of buckets in
76727672
\tcode{unordered_map}}.
@@ -7694,7 +7694,7 @@
76947694
\begin{itemdescr}
76957695
\pnum
76967696
\effects Constructs an empty \tcode{unordered_map} using the
7697-
specified hash function, key equality function, and allocator, and
7697+
specified hash function, key equality predicate, and allocator, and
76987698
using at least \tcode{n} buckets. If \tcode{n} is not
76997699
provided, the number of buckets is \impldef{default number of buckets in
77007700
\tcode{unordered_map}}. Then
@@ -8159,7 +8159,7 @@
81598159
\begin{itemdescr}
81608160
\pnum
81618161
\effects Constructs an empty \tcode{unordered_multimap} using the
8162-
specified hash function, key equality function, and allocator, and
8162+
specified hash function, key equality predicate, and allocator, and
81638163
using at least \tcode{n} buckets. For the default constructor,
81648164
the number of buckets is \impldef{default number of buckets in
81658165
\tcode{unordered_multimap}}.
@@ -8187,7 +8187,7 @@
81878187
\begin{itemdescr}
81888188
\pnum
81898189
\effects Constructs an empty \tcode{unordered_multimap} using the
8190-
specified hash function, key equality function, and allocator, and
8190+
specified hash function, key equality predicate, and allocator, and
81918191
using at least \tcode{n} buckets. If \tcode{n} is not
81928192
provided, the number of buckets is \impldef{default number of buckets in
81938193
\tcode{unordered_multimap}}. Then
@@ -8454,7 +8454,7 @@
84548454
\begin{itemdescr}
84558455
\pnum
84568456
\effects Constructs an empty \tcode{unordered_set} using the
8457-
specified hash function, key equality function, and allocator, and
8457+
specified hash function, key equality predicate, and allocator, and
84588458
using at least \tcode{n} buckets. For the default constructor,
84598459
the number of buckets is \impldef{default number of buckets in
84608460
\tcode{unordered_set}}.
@@ -8482,7 +8482,7 @@
84828482
\begin{itemdescr}
84838483
\pnum
84848484
\effects Constructs an empty \tcode{unordered_set} using the
8485-
specified hash function, key equality function, and allocator, and
8485+
specified hash function, key equality predicate, and allocator, and
84868486
using at least \tcode{n} buckets. If \tcode{n} is not
84878487
provided, the number of buckets is \impldef{default number of buckets in
84888488
\tcode{unordered_set}}. Then
@@ -8721,7 +8721,7 @@
87218721
\begin{itemdescr}
87228722
\pnum
87238723
\effects Constructs an empty \tcode{unordered_multiset} using the
8724-
specified hash function, key equality function, and allocator, and
8724+
specified hash function, key equality predicate, and allocator, and
87258725
using at least \tcode{n} buckets. For the default constructor,
87268726
the number of buckets is \impldef{default number of buckets in
87278727
\tcode{unordered_multiset}}.
@@ -8749,7 +8749,7 @@
87498749
\begin{itemdescr}
87508750
\pnum\effects
87518751
Constructs an empty \tcode{unordered_multiset} using the
8752-
specified hash function, key equality function, and allocator, and
8752+
specified hash function, key equality predicate, and allocator, and
87538753
using at least \tcode{n} buckets. If \tcode{n} is not
87548754
provided, the number of buckets is \impldef{default number of buckets in
87558755
\tcode{unordered_multiset}}. Then

0 commit comments

Comments
 (0)