Created
March 12, 2013 14:44
-
-
Save kkazuo/5143450 to your computer and use it in GitHub Desktop.
Objective-C cascade message syntax proposal.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> [obj message1].[message2].[message3:arg1].[message4:arg2 with:arg3]; | |
is equive to | |
> [[[[obj message1] message2] message3:arg1] message4:arg2 with:arg3]; | |
just propose. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment