Skip to content

Instantly share code, notes, and snippets.

@dybarsky
Last active December 14, 2017 22:37
Show Gist options
  • Save dybarsky/4a5e95ecd644998ac9dfc766aebcdd7d to your computer and use it in GitHub Desktop.
Save dybarsky/4a5e95ecd644998ac9dfc766aebcdd7d to your computer and use it in GitHub Desktop.
fun <T> Iterable<T>.foreach(action: (T) -> Unit) {
for (element in this) action(element)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment