template <class T> struct logical_or;
|
|
|
|
成員型別 | 定義 | 說明 |
---|---|---|
first_argument_type | T | 成員 operator() 的第一個引數的型別 |
second_argument_type | T | 成員 operator() 的第二個引數的型別 |
result_type | bool | 成員 operator() 返回的型別 |
x||y
)。
|
|
Logical OR: true OR true = true false OR true = true true OR false = true false OR false = false |