|
1309 | 1309 | denote iterators that meet the \oldconcept{InputIterator} requirements
|
1310 | 1310 | and refer to elements implicitly convertible to \tcode{value_type},
|
1311 | 1311 | \item
|
1312 |
| -\tcode{[i, j)} denotes a valid range, |
| 1312 | +\range{i}{j} denotes a valid range, |
1313 | 1313 | \item
|
1314 | 1314 | \tcode{rg} denotes a value of a type \tcode{R}
|
1315 | 1315 | that models \tcode{\exposconcept{container-compatible-range}<T>},
|
|
1322 | 1322 | \item
|
1323 | 1323 | \tcode{q} denotes a valid dereferenceable constant iterator to \tcode{a},
|
1324 | 1324 | \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}, |
1326 | 1326 | \item
|
1327 | 1327 | \tcode{t} denotes an lvalue or a const rvalue of \tcode{X::value_type}, and
|
1328 | 1328 | \item
|
|
1384 | 1384 |
|
1385 | 1385 | \pnum
|
1386 | 1386 | \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}. |
1388 | 1388 | Each iterator in the range \range{i}{j} is dereferenced exactly once.
|
1389 | 1389 |
|
1390 | 1390 | \pnum
|
|
1578 | 1578 |
|
1579 | 1579 | \pnum
|
1580 | 1580 | \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}. |
1582 | 1582 | Each iterator in the range \range{i}{j} shall be dereferenced exactly once.
|
1583 | 1583 |
|
1584 | 1584 | \pnum
|
|
1675 | 1675 |
|
1676 | 1676 | \pnum
|
1677 | 1677 | \effects
|
1678 |
| -Erases the elements in the range \tcode{[q1, q2)}. |
| 1678 | +Erases the elements in the range \range{q1}{q2}. |
1679 | 1679 |
|
1680 | 1680 | \pnum
|
1681 | 1681 | \returns
|
|
1732 | 1732 |
|
1733 | 1733 | \pnum
|
1734 | 1734 | \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}. |
1736 | 1736 | Invalidates all references, pointers and iterators
|
1737 | 1737 | referring to the elements of \tcode{a}.
|
1738 | 1738 | For \tcode{vector} and \tcode{deque},
|
|
2690 | 2690 | \item
|
2691 | 2691 | \tcode{r} denotes a valid dereferenceable iterator to \tcode{a},
|
2692 | 2692 | \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}, |
2694 | 2694 | \item
|
2695 | 2695 | \tcode{il} designates an object of type \tcode{initializer_list<value_type>},
|
2696 | 2696 | \item
|
|
4179 | 4179 | \tcode{i} and \tcode{j} denote input iterators
|
4180 | 4180 | that refer to \tcode{value_type},
|
4181 | 4181 | \item
|
4182 |
| -\tcode{[i, j)} denotes a valid range, |
| 4182 | +\range{i}{j} denotes a valid range, |
4183 | 4183 | \item
|
4184 | 4184 | \tcode{rg} denotes a value of a type \tcode{R}
|
4185 | 4185 | that models \tcode{\exposconcept{container-compatible-range}<value_type>},
|
|
4191 | 4191 | \item
|
4192 | 4192 | \tcode{r} denotes a valid dereferenceable iterator to \tcode{a},
|
4193 | 4193 | \item
|
4194 |
| -\tcode{[q1, q2)} denotes a valid range in \tcode{a}, |
| 4194 | +\range{q1}{q2} denotes a valid range in \tcode{a}, |
4195 | 4195 | \item
|
4196 | 4196 | \tcode{il} denotes a value of type \tcode{initializer_list<value_type>},
|
4197 | 4197 | \item
|
|
5003 | 5003 |
|
5004 | 5004 | \pnum
|
5005 | 5005 | \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}. |
5007 | 5007 |
|
5008 | 5008 | \pnum
|
5009 | 5009 | \complexity
|
|
5366 | 5366 |
|
5367 | 5367 | \pnum
|
5368 | 5368 | \effects
|
5369 |
| -Erases all elements in the range \tcode{[q1, q2)}. |
| 5369 | +Erases all elements in the range \range{q1}{q2}. |
5370 | 5370 |
|
5371 | 5371 | \pnum
|
5372 | 5372 | \returns
|
|
5602 | 5602 | The index of the bucket
|
5603 | 5603 | in which elements with keys equivalent to \tcode{k} would be found,
|
5604 | 5604 | 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()}. |
5606 | 5606 |
|
5607 | 5607 | \pnum
|
5608 | 5608 | \complexity
|
|
5625 | 5625 |
|
5626 | 5626 | \pnum
|
5627 | 5627 | \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()}. |
5629 | 5629 |
|
5630 | 5630 | \pnum
|
5631 | 5631 | \returns
|
|
5650 | 5650 |
|
5651 | 5651 | \pnum
|
5652 | 5652 | \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()}. |
5654 | 5654 |
|
5655 | 5655 | \pnum
|
5656 | 5656 | \returns
|
|
5673 | 5673 |
|
5674 | 5674 | \pnum
|
5675 | 5675 | \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()}. |
5677 | 5677 |
|
5678 | 5678 | \pnum
|
5679 | 5679 | \returns
|
|
5697 | 5697 |
|
5698 | 5698 | \pnum
|
5699 | 5699 | \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()}. |
5701 | 5701 |
|
5702 | 5702 | \pnum
|
5703 | 5703 | \returns
|
|
5720 | 5720 |
|
5721 | 5721 | \pnum
|
5722 | 5722 | \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()}. |
5724 | 5724 |
|
5725 | 5725 | \pnum
|
5726 | 5726 | \returns
|
|
5744 | 5744 |
|
5745 | 5745 | \pnum
|
5746 | 5746 | \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()}. |
5748 | 5748 |
|
5749 | 5749 | \pnum
|
5750 | 5750 | \returns
|
|
8363 | 8363 | \begin{itemdescr}
|
8364 | 8364 | \pnum
|
8365 | 8365 | \expects
|
8366 |
| -\tcode{[first, last)} is a valid range in \tcode{x}. |
| 8366 | +\range{first}{last} is a valid range in \tcode{x}. |
8367 | 8367 | \tcode{position} is not an iterator in the range \range{first}{last}.
|
8368 | 8368 |
|
8369 | 8369 | \pnum
|
|
0 commit comments