package
PairList
Type Members
-
case class
PCons[K, V](h: Pair[K, V], t: PList[K, V]) extends PList[K, V] with Product with Serializable
-
sealed abstract
class
PList[K, V] extends AnyRef
-
case class
PNil[K, V]() extends PList[K, V] with Product with Serializable
-
case class
Pair[K, V](key: K, value: V) extends Product with Serializable
Value Members
-
def
apply[K, V](elems: (K, V)*): PList[K, V]
-
def
delete[K, V](list: PList[K, V], e: Pair[K, V]): PList[K, V]
-
def
distinct[K, V](list: PList[K, V]): Boolean
-
def
permutation[K, V](l1: PList[K, V], l2: PList[K, V]): Boolean
Inherited from AnyRef
Inherited from Any
PList List of key-value pairs with integer keys