tmp/tmpfs23qbae/{from.md → to.md}
RENAMED
|
@@ -20,11 +20,11 @@ template<> struct bit_not<void> {
|
|
| 20 |
using is_transparent = unspecified;
|
| 21 |
};
|
| 22 |
```
|
| 23 |
|
| 24 |
``` cpp
|
| 25 |
-
template<class T> constexpr auto operator()(T&&) const
|
| 26 |
-> decltype(~std::forward<T>(t));
|
| 27 |
```
|
| 28 |
|
| 29 |
*Returns:* `~std::forward<T>(t)`.
|
| 30 |
|
|
|
|
| 20 |
using is_transparent = unspecified;
|
| 21 |
};
|
| 22 |
```
|
| 23 |
|
| 24 |
``` cpp
|
| 25 |
+
template<class T> constexpr auto operator()(T&& t) const
|
| 26 |
-> decltype(~std::forward<T>(t));
|
| 27 |
```
|
| 28 |
|
| 29 |
*Returns:* `~std::forward<T>(t)`.
|
| 30 |
|