Skip to content

Commit f9847af

Browse files
frederick-vs-jaEelis
authored andcommitted
[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 4b5a008 commit f9847af

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
@@ -7568,7 +7568,7 @@
75687568
are partitioned with respect to the expressions
75697569
\tcode{bool(invoke(comp, invoke(proj, e), value))} and
75707570
\tcode{!bool(invoke(comp, value, invoke(proj, e)))}.
7571-
Also, for all elements \tcode{e} of \tcode{[first, last)},
7571+
Also, for all elements \tcode{e} of \range{first}{last},
75727572
\tcode{bool(comp(e, value))} implies \tcode{!bool(comp(\brk{}value, e))}
75737573
for the overloads in namespace \tcode{std}.
75747574

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

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

1082810828
\pnum

source/containers.tex

+19-19
Original file line numberDiff line numberDiff line change
@@ -1351,7 +1351,7 @@
13511351
denote iterators that meet the \oldconcept{InputIterator} requirements
13521352
and refer to elements implicitly convertible to \tcode{value_type},
13531353
\item
1354-
\tcode{[i, j)} denotes a valid range,
1354+
\range{i}{j} denotes a valid range,
13551355
\item
13561356
\tcode{rg} denotes a value of a type \tcode{R}
13571357
that models \tcode{\exposconcept{container-compatible-range}<T>},
@@ -1364,7 +1364,7 @@
13641364
\item
13651365
\tcode{q} denotes a valid dereferenceable constant iterator to \tcode{a},
13661366
\item
1367-
\tcode{[q1, q2)} denotes a valid range of constant iterators in \tcode{a},
1367+
\range{q1}{q2} denotes a valid range of constant iterators in \tcode{a},
13681368
\item
13691369
\tcode{t} denotes an lvalue or a const rvalue of \tcode{X::value_type}, and
13701370
\item
@@ -1426,7 +1426,7 @@
14261426

14271427
\pnum
14281428
\effects
1429-
Constructs a sequence container equal to the range \tcode{[i, j)}.
1429+
Constructs a sequence container equal to the range \range{i}{j}.
14301430
Each iterator in the range \range{i}{j} is dereferenced exactly once.
14311431

14321432
\pnum
@@ -1629,7 +1629,7 @@
16291629

16301630
\pnum
16311631
\effects
1632-
Inserts copies of elements in \tcode{[i, j)} before \tcode{p}.
1632+
Inserts copies of elements in \range{i}{j} before \tcode{p}.
16331633
Each iterator in the range \range{i}{j} shall be dereferenced exactly once.
16341634

16351635
\pnum
@@ -1726,7 +1726,7 @@
17261726

17271727
\pnum
17281728
\effects
1729-
Erases the elements in the range \tcode{[q1, q2)}.
1729+
Erases the elements in the range \range{q1}{q2}.
17301730

17311731
\pnum
17321732
\returns
@@ -1783,7 +1783,7 @@
17831783

17841784
\pnum
17851785
\effects
1786-
Replaces elements in \tcode{a} with a copy of \tcode{[i, j)}.
1786+
Replaces elements in \tcode{a} with a copy of \range{i}{j}.
17871787
Invalidates all references, pointers and iterators
17881788
referring to the elements of \tcode{a}.
17891789
For \tcode{vector} and \tcode{deque},
@@ -2761,7 +2761,7 @@
27612761
\item
27622762
\tcode{r} denotes a valid dereferenceable iterator to \tcode{a},
27632763
\item
2764-
\tcode{[q1, q2)} denotes a valid range of constant iterators in \tcode{a},
2764+
\range{q1}{q2} denotes a valid range of constant iterators in \tcode{a},
27652765
\item
27662766
\tcode{il} designates an object of type \tcode{initializer_list<value_type>},
27672767
\item
@@ -4251,7 +4251,7 @@
42514251
\tcode{i} and \tcode{j} denote input iterators
42524252
that refer to \tcode{value_type},
42534253
\item
4254-
\tcode{[i, j)} denotes a valid range,
4254+
\range{i}{j} denotes a valid range,
42554255
\item
42564256
\tcode{rg} denotes a value of a type \tcode{R}
42574257
that models \tcode{\exposconcept{container-compatible-range}<value_type>},
@@ -4263,7 +4263,7 @@
42634263
\item
42644264
\tcode{r} denotes a valid dereferenceable iterator to \tcode{a},
42654265
\item
4266-
\tcode{[q1, q2)} denotes a valid range in \tcode{a},
4266+
\range{q1}{q2} denotes a valid range in \tcode{a},
42674267
\item
42684268
\tcode{il} denotes a value of type \tcode{initializer_list<value_type>},
42694269
\item
@@ -5075,7 +5075,7 @@
50755075

50765076
\pnum
50775077
\effects
5078-
Equivalent to \tcode{a.insert(t)} for each element in \tcode{[i,j)}.
5078+
Equivalent to \tcode{a.insert(t)} for each element in \range{i}{j}.
50795079

50805080
\pnum
50815081
\complexity
@@ -5438,7 +5438,7 @@
54385438

54395439
\pnum
54405440
\effects
5441-
Erases all elements in the range \tcode{[q1, q2)}.
5441+
Erases all elements in the range \range{q1}{q2}.
54425442

54435443
\pnum
54445444
\returns
@@ -5674,7 +5674,7 @@
56745674
The index of the bucket
56755675
in which elements with keys equivalent to \tcode{k} would be found,
56765676
if any such element existed.
5677-
The return value is in the range \tcode{[0, b.bucket_count())}.
5677+
The return value is in the range \range{0}{b.bucket_count()}.
56785678

56795679
\pnum
56805680
\complexity
@@ -5697,7 +5697,7 @@
56975697

56985698
\pnum
56995699
\ensures
5700-
The return value is in the range \tcode{[0, a_tran.bucket_count())}.
5700+
The return value is in the range \range{0}{a_tran.bucket_count()}.
57015701

57025702
\pnum
57035703
\returns
@@ -5722,7 +5722,7 @@
57225722

57235723
\pnum
57245724
\expects
5725-
\tcode{n} shall be in the range \tcode{[0, b.bucket_count())}.
5725+
\tcode{n} shall be in the range \range{0}{b.bucket_count()}.
57265726

57275727
\pnum
57285728
\returns
@@ -5745,7 +5745,7 @@
57455745

57465746
\pnum
57475747
\expects
5748-
\tcode{n} is in the range \tcode{[0, b.bucket_count())}.
5748+
\tcode{n} is in the range \range{0}{b.bucket_count()}.
57495749

57505750
\pnum
57515751
\returns
@@ -5769,7 +5769,7 @@
57695769

57705770
\pnum
57715771
\expects
5772-
\tcode{n} is in the range \tcode{[0, b.bucket_count())}.
5772+
\tcode{n} is in the range \range{0}{b.bucket_count()}.
57735773

57745774
\pnum
57755775
\returns
@@ -5792,7 +5792,7 @@
57925792

57935793
\pnum
57945794
\expects
5795-
\tcode{n} shall be in the range \tcode{[0, b.bucket_count())}.
5795+
\tcode{n} shall be in the range \range{0}{b.bucket_count()}.
57965796

57975797
\pnum
57985798
\returns
@@ -5816,7 +5816,7 @@
58165816

58175817
\pnum
58185818
\expects
5819-
\tcode{n} is in the range \tcode{[0, b.bucket_count())}.
5819+
\tcode{n} is in the range \range{0}{b.bucket_count()}.
58205820

58215821
\pnum
58225822
\returns
@@ -9558,7 +9558,7 @@
95589558
\begin{itemdescr}
95599559
\pnum
95609560
\expects
9561-
\tcode{[first, last)} is a valid range in \tcode{x}.
9561+
\range{first}{last} is a valid range in \tcode{x}.
95629562
\tcode{position} is not an iterator in the range \range{first}{last}.
95639563

95649564
\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
@@ -3914,7 +3914,7 @@
39143914
\pnum
39153915
\effects
39163916
Removes the characters in the range
3917-
\tcode{[first, last)}.
3917+
\range{first}{last}.
39183918

39193919
\pnum
39203920
\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)