inline fun <T, K, V> Array<out T>.associate( transform: (T) -> Pair<K, V> ): Map<K, V>
inline fun <K, V> ByteArray.associate( transform: (Byte) -> Pair<K, V> ): Map<K, V>
inline fun <K, V> ShortArray.associate( transform: (Short) -> Pair<K, V> ): Map<K, V>
inline fun <K, V> IntArray.associate( transform: (Int) -> Pair<K, V> ): Map<K, V>
inline fun <K, V> LongArray.associate( transform: (Long) -> Pair<K, V> ): Map<K, V>
inline fun <K, V> FloatArray.associate( transform: (Float) -> Pair<K, V> ): Map<K, V>
inline fun <K, V> DoubleArray.associate( transform: (Double) -> Pair<K, V> ): Map<K, V>
inline fun <K, V> BooleanArray.associate( transform: (Boolean) -> Pair<K, V> ): Map<K, V>
inline fun <K, V> CharArray.associate( transform: (Char) -> Pair<K, V> ): Map<K, V>
inline fun <T, K, V> Iterable<T>.associate( transform: (T) -> Pair<K, V> ): Map<K, V>
© 2010–2019 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/associate.html