Class

com.fulcrumgenomics.commons.collection

BiMap

Related Doc: package collection

Permalink

class BiMap[K, V] extends Iterable[(K, V)]

An iterable bi-Directional map. There is a 1:1 mapping between keys and values.

K

the key type.

V

the value type.

Linear Supertypes
Iterable[(K, V)], IterableLike[(K, V), Iterable[(K, V)]], Equals, GenIterable[(K, V)], GenIterableLike[(K, V), Iterable[(K, V)]], Traversable[(K, V)], GenTraversable[(K, V)], GenericTraversableTemplate[(K, V), Iterable], TraversableLike[(K, V), Iterable[(K, V)]], GenTraversableLike[(K, V), Iterable[(K, V)]], Parallelizable[(K, V), ParIterable[(K, V)]], TraversableOnce[(K, V)], GenTraversableOnce[(K, V)], FilterMonadic[(K, V), Iterable[(K, V)]], HasNewBuilder[(K, V), Iterable[(K, V)] @scala.annotation.unchecked.uncheckedVariance], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BiMap
  2. Iterable
  3. IterableLike
  4. Equals
  5. GenIterable
  6. GenIterableLike
  7. Traversable
  8. GenTraversable
  9. GenericTraversableTemplate
  10. TraversableLike
  11. GenTraversableLike
  12. Parallelizable
  13. TraversableOnce
  14. GenTraversableOnce
  15. FilterMonadic
  16. HasNewBuilder
  17. AnyRef
  18. Any
Implicitly
  1. by CollectionsHaveToParArray
  2. by MonadOps
  3. by any2stringadd
  4. by StringFormat
  5. by Ensuring
  6. by ArrowAssoc
  7. by alternateImplicit
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BiMap()

    Permalink

Type Members

  1. type Self = Iterable[(K, V)]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  2. class WithFilter extends FilterMonadic[A, Repr]

    Permalink
    Definition Classes
    TraversableLike

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from BiMap[K, V] to any2stringadd[BiMap[K, V]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ++[B >: (K, V), That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[(K, V)], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  5. def ++:[B >: (K, V), That](that: Traversable[B])(implicit bf: CanBuildFrom[Iterable[(K, V)], B, That]): That

    Permalink
    Definition Classes
    TraversableLike
  6. def ++:[B >: (K, V), That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[(K, V)], B, That]): That

    Permalink
    Definition Classes
    TraversableLike
  7. def ->[B](y: B): (BiMap[K, V], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from BiMap[K, V] to ArrowAssoc[BiMap[K, V]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  8. def /:[B](z: B)(op: (B, (K, V)) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  9. def :\[B](z: B)(op: ((K, V), B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  10. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. def add(key: K, value: V): Unit

    Permalink

    Adds a tuple to the map.

    Adds a tuple to the map.

    key

    the key.

    value

    the value.

  12. def addString(b: StringBuilder): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  13. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  14. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  15. def aggregate[B](z: ⇒ B)(seqop: (B, (K, V)) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  16. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  17. def canEqual(that: Any): Boolean

    Permalink
    Definition Classes
    IterableLike → Equals
  18. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. def collect[B, That](pf: PartialFunction[(K, V), B])(implicit bf: CanBuildFrom[Iterable[(K, V)], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  20. def collectFirst[B](pf: PartialFunction[(K, V), B]): Option[B]

    Permalink
    Definition Classes
    TraversableOnce
  21. def companion: GenericCompanion[Iterable]

    Permalink
    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → GenericTraversableTemplate
  22. def containsKey(key: K): Boolean

    Permalink

    Checks if the map contains the given key.

    Checks if the map contains the given key.

    key

    the key to check.

    returns

    true if the key is in the map, false otherwise.

  23. def containsValue(value: V): Boolean

    Permalink

    Checks if the map contains the given value.s

    Checks if the map contains the given value.s

    value

    the value to check.

    returns

    true if the value is in the map, false otherwise.

  24. def copyToArray[B >: (K, V)](xs: Array[B], start: Int, len: Int): Unit

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  25. def copyToArray[B >: (K, V)](xs: Array[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  26. def copyToArray[B >: (K, V)](xs: Array[B], start: Int): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  27. def copyToBuffer[B >: (K, V)](dest: Buffer[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce
  28. def count(p: ((K, V)) ⇒ Boolean): Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  29. def drop(n: Int): Iterable[(K, V)]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  30. def dropRight(n: Int): Iterable[(K, V)]

    Permalink
    Definition Classes
    IterableLike
  31. def dropWhile(p: ((K, V)) ⇒ Boolean): Iterable[(K, V)]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  32. def ensuring(cond: (BiMap[K, V]) ⇒ Boolean, msg: ⇒ Any): BiMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from BiMap[K, V] to Ensuring[BiMap[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  33. def ensuring(cond: (BiMap[K, V]) ⇒ Boolean): BiMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from BiMap[K, V] to Ensuring[BiMap[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  34. def ensuring(cond: Boolean, msg: ⇒ Any): BiMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from BiMap[K, V] to Ensuring[BiMap[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  35. def ensuring(cond: Boolean): BiMap[K, V]

    Permalink
    Implicit information
    This member is added by an implicit conversion from BiMap[K, V] to Ensuring[BiMap[K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  36. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  37. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  38. def exists(p: ((K, V)) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  39. def filter(p: ((K, V)) ⇒ Boolean): Iterable[(K, V)]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  40. def filterNot(p: ((K, V)) ⇒ Boolean): Iterable[(K, V)]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  41. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  42. def find(p: ((K, V)) ⇒ Boolean): Option[(K, V)]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  43. def flatMap[B, That](f: ((K, V)) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[(K, V)], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  44. def flatten[B](implicit asTraversable: ((K, V)) ⇒ GenTraversableOnce[B]): Iterable[B]

    Permalink
    Definition Classes
    GenericTraversableTemplate
  45. def fold[A1 >: (K, V)](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  46. def foldLeft[B](z: B)(op: (B, (K, V)) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  47. def foldRight[B](z: B)(op: ((K, V), B) ⇒ B): B

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  48. def forall(p: ((K, V)) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  49. def foreach[U](f: ((K, V)) ⇒ U): Unit

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  50. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from BiMap[K, V] to StringFormat[BiMap[K, V]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  51. def genericBuilder[B]: Builder[B, Iterable[B]]

    Permalink
    Definition Classes
    GenericTraversableTemplate
  52. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  53. def groupBy[K](f: ((K, V)) ⇒ K): Map[K, Iterable[(K, V)]]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  54. def grouped(size: Int): Iterator[Iterable[(K, V)]]

    Permalink
    Definition Classes
    IterableLike
  55. def hasDefiniteSize: Boolean

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  56. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  57. def head: (K, V)

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  58. def headOption: Option[(K, V)]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  59. def init: Iterable[(K, V)]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  60. def inits: Iterator[Iterable[(K, V)]]

    Permalink
    Definition Classes
    TraversableLike
  61. def isEmpty: Boolean

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  62. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  63. final def isTraversableAgain: Boolean

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  64. def iterator: Iterator[(K, V)]

    Permalink

    returns

    an iterator over tuples in this map.

    Definition Classes
    BiMap → IterableLike → GenIterableLike
  65. def keyFor(value: V): Option[K]

    Permalink

    Get a key associated with the given value.

    Get a key associated with the given value.

    value

    the value to lookup.

    returns

    the key associated with the value, None if not found.

  66. def keys: Iterable[K]

    Permalink

    returns

    the keys in this map.

  67. def last: (K, V)

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  68. def lastOption: Option[(K, V)]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  69. def map[B, That](f: ((K, V)) ⇒ B)(implicit bf: CanBuildFrom[Iterable[(K, V)], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  70. def max[B >: (K, V)](implicit cmp: Ordering[B]): (K, V)

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  71. def maxBy[B](f: ((K, V)) ⇒ B)(implicit cmp: Ordering[B]): (K, V)

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  72. def min[B >: (K, V)](implicit cmp: Ordering[B]): (K, V)

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  73. def minBy[B](f: ((K, V)) ⇒ B)(implicit cmp: Ordering[B]): (K, V)

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  74. def mkString: String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  75. def mkString(sep: String): String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  76. def mkString(start: String, sep: String, end: String): String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  77. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  78. def newBuilder: Builder[(K, V), Iterable[(K, V)]]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    GenericTraversableTemplate → HasNewBuilder
  79. def nonEmpty: Boolean

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  80. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  81. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  82. def par: ParIterable[(K, V)]

    Permalink
    Definition Classes
    Parallelizable
  83. def parCombiner: Combiner[(K, V), ParIterable[(K, V)]]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableLike → Parallelizable
  84. def partition(p: ((K, V)) ⇒ Boolean): (Iterable[(K, V)], Iterable[(K, V)])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  85. def product[B >: (K, V)](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  86. def reduce[A1 >: (K, V)](op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  87. def reduceLeft[B >: (K, V)](op: (B, (K, V)) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce
  88. def reduceLeftOption[B >: (K, V)](op: (B, (K, V)) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  89. def reduceOption[A1 >: (K, V)](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  90. def reduceRight[B >: (K, V)](op: ((K, V), B) ⇒ B): B

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  91. def reduceRightOption[B >: (K, V)](op: ((K, V), B) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  92. def removeKey(key: K): Boolean

    Permalink

    Remove a key and associated value from the map.

    Remove a key and associated value from the map.

    key

    the key to remove.

    returns

    true if the key and associated value were removed successfully, false otherwise.

  93. def removeValue(value: V): Boolean

    Permalink

    Remove a value and associated key from the map.

    Remove a value and associated key from the map.

    value

    the value to remove.

    returns

    true if the value and associated key were removed successfully, false otherwise.

  94. def repr: Iterable[(K, V)]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  95. def reversed: List[(K, V)]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  96. def sameElements[B >: (K, V)](that: GenIterable[B]): Boolean

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  97. def scan[B >: (K, V), That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Iterable[(K, V)], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  98. def scanLeft[B, That](z: B)(op: (B, (K, V)) ⇒ B)(implicit bf: CanBuildFrom[Iterable[(K, V)], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  99. def scanRight[B, That](z: B)(op: ((K, V), B) ⇒ B)(implicit bf: CanBuildFrom[Iterable[(K, V)], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  100. def seq: Iterable[(K, V)]

    Permalink
    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  101. def size: Int

    Permalink

    returns

    the number of tuples in this map.

    Definition Classes
    BiMap → GenTraversableLike → TraversableOnce → GenTraversableOnce
  102. def slice(from: Int, until: Int): Iterable[(K, V)]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  103. def sliding(size: Int, step: Int): Iterator[Iterable[(K, V)]]

    Permalink
    Definition Classes
    IterableLike
  104. def sliding(size: Int): Iterator[Iterable[(K, V)]]

    Permalink
    Definition Classes
    IterableLike
  105. def span(p: ((K, V)) ⇒ Boolean): (Iterable[(K, V)], Iterable[(K, V)])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  106. def splitAt(n: Int): (Iterable[(K, V)], Iterable[(K, V)])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  107. def stringPrefix: String

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  108. def sum[B >: (K, V)](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  109. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  110. def tail: Iterable[(K, V)]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  111. def tails: Iterator[Iterable[(K, V)]]

    Permalink
    Definition Classes
    TraversableLike
  112. def take(n: Int): Iterable[(K, V)]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  113. def takeRight(n: Int): Iterable[(K, V)]

    Permalink
    Definition Classes
    IterableLike
  114. def takeWhile(p: ((K, V)) ⇒ Boolean): Iterable[(K, V)]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  115. def thisCollection: Iterable[(K, V)]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  116. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, (K, V), Col[(K, V)]]): Col[(K, V)]

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  117. def toArray[B >: (K, V)](implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  118. def toBuffer[B >: (K, V)]: Buffer[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  119. def toCollection(repr: Iterable[(K, V)]): Iterable[(K, V)]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  120. def toIndexedSeq: IndexedSeq[(K, V)]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  121. def toIterable: Iterable[(K, V)]

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  122. def toIterator: Iterator[(K, V)]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  123. def toList: List[(K, V)]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  124. def toMap[T, U](implicit ev: <:<[(K, V), (T, U)]): Map[T, U]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  125. def toParArray: ParArray[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from BiMap[K, V] to CollectionsHaveToParArray[BiMap[K, V], T] performed by method CollectionsHaveToParArray in scala.collection.parallel. This conversion will take place only if an implicit value of type (BiMap[K, V]) ⇒ GenTraversableOnce[T] is in scope.
    Definition Classes
    CollectionsHaveToParArray
  126. def toSeq: Seq[(K, V)]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  127. def toSet[B >: (K, V)]: Set[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  128. def toStream: Stream[(K, V)]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  129. def toString(): String

    Permalink
    Definition Classes
    TraversableLike → Any
  130. def toTraversable: Traversable[(K, V)]

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  131. def toVector: Vector[(K, V)]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  132. def transpose[B](implicit asTraversable: ((K, V)) ⇒ GenTraversableOnce[B]): Iterable[Iterable[B]]

    Permalink
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  133. def unzip[A1, A2](implicit asPair: ((K, V)) ⇒ (A1, A2)): (Iterable[A1], Iterable[A2])

    Permalink
    Definition Classes
    GenericTraversableTemplate
  134. def unzip3[A1, A2, A3](implicit asTriple: ((K, V)) ⇒ (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])

    Permalink
    Definition Classes
    GenericTraversableTemplate
  135. def valueFor(key: K): Option[V]

    Permalink

    Get a value associated with a given key.

    Get a value associated with a given key.

    key

    the key to lookup.

    returns

    the value associated with the key, None if not found.

  136. def values: Iterable[V]

    Permalink

    returns

    the values in this map.

  137. def view(from: Int, until: Int): IterableView[(K, V), Iterable[(K, V)]]

    Permalink
    Definition Classes
    IterableLike → TraversableLike
  138. def view: IterableView[(K, V), Iterable[(K, V)]]

    Permalink
    Definition Classes
    IterableLike → TraversableLike
  139. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  140. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  141. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  142. def withFilter(p: ((K, V)) ⇒ Boolean): FilterMonadic[(K, V), Iterable[(K, V)]]

    Permalink
    Definition Classes
    TraversableLike → FilterMonadic
  143. def zip[A1 >: (K, V), B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Iterable[(K, V)], (A1, B), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  144. def zipAll[B, A1 >: (K, V), That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Iterable[(K, V)], (A1, B), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  145. def zipWithIndex[A1 >: (K, V), That](implicit bf: CanBuildFrom[Iterable[(K, V)], (A1, Int), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  146. def [B](y: B): (BiMap[K, V], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from BiMap[K, V] to ArrowAssoc[BiMap[K, V]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def filter(p: ((K, V)) ⇒ Boolean): TraversableOnce[(K, V)]

    Permalink
    Implicit information
    This member is added by an implicit conversion from BiMap[K, V] to MonadOps[(K, V)] performed by method MonadOps in scala.collection.TraversableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (biMap: MonadOps[(K, V)]).filter(p)
    Definition Classes
    MonadOps
  2. def flatMap[B](f: ((K, V)) ⇒ GenTraversableOnce[B]): TraversableOnce[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from BiMap[K, V] to MonadOps[(K, V)] performed by method MonadOps in scala.collection.TraversableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (biMap: MonadOps[(K, V)]).flatMap(f)
    Definition Classes
    MonadOps
  3. def map[B](f: ((K, V)) ⇒ B): TraversableOnce[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from BiMap[K, V] to MonadOps[(K, V)] performed by method MonadOps in scala.collection.TraversableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (biMap: MonadOps[(K, V)]).map(f)
    Definition Classes
    MonadOps
  4. def withFilter(p: ((K, V)) ⇒ Boolean): Iterator[(K, V)]

    Permalink
    Implicit information
    This member is added by an implicit conversion from BiMap[K, V] to MonadOps[(K, V)] performed by method MonadOps in scala.collection.TraversableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (biMap: MonadOps[(K, V)]).withFilter(p)
    Definition Classes
    MonadOps

Inherited from Iterable[(K, V)]

Inherited from IterableLike[(K, V), Iterable[(K, V)]]

Inherited from Equals

Inherited from GenIterable[(K, V)]

Inherited from GenIterableLike[(K, V), Iterable[(K, V)]]

Inherited from Traversable[(K, V)]

Inherited from GenTraversable[(K, V)]

Inherited from GenericTraversableTemplate[(K, V), Iterable]

Inherited from TraversableLike[(K, V), Iterable[(K, V)]]

Inherited from GenTraversableLike[(K, V), Iterable[(K, V)]]

Inherited from Parallelizable[(K, V), ParIterable[(K, V)]]

Inherited from TraversableOnce[(K, V)]

Inherited from GenTraversableOnce[(K, V)]

Inherited from FilterMonadic[(K, V), Iterable[(K, V)]]

Inherited from HasNewBuilder[(K, V), Iterable[(K, V)] @scala.annotation.unchecked.uncheckedVariance]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion CollectionsHaveToParArray from BiMap[K, V] to CollectionsHaveToParArray[BiMap[K, V], T]

Inherited by implicit conversion MonadOps from BiMap[K, V] to MonadOps[(K, V)]

Inherited by implicit conversion any2stringadd from BiMap[K, V] to any2stringadd[BiMap[K, V]]

Inherited by implicit conversion StringFormat from BiMap[K, V] to StringFormat[BiMap[K, V]]

Inherited by implicit conversion Ensuring from BiMap[K, V] to Ensuring[BiMap[K, V]]

Inherited by implicit conversion ArrowAssoc from BiMap[K, V] to ArrowAssoc[BiMap[K, V]]

Inherited by implicit conversion alternateImplicit from BiMap[K, V] to ForceImplicitAmbiguity

Ungrouped