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 |