Skip to content

Instantly share code, notes, and snippets.

@aditrioka
Last active December 16, 2017 14:40
Show Gist options
  • Save aditrioka/bc4bb5afab5c7b9e938957d202537d3a to your computer and use it in GitHub Desktop.
Save aditrioka/bc4bb5afab5c7b9e938957d202537d3a to your computer and use it in GitHub Desktop.
fun <T> doConditionally(people: MutableList<T>,
condition: (T) -> Boolean,
action: (T) -> Unit) {
people.forEach {
if (condition(it)) action(it)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment