libstdc++
|
Public Member Functions | |
template<typename _Fn2 > | |
_Not_fn (_Fn2 &&__fn, int) | |
_Not_fn (const _Not_fn &__fn)=default | |
_Not_fn (_Not_fn &&__fn)=default | |
template<typename... _Args> | |
auto | operator() (_Args &&... __args) &noexcept(__noexcept_cond< _Fn &, _Args &&... >::value) -> decltype(!std::declval< result_of_t< _Fn &(_Args &&...)>>()) |
template<typename... _Args> | |
auto | operator() (_Args &&... __args) const &noexcept(__noexcept_cond< const _Fn &, _Args &&... >::value) -> decltype(!std::declval< result_of_t< const _Fn &(_Args &&...)>>()) |
template<typename... _Args> | |
auto | operator() (_Args &&... __args) &&noexcept(__noexcept_cond< _Fn &&, _Args &&... >::value) -> decltype(!std::declval< result_of_t< _Fn &&(_Args &&...)>>()) |
template<typename... _Args> | |
auto | operator() (_Args &&... __args) const &&noexcept(__noexcept_cond< const _Fn &&, _Args &&... >::value) -> decltype(!std::declval< result_of_t< const _Fn &&(_Args &&...)>>()) |
Generalized negator.
Definition at line 903 of file functional.