Skip to content

Instantly share code, notes, and snippets.

@sajjadyousefnia
Created July 9, 2018 09:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sajjadyousefnia/10d9f342f0b4a93014b30d541b55172b to your computer and use it in GitHub Desktop.
Save sajjadyousefnia/10d9f342f0b4a93014b30d541b55172b to your computer and use it in GitHub Desktop.
public inline fun <T, R> T.let(block: (T) -> R): R {
contract {
callsInPlace(block, InvocationKind.EXACTLY_ONCE)
}
return block(this)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment