Skip to content

Instantly share code, notes, and snippets.

@sys1yagi
Created June 20, 2017 00:08
Show Gist options
  • Save sys1yagi/4e84883c452ad063945a74db1a5e8b12 to your computer and use it in GitHub Desktop.
Save sys1yagi/4e84883c452ad063945a74db1a5e8b12 to your computer and use it in GitHub Desktop.
public inline fun <T, R> T.nullWithBlock(block: T.() -> Unit): R? = run {
block()
null
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment