tmp/tmpkcucu1ho/{from.md → to.md}
RENAMED
|
@@ -3,17 +3,17 @@
|
|
| 3 |
``` cpp
|
| 4 |
locale_type imbue(locale_type loc);
|
| 5 |
```
|
| 6 |
|
| 7 |
*Effects:* Returns the result of `traits_inst.imbue(loc)` where
|
| 8 |
-
`traits_inst` is a (default
|
| 9 |
argument `traits` stored within the object. After a call to `imbue` the
|
| 10 |
`basic_regex` object does not match any character sequence.
|
| 11 |
|
| 12 |
``` cpp
|
| 13 |
locale_type getloc() const;
|
| 14 |
```
|
| 15 |
|
| 16 |
*Effects:* Returns the result of `traits_inst.getloc()` where
|
| 17 |
-
`traits_inst` is a (default
|
| 18 |
parameter `traits` stored within the object.
|
| 19 |
|
|
|
|
| 3 |
``` cpp
|
| 4 |
locale_type imbue(locale_type loc);
|
| 5 |
```
|
| 6 |
|
| 7 |
*Effects:* Returns the result of `traits_inst.imbue(loc)` where
|
| 8 |
+
`traits_inst` is a (default-initialized) instance of the template type
|
| 9 |
argument `traits` stored within the object. After a call to `imbue` the
|
| 10 |
`basic_regex` object does not match any character sequence.
|
| 11 |
|
| 12 |
``` cpp
|
| 13 |
locale_type getloc() const;
|
| 14 |
```
|
| 15 |
|
| 16 |
*Effects:* Returns the result of `traits_inst.getloc()` where
|
| 17 |
+
`traits_inst` is a (default-initialized) instance of the template
|
| 18 |
parameter `traits` stored within the object.
|
| 19 |
|