kotlin.sequences.groupingBy

groupingBy

inline fun <T, K> Sequence<T>.groupingBy(
    crossinline keySelector: (T) -> K
): Grouping<T, K>

Platform and version requirements: Kotlin 1.1

Creates a Grouping source from a sequence to be used later with one of group-and-fold operations using the specified keySelector