associate By To
inline fun <T, K, M : MutableMap<in K, in T>> Sequence<T>.associateByTo(destination: M, keySelector: (T) -> K): M
Content copied to clipboard
Populates and returns the destination mutable map with key-value pairs, where key is provided by the keySelector function applied to each element of the given sequence and value is the element itself.
If any two elements would have the same key returned by keySelector the last one gets added to the map.
The operation is terminal.
Samples
import samples.*
import kotlin.test.*
fun main() {
//sampleStart
data class Person(val firstName: String, val lastName: String) {
override fun toString(): String = "$firstName $lastName"
}
val scientists = listOf(Person("Grace", "Hopper"), Person("Jacob", "Bernoulli"), Person("Johann", "Bernoulli"))
val byLastName = mutableMapOf<String, Person>()
assertTrue(byLastName.isEmpty())
scientists.associateByTo(byLastName) { it.lastName }
assertTrue(byLastName.isNotEmpty())
// Jacob Bernoulli does not occur in the map because only the last pair with the same key gets added
assertPrints(byLastName, "{Hopper=Grace Hopper, Bernoulli=Johann Bernoulli}")
//sampleEnd
}
inline fun <T, K, V, M : MutableMap<in K, in V>> Sequence<T>.associateByTo(destination: M, keySelector: (T) -> K, valueTransform: (T) -> V): M
Content copied to clipboard
Populates and returns the destination mutable map with key-value pairs, where key is provided by the keySelector function and and value is provided by the valueTransform function applied to elements of the given sequence.
If any two elements would have the same key returned by keySelector the last one gets added to the map.
The operation is terminal.
Samples
import samples.*
import kotlin.test.*
fun main() {
//sampleStart
data class Person(val firstName: String, val lastName: String)
val scientists = listOf(Person("Grace", "Hopper"), Person("Jacob", "Bernoulli"), Person("Johann", "Bernoulli"))
val byLastName = mutableMapOf<String, String>()
assertTrue(byLastName.isEmpty())
scientists.associateByTo(byLastName, { it.lastName }, { it.firstName} )
assertTrue(byLastName.isNotEmpty())
// Jacob Bernoulli does not occur in the map because only the last pair with the same key gets added
assertPrints(byLastName, "{Hopper=Grace, Bernoulli=Johann}")
//sampleEnd
}