tmp/tmp1lvrpy1n/{from.md → to.md}
RENAMED
|
@@ -2,12 +2,12 @@
|
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
void freeze(bool freezefl = true);
|
| 5 |
```
|
| 6 |
|
| 7 |
-
*Effects:* If `strmode
|
| 8 |
-
|
| 9 |
|
| 10 |
- If `freezefl` is `true`, the function sets `frozen` in `strmode`.
|
| 11 |
- Otherwise, it clears `frozen` in `strmode`.
|
| 12 |
|
| 13 |
``` cpp
|
|
@@ -24,7 +24,7 @@ int pcount() const;
|
|
| 24 |
```
|
| 25 |
|
| 26 |
*Effects:* If the next pointer for the output sequence, `pnext`, is a
|
| 27 |
null pointer, returns zero. Otherwise, returns the current effective
|
| 28 |
length of the array object as the next pointer minus the beginning
|
| 29 |
-
pointer for the output sequence, `pnext
|
| 30 |
|
|
|
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
void freeze(bool freezefl = true);
|
| 5 |
```
|
| 6 |
|
| 7 |
+
*Effects:* If `strmode & dynamic` is nonzero, alters the freeze status
|
| 8 |
+
of the dynamic array object as follows:
|
| 9 |
|
| 10 |
- If `freezefl` is `true`, the function sets `frozen` in `strmode`.
|
| 11 |
- Otherwise, it clears `frozen` in `strmode`.
|
| 12 |
|
| 13 |
``` cpp
|
|
|
|
| 24 |
```
|
| 25 |
|
| 26 |
*Effects:* If the next pointer for the output sequence, `pnext`, is a
|
| 27 |
null pointer, returns zero. Otherwise, returns the current effective
|
| 28 |
length of the array object as the next pointer minus the beginning
|
| 29 |
+
pointer for the output sequence, `pnext - pbeg`.
|
| 30 |
|