Skip to content

Instantly share code, notes, and snippets.

@sajjadyousefnia
Created July 9, 2018 09:50
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/7f85da7083f03d7a8807e779140b87ae to your computer and use it in GitHub Desktop.
Save sajjadyousefnia/7f85da7083f03d7a8807e779140b87ae to your computer and use it in GitHub Desktop.
public inline fun <T, R> with(receiver: T, block: T.() -> R): R {
contract {
callsInPlace(block, InvocationKind.EXACTLY_ONCE)
}
return receiver.block()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment