Skip to content

Commit 21eeb4c

Browse files
[containers, strings, algorithms, re] Use \range where appropriate
Currently, there are several cases where `\tcode{[i, j)}` is used for specifying left-closed right-open intervals, where `\range{i}{j}` is proper. Co-authored-by: Eelis van der Weegen <[email protected]>
1 parent 422ded5 commit 21eeb4c

File tree

4 files changed

+32
-32
lines changed

4 files changed

+32
-32
lines changed

source/algorithms.tex

+3-3
Original file line numberDiff line numberDiff line change
@@ -7565,7 +7565,7 @@
75657565
are partitioned with respect to the expressions
75667566
\tcode{bool(invoke(comp, invoke(proj, e), value))} and
75677567
\tcode{!bool(invoke(comp, value, invoke(proj, e)))}.
7568-
Also, for all elements \tcode{e} of \tcode{[first, last)},
7568+
Also, for all elements \tcode{e} of \range{first}{last},
75697569
\tcode{bool(comp(e, value))} implies \tcode{!bool(comp(\brk{}value, e))}
75707570
for the overloads in namespace \tcode{std}.
75717571

@@ -7632,7 +7632,7 @@
76327632
are partitioned with respect to the expressions
76337633
\tcode{bool(invoke(comp, invoke(proj, e), value))} and
76347634
\tcode{!bool(invoke(comp, value, invoke(proj, e)))}.
7635-
Also, for all elements \tcode{e} of \tcode{[first, last)},
7635+
Also, for all elements \tcode{e} of \range{first}{last},
76367636
\tcode{bool(comp(e, value))} implies \tcode{!bool(comp(\brk{}value, e))}
76377637
for the overloads in namespace \tcode{std}.
76387638

@@ -10818,7 +10818,7 @@
1081810818
\pnum
1081910819
For the overloads with an \tcode{ExecutionPolicy} and a non-empty range,
1082010820
performs \tcode{*result = *first}.
10821-
Then, for every \tcode{d} in \tcode{[1, last - first - 1]},
10821+
Then, for every \tcode{d} in \crange{1}{last - first - 1},
1082210822
performs \tcode{*(result + d) = binary_op(*(first + d), *(first + (d - 1)))}.
1082310823

1082410824
\pnum

source/containers.tex

+19-19
Original file line numberDiff line numberDiff line change
@@ -1309,7 +1309,7 @@
13091309
denote iterators that meet the \oldconcept{InputIterator} requirements
13101310
and refer to elements implicitly convertible to \tcode{value_type},
13111311
\item
1312-
\tcode{[i, j)} denotes a valid range,
1312+
\range{i}{j} denotes a valid range,
13131313
\item
13141314
\tcode{rg} denotes a value of a type \tcode{R}
13151315
that models \tcode{\exposconcept{container-compatible-range}<T>},
@@ -1322,7 +1322,7 @@
13221322
\item
13231323
\tcode{q} denotes a valid dereferenceable constant iterator to \tcode{a},
13241324
\item
1325-
\tcode{[q1, q2)} denotes a valid range of constant iterators in \tcode{a},
1325+
\range{q1}{q2} denotes a valid range of constant iterators in \tcode{a},
13261326
\item
13271327
\tcode{t} denotes an lvalue or a const rvalue of \tcode{X::value_type}, and
13281328
\item
@@ -1384,7 +1384,7 @@
13841384

13851385
\pnum
13861386
\effects
1387-
Constructs a sequence container equal to the range \tcode{[i, j)}.
1387+
Constructs a sequence container equal to the range \range{i}{j}.
13881388
Each iterator in the range \range{i}{j} is dereferenced exactly once.
13891389

13901390
\pnum
@@ -1578,7 +1578,7 @@
15781578

15791579
\pnum
15801580
\effects
1581-
Inserts copies of elements in \tcode{[i, j)} before \tcode{p}.
1581+
Inserts copies of elements in \range{i}{j} before \tcode{p}.
15821582
Each iterator in the range \range{i}{j} shall be dereferenced exactly once.
15831583

15841584
\pnum
@@ -1675,7 +1675,7 @@
16751675

16761676
\pnum
16771677
\effects
1678-
Erases the elements in the range \tcode{[q1, q2)}.
1678+
Erases the elements in the range \range{q1}{q2}.
16791679

16801680
\pnum
16811681
\returns
@@ -1732,7 +1732,7 @@
17321732

17331733
\pnum
17341734
\effects
1735-
Replaces elements in \tcode{a} with a copy of \tcode{[i, j)}.
1735+
Replaces elements in \tcode{a} with a copy of \range{i}{j}.
17361736
Invalidates all references, pointers and iterators
17371737
referring to the elements of \tcode{a}.
17381738
For \tcode{vector} and \tcode{deque},
@@ -2690,7 +2690,7 @@
26902690
\item
26912691
\tcode{r} denotes a valid dereferenceable iterator to \tcode{a},
26922692
\item
2693-
\tcode{[q1, q2)} denotes a valid range of constant iterators in \tcode{a},
2693+
\range{q1}{q2} denotes a valid range of constant iterators in \tcode{a},
26942694
\item
26952695
\tcode{il} designates an object of type \tcode{initializer_list<value_type>},
26962696
\item
@@ -4179,7 +4179,7 @@
41794179
\tcode{i} and \tcode{j} denote input iterators
41804180
that refer to \tcode{value_type},
41814181
\item
4182-
\tcode{[i, j)} denotes a valid range,
4182+
\range{i}{j} denotes a valid range,
41834183
\item
41844184
\tcode{rg} denotes a value of a type \tcode{R}
41854185
that models \tcode{\exposconcept{container-compatible-range}<value_type>},
@@ -4191,7 +4191,7 @@
41914191
\item
41924192
\tcode{r} denotes a valid dereferenceable iterator to \tcode{a},
41934193
\item
4194-
\tcode{[q1, q2)} denotes a valid range in \tcode{a},
4194+
\range{q1}{q2} denotes a valid range in \tcode{a},
41954195
\item
41964196
\tcode{il} denotes a value of type \tcode{initializer_list<value_type>},
41974197
\item
@@ -5003,7 +5003,7 @@
50035003

50045004
\pnum
50055005
\effects
5006-
Equivalent to \tcode{a.insert(t)} for each element in \tcode{[i,j)}.
5006+
Equivalent to \tcode{a.insert(t)} for each element in \range{i}{j}.
50075007

50085008
\pnum
50095009
\complexity
@@ -5366,7 +5366,7 @@
53665366

53675367
\pnum
53685368
\effects
5369-
Erases all elements in the range \tcode{[q1, q2)}.
5369+
Erases all elements in the range \range{q1}{q2}.
53705370

53715371
\pnum
53725372
\returns
@@ -5602,7 +5602,7 @@
56025602
The index of the bucket
56035603
in which elements with keys equivalent to \tcode{k} would be found,
56045604
if any such element existed.
5605-
The return value is in the range \tcode{[0, b.bucket_count())}.
5605+
The return value is in the range \range{0}{b.bucket_count()}.
56065606

56075607
\pnum
56085608
\complexity
@@ -5625,7 +5625,7 @@
56255625

56265626
\pnum
56275627
\ensures
5628-
The return value is in the range \tcode{[0, a_tran.bucket_count())}.
5628+
The return value is in the range \range{0}{a_tran.bucket_count()}.
56295629

56305630
\pnum
56315631
\returns
@@ -5650,7 +5650,7 @@
56505650

56515651
\pnum
56525652
\expects
5653-
\tcode{n} shall be in the range \tcode{[0, b.bucket_count())}.
5653+
\tcode{n} shall be in the range \range{0}{b.bucket_count()}.
56545654

56555655
\pnum
56565656
\returns
@@ -5673,7 +5673,7 @@
56735673

56745674
\pnum
56755675
\expects
5676-
\tcode{n} is in the range \tcode{[0, b.bucket_count())}.
5676+
\tcode{n} is in the range \range{0}{b.bucket_count()}.
56775677

56785678
\pnum
56795679
\returns
@@ -5697,7 +5697,7 @@
56975697

56985698
\pnum
56995699
\expects
5700-
\tcode{n} is in the range \tcode{[0, b.bucket_count())}.
5700+
\tcode{n} is in the range \range{0}{b.bucket_count()}.
57015701

57025702
\pnum
57035703
\returns
@@ -5720,7 +5720,7 @@
57205720

57215721
\pnum
57225722
\expects
5723-
\tcode{n} shall be in the range \tcode{[0, b.bucket_count())}.
5723+
\tcode{n} shall be in the range \range{0}{b.bucket_count()}.
57245724

57255725
\pnum
57265726
\returns
@@ -5744,7 +5744,7 @@
57445744

57455745
\pnum
57465746
\expects
5747-
\tcode{n} is in the range \tcode{[0, b.bucket_count())}.
5747+
\tcode{n} is in the range \range{0}{b.bucket_count()}.
57485748

57495749
\pnum
57505750
\returns
@@ -8363,7 +8363,7 @@
83638363
\begin{itemdescr}
83648364
\pnum
83658365
\expects
8366-
\tcode{[first, last)} is a valid range in \tcode{x}.
8366+
\range{first}{last} is a valid range in \tcode{x}.
83678367
\tcode{position} is not an iterator in the range \range{first}{last}.
83688368

83698369
\pnum

source/strings.tex

+9-9
Original file line numberDiff line numberDiff line change
@@ -140,31 +140,31 @@
140140
whether \tcode{c} is to be treated as less than \tcode{d}. & constant \\ \rowsep
141141
\tcode{X::compare(p,q,n)} & \tcode{int} &
142142
\returns
143-
\tcode{0} if for each \tcode{i} in \tcode{[0,n)}, \tcode{X::eq(p[i],q[i])}
144-
is \tcode{true}; else, a negative value if, for some \tcode{j} in \tcode{[0,n)},
145-
\tcode{X::lt(p[j],q[j])} is \tcode{true} and for each \tcode{i} in \tcode{[0,j)}
143+
\tcode{0} if for each \tcode{i} in \range{0}{n}, \tcode{X::eq(p[i],q[i])}
144+
is \tcode{true}; else, a negative value if, for some \tcode{j} in \range{0}{n},
145+
\tcode{X::lt(p[j],q[j])} is \tcode{true} and for each \tcode{i} in \range{0}{j}
146146
\tcode{X::eq(p[i],q[i])} is \tcode{true}; else a positive value. & linear \\ \rowsep
147147
\tcode{X::length(p)} & \tcode{size_t} &
148148
\returns
149149
the smallest \tcode{i} such that \tcode{X::eq(p[i],charT())} is \tcode{true}. & linear \\ \rowsep
150150
\tcode{X::find(p,n,c)} & \tcode{const X::char_type*} &
151151
\returns
152-
the smallest \tcode{q} in \tcode{[p,p+n)} such that
152+
the smallest \tcode{q} in \range{p}{p+n} such that
153153
\tcode{X::eq(*q,c)} is \tcode{true}, \tcode{nullptr} otherwise. & linear \\ \rowsep
154154
\tcode{X::move(s,p,n)} & \tcode{X::char_type*} &
155-
for each \tcode{i} in \tcode{[0,n)}, performs \tcode{X::assign(s[i],p[i])}.
156-
Copies correctly even where the ranges \tcode{[p,p+n)} and \tcode{[s,s+n)} overlap.\br \returns \tcode{s}. & linear \\ \rowsep
155+
for each \tcode{i} in \range{0}{n}, performs \tcode{X::assign(s[i],p[i])}.
156+
Copies correctly even where the ranges \range{p}{p+n} and \range{s}{s+n} overlap.\br \returns \tcode{s}. & linear \\ \rowsep
157157
\tcode{X::copy(s,p,n)} & \tcode{X::char_type*} &
158158
\expects
159159
The ranges \range{p}{p+n} and \range{s}{s+n} do not overlap.\par
160160
\returns
161161
\tcode{s}.\br
162162
for each \tcode{i} in
163-
\tcode{[0,n)}, performs \tcode{X::assign(s[i],p[i])}. & linear \\ \rowsep
163+
\range{0}{n}, performs \tcode{X::assign(s[i],p[i])}. & linear \\ \rowsep
164164
\tcode{X::assign(r,d)} & (not used) &
165165
assigns \tcode{r=d}. & constant \\ \rowsep
166166
\tcode{X::assign\-(s,n,c)} & \tcode{X::char_type*} &
167-
for each \tcode{i} in \tcode{[0,n)}, performs
167+
for each \tcode{i} in \range{0}{n}, performs
168168
\tcode{X::assign(s[i],c)}.\br
169169
\returns
170170
\tcode{s}. & linear \\ \rowsep
@@ -3917,7 +3917,7 @@
39173917
\pnum
39183918
\effects
39193919
Removes the characters in the range
3920-
\tcode{[first, last)}.
3920+
\range{first}{last}.
39213921

39223922
\pnum
39233923
\returns

source/text.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -12419,7 +12419,7 @@
1241912419
In all cases in which the call to \tcode{regex_search} returns \tcode{true},
1242012420
\tcode{match.prefix().first} shall be equal to the previous value of
1242112421
\tcode{match[0].second}, and for each index \tcode{i} in the half-open range
12422-
\tcode{[0, match.size())} for which \tcode{match[i].matched} is \tcode{true},
12422+
\range{0}{match.size()} for which \tcode{match[i].matched} is \tcode{true},
1242312423
\tcode{match.position(i)}
1242412424
shall return \tcode{distance(begin, match[i].\brk{}first)}.
1242512425

0 commit comments

Comments
 (0)