tmp/tmp1f_d7qut/{from.md → to.md}
RENAMED
|
@@ -1,20 +1,9 @@
|
|
| 1 |
-
#####
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
template<class R, class... ArgTypes>
|
| 5 |
bool operator==(const function<R(ArgTypes...)>& f, nullptr_t) noexcept;
|
| 6 |
-
template <class R, class... ArgTypes>
|
| 7 |
-
bool operator==(nullptr_t, const function<R(ArgTypes...)>& f) noexcept;
|
| 8 |
```
|
| 9 |
|
| 10 |
*Returns:* `!f`.
|
| 11 |
|
| 12 |
-
``` cpp
|
| 13 |
-
template <class R, class... ArgTypes>
|
| 14 |
-
bool operator!=(const function<R(ArgTypes...)>& f, nullptr_t) noexcept;
|
| 15 |
-
template <class R, class... ArgTypes>
|
| 16 |
-
bool operator!=(nullptr_t, const function<R(ArgTypes...)>& f) noexcept;
|
| 17 |
-
```
|
| 18 |
-
|
| 19 |
-
*Returns:* `(bool)f`.
|
| 20 |
-
|
|
|
|
| 1 |
+
##### Null pointer comparison functions <a id="func.wrap.func.nullptr">[[func.wrap.func.nullptr]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
template<class R, class... ArgTypes>
|
| 5 |
bool operator==(const function<R(ArgTypes...)>& f, nullptr_t) noexcept;
|
|
|
|
|
|
|
| 6 |
```
|
| 7 |
|
| 8 |
*Returns:* `!f`.
|
| 9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|