Created
June 19, 2021 06:09
-
-
Save GabrielBrasileiro/a608a6f7cdf8f1d8d290d3195a817864 to your computer and use it in GitHub Desktop.
PublishedApi
This file contains hidden or 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
inline fun executarOperacao(crossinline operacaoDois: () -> Unit) { | |
operacaoUm { | |
operacaoDois() | |
} | |
} | |
@PublishedApi | |
internal fun operacaoUm(bloco: () -> Unit) { | |
bloco() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment