#import <ObjectiveLib/Functional.h>
Inheritance diagram for OLLogicalAnd:
Public Member Functions | |
(BOOL) | - performBinaryFunctionWithArg:andArg: |
Test whether both arguments are true. |
Both objects passed must be convertible to boolean values, meaning that they must respond to the message boolValue
.
- (BOOL) performBinaryFunctionWithArg: | (id) | arg1 | ||
andArg: | (id) | arg2 | ||
Test whether both arguments are true.
The message converts both arguments to boolean values using the message boolValue
, then returns YES if neither value is false.
boolValue
.arg1 | the first argument | |
arg2 | the second argument |
Reimplemented from < OLBoolBinaryFunction >.
|