Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sajjadyousefnia/fbda2c6f32208d9eabd431393ed31449 to your computer and use it in GitHub Desktop.
Save sajjadyousefnia/fbda2c6f32208d9eabd431393ed31449 to your computer and use it in GitHub Desktop.
@SinceKotlin("1.1")
public inline fun <T> T.also(block: (T) -> Unit): T {
contract {
callsInPlace(block, InvocationKind.EXACTLY_ONCE)
}
block(this)
return this
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment