주어진 조건식의 형태로 그룹핑 시킨다
Last updated 7 years ago
public inline fun <T, K> Iterable<T>.groupBy(keySelector: (T) -> K): Map<K,List<T>> { return groupByTo(LinkedHashMap<K,