On Jul 3, 2012, at 22:40 , Graham Cox wrote:
> NSComparisonResult (^comp)( id<DKStorableObject>, id<DKStorableObject>
> ) = ^( id<DKStorableObject> a, id<DKStorableObject> b )
Actually, for a block literal, it's:
… = ^NSComparisonResult ( id<DKStorableObject> a, id<DKStorableObject>
b ) { … }
The literal syntax puts the return type after the [unparenthesized] "^", unlike
the pointer syntax which puts the return type before the [parenthesized] "^".
> Could the stupid block syntax be any less intuitive?
Well, to be fair, it's *two* stupid syntaxes.
_______________________________________________
Cocoa-dev mailing list ([email protected])
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com
This email sent to [email protected]