ObjectiveLib
1.0.0
|
A protocol defining the message for performing the operation of a unary function object. More...
#import <ObjectiveLib/Functional.h>
Public Member Functions | |
(id) | - performUnaryFunctionWithArg: |
Perform the function of this function object. |
A protocol defining the message for performing the operation of a unary function object.
- (id) performUnaryFunctionWithArg: | (id) | arg |
Perform the function of this function object.
The operation is performed on the single parameter, a new object is allocated containing the result, and it is returned.
arg | the argument to the function |
Reimplemented in OLNegate, OLMemFun, OLBinder2nd, and OLBinder1st.
|