Skip to content

Instantly share code, notes, and snippets.

@orangy
Created February 2, 2015 15:18
Show Gist options
  • Save orangy/64e13ae8ad2c856fb482 to your computer and use it in GitHub Desktop.
Save orangy/64e13ae8ad2c856fb482 to your computer and use it in GitHub Desktop.
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