groupByTo
所在位置是kotlin.text.groupByTo
,其相关用法介绍如下。
用法一
inline fun <K, M : MutableMap<in K, MutableList<Char>>> CharSequence.groupByTo(
destination: M,
keySelector: (Char) -> K
): M
通过应用于每个字符的给定keySelector 函数返回的键对原始字符序列的字符进行分组,并将与对应字符列表关联的每个组键放入destination 映射。
例子:
import kotlin.test.*
fun main(args: Array<String>) {
//sampleStart
val words = listOf("a", "abc", "ab", "def", "abcd")
val byLength = words.groupBy { it.length }
println(byLength.keys) // [1, 3, 2, 4]
println(byLength.values) // [[a], [abc, def], [ab], [abcd]]
val mutableByLength: MutableMap<Int, MutableList<String>> = words.groupByTo(mutableMapOf()) { it.length }
// same content as in byLength map, but the map is mutable
println("mutableByLength == byLength is ${mutableByLength == byLength}") // true
//sampleEnd
}
输出:
[1, 3, 2, 4] [[a], [abc, def], [ab], [abcd]] mutableByLength == byLength is true
返回destination Map。
用法二
inline fun <K, V, M : MutableMap<in K, MutableList<V>>> CharSequence.groupByTo(
destination: M,
keySelector: (Char) -> K,
valueTransform: (Char) -> V
): M
由应用于原始字符序列的每个字符的valueTransform 函数返回的值由应用于字符的给定keySelector 函数返回的键分组,并将每个组键与对应的列表关联到destination 映射值。
例子:
import kotlin.test.*
fun main(args: Array<String>) {
//sampleStart
val nameToTeam = listOf("Alice" to "Marketing", "Bob" to "Sales", "Carol" to "Marketing")
val namesByTeam = nameToTeam.groupBy({ it.second }, { it.first })
println(namesByTeam) // {Marketing=[Alice, Carol], Sales=[Bob]}
val mutableNamesByTeam = nameToTeam.groupByTo(HashMap(), { it.second }, { it.first })
// same content as in namesByTeam map, but the map is mutable
println("mutableNamesByTeam == namesByTeam is ${mutableNamesByTeam == namesByTeam}") // true
//sampleEnd
}
输出:
{Marketing=[Alice, Carol], Sales=[Bob]} mutableNamesByTeam == namesByTeam is true
返回destination Map。
相关用法
- Kotlin groupBy用法及代码示例
- Kotlin groupingBy用法及代码示例
- Kotlin getValue用法及代码示例
- Kotlin getOrPut用法及代码示例
- Kotlin getOrElse用法及代码示例
- Kotlin getOrNull用法及代码示例
- Kotlin associateBy用法及代码示例
- Kotlin all用法及代码示例
- Kotlin map用法及代码示例
- Kotlin filterNot用法及代码示例
- Kotlin reduceRight用法及代码示例
- Kotlin Random.Default用法及代码示例
- Kotlin Byte.inc用法及代码示例
- Kotlin Double.dec用法及代码示例
- Kotlin windowedSequence用法及代码示例
- Kotlin contentToString用法及代码示例
- Kotlin commonPrefixWith用法及代码示例
- Kotlin MatchResult.Destructured用法及代码示例
- Kotlin Delegates.notNull用法及代码示例
- Kotlin ifBlank用法及代码示例
- Kotlin filterNotTo用法及代码示例
- Kotlin Triple.<init>用法及代码示例
- Kotlin Duration.toString用法及代码示例
- Kotlin windowed用法及代码示例
- Kotlin indexOf用法及代码示例
注:本文由纯净天空筛选整理自kotlinlang.org大神的英文原创作品 kotlin.text.groupByTo。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。