Skip to content

Instantly share code, notes, and snippets.

@sajjadyousefnia
Created July 9, 2018 09:34
Show Gist options
  • Save sajjadyousefnia/bcee9d0db82253f80912897a0f6b0e43 to your computer and use it in GitHub Desktop.
Save sajjadyousefnia/bcee9d0db82253f80912897a0f6b0e43 to your computer and use it in GitHub Desktop.
public inline fun <T, R> T.run(block: T.() -> R): R {
contract {
callsInPlace(block, InvocationKind.EXACTLY_ONCE)
}
return block()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment