std::logical_or
来自cppreference.com
< cpp | utility | functional
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| Defined in header <functional>
|
||
| template< class T > struct logical_or; |
||
函數對象進行邏輯OR(邏輯或)。有效地調用operator||類型
T.Original:
Function object for performing logical OR (logical disjunction). Effectively calls operator|| on type
T.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
目錄 |
[编辑] 會員類型
| 類型
Original: Type The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Definition |
result_type
|
bool
|
first_argument_type
|
T
|
second_argument_type
|
T
|
[编辑] 成員函數
| operator() |
返回的邏輯或兩個參數 Original: returns the logical OR of the two arguments The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (公共成員函數) |
的std ::邏輯或Original:std::logical_or::The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.operator()
Original:
std::logical_or::
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
| bool operator()( const T& lhs, const T& rhs ) const; |
||
Returns the logical OR of lhs and rhs.
Parameters
| lhs, rhs | - | 值來計算的邏輯或(OR)
Original: values to compute logical OR of The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Return value
The result of lhs || rhs.
Exceptions
(none)
Possible implementation
bool operator()(const T &lhs, const T &rhs) const { return lhs || rhs; } |