Packages

o

reqT

BagUtils

object BagUtils

Source
Utils.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BagUtils
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Bag[K, V] = Map[K, Vector[V]]
  2. implicit class RichMapSetBag[K, V] extends AnyRef
  3. implicit class RichMapVectorBag[K, V] extends AnyRef
  4. type SetBag[K, V] = Map[K, Set[V]]

Value Members

  1. def bagAdd[K, V](bag: Bag[K, V], k: K, v: V): Bag[K, V]
  2. def bagMerge[K, V](m1: Bag[K, V], m2: Bag[K, V]): Bag[K, V]
  3. def setBagAdd[K, V](bag: SetBag[K, V], k: K, v: V): SetBag[K, V]
  4. def setBagMerge[K, V](m1: SetBag[K, V], m2: SetBag[K, V]): SetBag[K, V]
  5. object Bag
  6. object SetBag