名稱空間
變體
操作

std::logical_not<void>

來自 cppreference.com
 
 
 
函式物件
函式呼叫
(C++17)(C++23)
恆等函式物件
(C++20)
透明運算子包裝器
(C++14)
(C++14)
(C++14)
(C++14)  
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
logical_not<>
(C++14)

舊繫結器和介面卡
(直到 C++17*)
(直到 C++17*)
(直到 C++17*)
(直到 C++17*)  
(直到 C++17*)
(直到 C++17*)(直到 C++17*)(直到 C++17*)(直到 C++17*)
(直到 C++20*)
(直到 C++20*)
(直到 C++17*)(直到 C++17*)
(直到 C++17*)(直到 C++17*)

(直到 C++17*)
(直到 C++17*)(直到 C++17*)(直到 C++17*)(直到 C++17*)
(直到 C++20*)
(直到 C++20*)
 
定義於標頭檔案 <functional>
template<>
class logical_not<void>;
(C++14 起)

std::logical_not<void>std::logical_not 的特化,其引數和返回型別被推導。

目錄

[編輯] 巢狀型別

巢狀型別 定義
is_transparent 未指定

[編輯] 成員函式

operator()
對其引數應用 operator!
(公開成員函式)

std::logical_not<void>::operator()

template< class T >

constexpr auto operator()( T&& arg ) const

    -> decltype(!std::forward<T>(arg));

返回 !std::forward<T>(arg) 的結果。

引數

arg - 要應用邏輯非的值

返回值

!std::forward<T>(arg).

[編輯] 示例