Skip to content

Instantly share code, notes, and snippets.

@GabrielBrasileiro
Last active June 21, 2021 20:07
Show Gist options
  • Save GabrielBrasileiro/e13b67efc935fa7c2ad60c5c410936da to your computer and use it in GitHub Desktop.
Save GabrielBrasileiro/e13b67efc935fa7c2ad60c5c410936da to your computer and use it in GitHub Desktop.
HighOrderFunctionCrossinline.kt
fun main() {
val descricao = "Inline te dando poderes mágicos"
executarOperacao {
print(descricao)
return // Retorno não permitido
}
}
inline fun executarOperacao(crossinline operacaoDois: () -> Unit) {
operacaoUm {
operacaoDois()
}
}
fun operacaoUm(bloco: () -> Unit) {
bloco()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment