с#
Чет не могу найти ни чего.
Size: a a a
с#
с#
DH
с#
с#
AH
val list: List<Pair<int, string>> = TODO()
list.forEach { (i,s) as pair -> … }
t
val list: List<Pair<int, string>> = TODO()
list.forEach { (i,s) as pair -> … }
list.forEach { p -> ... }
AH
list.forEach { p -> ... }
t
AH
AH
AH
IO
AH
IO
inline fun <K, V> Map<K, V>.forEach(action: (k: K, v: V, entry: Map.Entry<K, V>) -> Unit) =
entries.forEach { action(it.key, it.value, it) }
t
inline fun <K, V> Map<K, V>.forEach(action: (k: K, v: V, entry: Map.Entry<K, V>) -> Unit) =
entries.forEach { action(it.key, it.value, it) }
PA
IO
IO
PA