All Downloads are FREE. Search and download functionalities are using the official Maven repository.

izumi.fundamentals.collections.package.scala Maven / Gradle / Ivy

package izumi.fundamentals

import scala.annotation.nowarn
import scala.collection.mutable

package object collections {
  @nowarn("msg=deprecated")
  type MutableMultiMap[A, B] = mutable.HashMap[A, mutable.Set[B]] with mutable.MultiMap[A, B]
  type ImmutableMultiMap[A, B] = Map[A, Set[B]]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy