Created
April 28, 2010 01:41
-
-
Save Chouser/381625 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
package mypkg; | |
public class Ugly { | |
public Ugly(){} | |
public String foo(boolean i) { return "bool: " + i; } | |
public String foo(Object o) { return "obj: " + o; } | |
} |
This file contains hidden or 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
(.foo (mypkg.Ugly.) 5) | |
;=> "obj: 5" | |
(.foo (mypkg.Ugly.) true) | |
;=> "obj: true" | |
(.foo (mypkg.Ugly.) (boolean true)) | |
;=> "bool: true" | |
(def u (mypkg.Ugly.)) | |
(.foo u (boolean true)) | |
;=> "obj: true" | |
(.foo #^mypkg.Ugly u (boolean true)) | |
;=> "bool: true" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment