Created
February 2, 2015 15:18
-
-
Save orangy/64e13ae8ad2c856fb482 to your computer and use it in GitHub Desktop.
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
fun let<T1:Any,T2:Any,R>(p1: T1?, p2: T2?, body: (T1,T2)->R) : R?= if (t1 != null && t2 != null) body(t1,t2) else null |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment