|
1351 | 1351 | denote iterators that meet the \oldconcept{InputIterator} requirements
|
1352 | 1352 | and refer to elements implicitly convertible to \tcode{value_type},
|
1353 | 1353 | \item
|
1354 |
| -\tcode{[i, j)} denotes a valid range, |
| 1354 | +\range{i}{j} denotes a valid range, |
1355 | 1355 | \item
|
1356 | 1356 | \tcode{rg} denotes a value of a type \tcode{R}
|
1357 | 1357 | that models \tcode{\exposconcept{container-compatible-range}<T>},
|
|
1364 | 1364 | \item
|
1365 | 1365 | \tcode{q} denotes a valid dereferenceable constant iterator to \tcode{a},
|
1366 | 1366 | \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}, |
1368 | 1368 | \item
|
1369 | 1369 | \tcode{t} denotes an lvalue or a const rvalue of \tcode{X::value_type}, and
|
1370 | 1370 | \item
|
|
1426 | 1426 |
|
1427 | 1427 | \pnum
|
1428 | 1428 | \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}. |
1430 | 1430 | Each iterator in the range \range{i}{j} is dereferenced exactly once.
|
1431 | 1431 |
|
1432 | 1432 | \pnum
|
|
1629 | 1629 |
|
1630 | 1630 | \pnum
|
1631 | 1631 | \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}. |
1633 | 1633 | Each iterator in the range \range{i}{j} shall be dereferenced exactly once.
|
1634 | 1634 |
|
1635 | 1635 | \pnum
|
|
1726 | 1726 |
|
1727 | 1727 | \pnum
|
1728 | 1728 | \effects
|
1729 |
| -Erases the elements in the range \tcode{[q1, q2)}. |
| 1729 | +Erases the elements in the range \range{q1}{q2}. |
1730 | 1730 |
|
1731 | 1731 | \pnum
|
1732 | 1732 | \returns
|
|
1783 | 1783 |
|
1784 | 1784 | \pnum
|
1785 | 1785 | \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}. |
1787 | 1787 | Invalidates all references, pointers and iterators
|
1788 | 1788 | referring to the elements of \tcode{a}.
|
1789 | 1789 | For \tcode{vector} and \tcode{deque},
|
|
2761 | 2761 | \item
|
2762 | 2762 | \tcode{r} denotes a valid dereferenceable iterator to \tcode{a},
|
2763 | 2763 | \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}, |
2765 | 2765 | \item
|
2766 | 2766 | \tcode{il} designates an object of type \tcode{initializer_list<value_type>},
|
2767 | 2767 | \item
|
|
4251 | 4251 | \tcode{i} and \tcode{j} denote input iterators
|
4252 | 4252 | that refer to \tcode{value_type},
|
4253 | 4253 | \item
|
4254 |
| -\tcode{[i, j)} denotes a valid range, |
| 4254 | +\range{i}{j} denotes a valid range, |
4255 | 4255 | \item
|
4256 | 4256 | \tcode{rg} denotes a value of a type \tcode{R}
|
4257 | 4257 | that models \tcode{\exposconcept{container-compatible-range}<value_type>},
|
|
4263 | 4263 | \item
|
4264 | 4264 | \tcode{r} denotes a valid dereferenceable iterator to \tcode{a},
|
4265 | 4265 | \item
|
4266 |
| -\tcode{[q1, q2)} denotes a valid range in \tcode{a}, |
| 4266 | +\range{q1}{q2} denotes a valid range in \tcode{a}, |
4267 | 4267 | \item
|
4268 | 4268 | \tcode{il} denotes a value of type \tcode{initializer_list<value_type>},
|
4269 | 4269 | \item
|
|
5075 | 5075 |
|
5076 | 5076 | \pnum
|
5077 | 5077 | \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}. |
5079 | 5079 |
|
5080 | 5080 | \pnum
|
5081 | 5081 | \complexity
|
|
5438 | 5438 |
|
5439 | 5439 | \pnum
|
5440 | 5440 | \effects
|
5441 |
| -Erases all elements in the range \tcode{[q1, q2)}. |
| 5441 | +Erases all elements in the range \range{q1}{q2}. |
5442 | 5442 |
|
5443 | 5443 | \pnum
|
5444 | 5444 | \returns
|
|
5674 | 5674 | The index of the bucket
|
5675 | 5675 | in which elements with keys equivalent to \tcode{k} would be found,
|
5676 | 5676 | 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()}. |
5678 | 5678 |
|
5679 | 5679 | \pnum
|
5680 | 5680 | \complexity
|
|
5697 | 5697 |
|
5698 | 5698 | \pnum
|
5699 | 5699 | \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()}. |
5701 | 5701 |
|
5702 | 5702 | \pnum
|
5703 | 5703 | \returns
|
|
5722 | 5722 |
|
5723 | 5723 | \pnum
|
5724 | 5724 | \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()}. |
5726 | 5726 |
|
5727 | 5727 | \pnum
|
5728 | 5728 | \returns
|
|
5745 | 5745 |
|
5746 | 5746 | \pnum
|
5747 | 5747 | \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()}. |
5749 | 5749 |
|
5750 | 5750 | \pnum
|
5751 | 5751 | \returns
|
|
5769 | 5769 |
|
5770 | 5770 | \pnum
|
5771 | 5771 | \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()}. |
5773 | 5773 |
|
5774 | 5774 | \pnum
|
5775 | 5775 | \returns
|
|
5792 | 5792 |
|
5793 | 5793 | \pnum
|
5794 | 5794 | \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()}. |
5796 | 5796 |
|
5797 | 5797 | \pnum
|
5798 | 5798 | \returns
|
|
5816 | 5816 |
|
5817 | 5817 | \pnum
|
5818 | 5818 | \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()}. |
5820 | 5820 |
|
5821 | 5821 | \pnum
|
5822 | 5822 | \returns
|
|
9558 | 9558 | \begin{itemdescr}
|
9559 | 9559 | \pnum
|
9560 | 9560 | \expects
|
9561 |
| -\tcode{[first, last)} is a valid range in \tcode{x}. |
| 9561 | +\range{first}{last} is a valid range in \tcode{x}. |
9562 | 9562 | \tcode{position} is not an iterator in the range \range{first}{last}.
|
9563 | 9563 |
|
9564 | 9564 | \pnum
|
|
0 commit comments