Skip to content

Instantly share code, notes, and snippets.

@with-heart
Created June 27, 2017 18:07
Show Gist options
  • Save with-heart/f302766826b763355bfb69aafd1ebc8b to your computer and use it in GitHub Desktop.
Save with-heart/f302766826b763355bfb69aafd1ebc8b to your computer and use it in GitHub Desktop.
Kotlin: Use Instance Method as Lambda
val elements = mutableListOf<Int>()
Flux.just(1, 2, 3, 4)
.log()
.subscribe(elements::add)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment