tmp/tmp4y0xjp1z/{from.md → to.md}
RENAMED
|
@@ -1,11 +1,11 @@
|
|
| 1 |
##### `shared_ptr` I/O <a id="util.smartptr.shared.io">[[util.smartptr.shared.io]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
template<class E, class T, class Y>
|
| 5 |
-
basic_ostream<E, T>& operator<< (basic_ostream<E, T>& os, shared_ptr<Y>
|
| 6 |
```
|
| 7 |
|
| 8 |
-
*Effects:* `os << p.get();`
|
| 9 |
|
| 10 |
*Returns:* `os`.
|
| 11 |
|
|
|
|
| 1 |
##### `shared_ptr` I/O <a id="util.smartptr.shared.io">[[util.smartptr.shared.io]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
template<class E, class T, class Y>
|
| 5 |
+
basic_ostream<E, T>& operator<< (basic_ostream<E, T>& os, const shared_ptr<Y>& p);
|
| 6 |
```
|
| 7 |
|
| 8 |
+
*Effects:* As if by: `os << p.get();`
|
| 9 |
|
| 10 |
*Returns:* `os`.
|
| 11 |
|