MapUtils

object MapUtils
class Object
trait Matchable
class Any

Value members

Concrete methods

def groupByKey[K, V](entries: Iterator[(K, V)]): Map[K, Seq[V]]
def groupByKeyWithListMap[K, V](entries: Iterator[(K, V)]): ListMap[K, Seq[V]]
def groupByKeyWithTreeMap[K, V](entries: Iterator[(K, V)])(ord: Ordering[K]): TreeMap[K, Seq[V]]
def toHashMap[A, T, U](coll: Seq[A])(ev: A <:< (T, U)): HashMap[T, U]
def toHashMap[K, V](coll: Map[K, V]): HashMap[K, V]
def toListMap[A, T, U](coll: Seq[A])(ev: A <:< (T, U)): ListMap[T, U]
def toListMap[K, V](coll: Map[K, V]): ListMap[K, V]
def toMutableMap[A, T, U](coll: Seq[A])(ev: A <:< (T, U)): HashMap[T, U]
def toMutableMap[K, V](coll: Map[K, V]): HashMap[K, V]
def toTreeMap[A, T, U](coll: Seq[A])(ev: A <:< (T, U), ord: Ordering[T]): TreeMap[T, U]
def toTreeMap[K, V](coll: Map[K, V])(ord: Ordering[K]): TreeMap[K, V]