Change the size of the string. Resizes the string to contain `count` characters. If `count > `@ref size(), **(2)** appends copies of `ch` and **(1)** appends ``'\0'``. Otherwise, `size()` is reduced to `count`. @param count The size to resize the string to. @throw boost::system::system_error `count > `@ref max_size(). @{ */
| 1658 | @{ |
| 1659 | */ |
| 1660 | void |
| 1661 | resize(std::size_t count) |
| 1662 | { |
| 1663 | resize(count, 0); |
| 1664 | } |
| 1665 | |
| 1666 | /** Overload |
| 1667 |
no outgoing calls