public inline fun <T> Iterable<T>.forE...
# announcements
p
public inline fun <T> Iterable<T>.forEach(action: (T) -> Unit): Unit { for (element in this) action(element) }