Skip to content

Instantly share code, notes, and snippets.

@GabrielBrasileiro
Created June 19, 2021 06:09
Show Gist options
  • Save GabrielBrasileiro/a608a6f7cdf8f1d8d290d3195a817864 to your computer and use it in GitHub Desktop.
Save GabrielBrasileiro/a608a6f7cdf8f1d8d290d3195a817864 to your computer and use it in GitHub Desktop.
PublishedApi
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