Created
April 26, 2022 09:57
-
-
Save Atternatt/07015c7198ee4cd07de5942981e4c70a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Does this compile? | |
inline fun <A, B> A.andThen(block: (A) -> Unit) { | |
Runnable { | |
block(this) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment