tmp/tmpk_lj_d9l/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#### Hash support <a id="fs.path.hash">[[fs.path.hash]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
template<> struct hash<filesystem::path>;
|
| 5 |
+
```
|
| 6 |
+
|
| 7 |
+
For an object `p` of type `filesystem::path`,
|
| 8 |
+
`hash<filesystem::path>()(p)` evaluates to the same result as
|
| 9 |
+
`filesystem::hash_value(p)`.
|
| 10 |
+
|