net.sf.phiweave.collection

SparseVector

class SparseVector extends Map[Int, Double]

attributes: abstract
known subclasses: MappedVector, CompressedVector
Inherited
  1. Hide All
  2. Show all
  1. Map
  2. MapLike
  3. Cloneable
  4. Shrinkable
  5. Builder
  6. Growable
  7. Map
  8. MapLike
  9. Subtractable
  10. PartialFunction
  11. Function1
  12. Iterable
  13. Iterable
  14. IterableLike
  15. Equals
  16. Traversable
  17. Mutable
  18. Traversable
  19. GenericTraversableTemplate
  20. TraversableLike
  21. TraversableOnce
  22. FilterMonadic
  23. HasNewBuilder
  24. AnyRef
  25. Any
Visibility
  1. Public
  2. All

Instance constructors

  1. new SparseVector()

Type Members

  1. type Self = Map[Int, Double]

    attributes: protected
    definition classes: TraversableLike

Value Members

  1. def !=(arg0: AnyRef): Boolean

    attributes: final
    definition classes: AnyRef
  2. def !=(arg0: Any): Boolean

    o != arg0 is the same as !(o == (arg0)).

    o != arg0 is the same as !(o == (arg0)).

    arg0

    the object to compare against this object for dis-equality.

    returns

    false if the receiver object is equivalent to the argument; true otherwise.

    attributes: final
    definition classes: Any
  3. def ##(): Int

    attributes: final
    definition classes: AnyRef → Any
  4. def $asInstanceOf[T0](): T0

    attributes: final
    definition classes: AnyRef
  5. def $isInstanceOf[T0](): Boolean

    attributes: final
    definition classes: AnyRef
  6. def +[B1 >: Double](elem1: (Int, B1), elem2: (Int, B1), elems: (Int, B1)*): Map[Int, B1]

    definition classes: MapLike → MapLike
  7. def +[B1 >: Double](kv: (Int, B1)): Map[Int, B1]

    definition classes: MapLike → MapLike
  8. def ++[B1 >: Double](xs: TraversableOnce[(Int, B1)]): Map[Int, B1]

    definition classes: MapLike → MapLike
  9. def ++[B >: (Int, Double), That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Map[Int, Double], B, That]): That

    definition classes: TraversableLike
  10. def ++=(xs: TraversableOnce[(Int, Double)]): Growable[(Int, Double)]

    definition classes: Growable
  11. def +=(elem1: (Int, Double), elem2: (Int, Double), elems: (Int, Double)*): Growable[(Int, Double)]

    definition classes: Growable
  12. def +=(kv: (Int, Double)): MapLike[Int, Double, Map[Int, Double]]

    attributes: abstract
    definition classes: MapLike → Builder → Growable
  13. def -(elem1: Int, elem2: Int, elems: Int*): Map[Int, Double]

    definition classes: MapLike → Subtractable
  14. def -(key: Int): Map[Int, Double]

    definition classes: MapLike → MapLike → Subtractable
  15. def --(xs: TraversableOnce[Int]): Map[Int, Double]

    definition classes: MapLike → Subtractable
  16. def --=(xs: TraversableOnce[Int]): Shrinkable[Int]

    definition classes: Shrinkable
  17. def -=(elem1: Int, elem2: Int, elems: Int*): Shrinkable[Int]

    definition classes: Shrinkable
  18. def -=(key: Int): MapLike[Int, Double, Map[Int, Double]]

    attributes: abstract
    definition classes: MapLike → Shrinkable
  19. def /:[B](z: B)(op: (B, (Int, Double)) ⇒ B): B

    definition classes: TraversableOnce
  20. def :\[B](z: B)(op: ((Int, Double), B) ⇒ B): B

    definition classes: TraversableOnce
  21. def ==(arg0: AnyRef): Boolean

    o == arg0 is the same as if (o eq null) arg0 eq null else o.equals(arg0).

    o == arg0 is the same as if (o eq null) arg0 eq null else o.equals(arg0).

    arg0

    the object to compare against this object for equality.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    attributes: final
    definition classes: AnyRef
  22. def ==(arg0: Any): Boolean

    o == arg0 is the same as o.equals(arg0).

    o == arg0 is the same as o.equals(arg0).

    arg0

    the object to compare against this object for equality.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    attributes: final
    definition classes: Any
  23. def add(v: SparseVector): Unit

    Component-wise vector addition; a new entry will be allocated for any component occuring in vector v that is currently unsupported in this vector

    Component-wise vector addition; a new entry will be allocated for any component occuring in vector v that is currently unsupported in this vector

    v

    the sparse vector that shall be added to this vector

    attributes: abstract
  24. def addScaled(v: SparseVector, alpha: Double): Unit

    Similar to < href="#add">add, except that all components of v are scaled by alpha before they are added

    Similar to < href="#add">add, except that all components of v are scaled by alpha before they are added

    v

    the sparse vector that shall be added to this vector

    alpha

    the scaling factor for components of v

    attributes: abstract
  25. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    definition classes: MapLike → TraversableOnce
  26. def addString(b: StringBuilder): StringBuilder

    definition classes: TraversableOnce
  27. def addString(b: StringBuilder, sep: String): StringBuilder

    definition classes: TraversableOnce
  28. def addSupported(v: SparseVector): Unit

    Component-wise vector addition; only those indices that actually occur in both sparse vectors are updated

    Component-wise vector addition; only those indices that actually occur in both sparse vectors are updated

    v

    the sparse vector that shall be added to this vector

    attributes: abstract
  29. def addSupportedScaled(v: SparseVector, alpha: Double): Unit

    Similar to addSupported, except that all components of v are scaled by alpha before they are added

    Similar to addSupported, except that all components of v are scaled by alpha before they are added

    v

    the sparse vector that shall be added to this vector

    alpha

    scaling factor for components of v

    attributes: abstract
  30. def andThen[C](k: (Double) ⇒ C): PartialFunction[Int, C]

    definition classes: PartialFunction → Function1
  31. def apply(key: Int): Double

    definition classes: MapLike → Function1
  32. def asInstanceOf[T0]: T0

    This method is used to cast the receiver object to be of type T0.

    This method is used to cast the receiver object to be of type T0.

    Note that the success of a cast at runtime is modulo Scala's erasure semantics. Therefore the expression1.asInstanceOf[String] will throw a ClassCastException at runtime, while the expressionList(1).asInstanceOf[List[String]] will not. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested typed.

    returns

    the receiver object.

    attributes: final
    definition classes: Any
  33. def canEqual(that: Any): Boolean

    definition classes: IterableLike → Equals
  34. def clear(): Unit

    definition classes: MapLike → Builder → Growable
  35. def clone(): Map[Int, Double]

    This method creates and returns a copy of the receiver object.

    This method creates and returns a copy of the receiver object.

    The default implementation of the clone method is platform dependent.

    returns

    a copy of the receiver object.

    definition classes: MapLike → Cloneable → AnyRef
  36. def collect[B, That](pf: PartialFunction[(Int, Double), B])(implicit bf: CanBuildFrom[Map[Int, Double], B, That]): That

    definition classes: TraversableLike
  37. def companion: GenericCompanion[Iterable[A][A]]

    definition classes: Iterable → Iterable → Traversable → Traversable → GenericTraversableTemplate
  38. def compose[A](g: (A) ⇒ Int): (A) ⇒ Double

    definition classes: Function1
  39. def contains(key: Int): Boolean

    definition classes: MapLike
  40. def copyToArray[B >: (Int, Double)](xs: Array[B], start: Int, len: Int): Unit

    definition classes: IterableLike → TraversableLike → TraversableOnce
  41. def copyToArray[B >: (Int, Double)](xs: Array[B]): Unit

    definition classes: TraversableOnce
  42. def copyToArray[B >: (Int, Double)](xs: Array[B], start: Int): Unit

    definition classes: TraversableOnce
  43. def copyToBuffer[B >: (Int, Double)](dest: Buffer[B]): Unit

    definition classes: TraversableOnce
  44. def count(p: ((Int, Double)) ⇒ Boolean): Int

    definition classes: TraversableOnce
  45. def default(key: Int): Double

    definition classes: MapLike
  46. def dotProduct(v: SparseVector): Double

    Computes the dot product of this vector and another sparse vector

    Computes the dot product of this vector and another sparse vector

    v

    a sparse vector

    returns

    the dot product

    attributes: abstract
  47. def drop(n: Int): Map[Int, Double]

    definition classes: TraversableLike
  48. def dropRight(n: Int): Map[Int, Double]

    definition classes: IterableLike
  49. def dropWhile(p: ((Int, Double)) ⇒ Boolean): Map[Int, Double]

    definition classes: TraversableLike
  50. def elements: Iterator[(Int, Double)]

    definition classes: IterableLike
      deprecated:
    1. use iterator' instead

  51. def empty: Map[Int, Double]

    definition classes: Map → Map → MapLike
  52. def eq(arg0: AnyRef): Boolean

    This method is used to test whether the argument (arg0) is a reference to the receiver object (this).

    This method is used to test whether the argument (arg0) is a reference to the receiver object (this).

    The eq method implements an [http://en.wikipedia.org/wiki/Equivalence_relation equivalence relation] on non-null instances of AnyRef: * It is reflexive: for any non-null instance x of type AnyRef, x.eq(x) returns true. * It is symmetric: for any non-null instances x and y of type AnyRef, x.eq(y) returns true if and only if y.eq(x) returns true. * It is transitive: for any non-null instances x, y, and z of type AnyRef if x.eq(y) returns true and y.eq(z) returns true, then x.eq(z) returns true.

    Additionally, the eq method has three other properties. * It is consistent: for any non-null instances x and y of type AnyRef, multiple invocations of x.eq(y) consistently returns true or consistently returns false. * For any non-null instance x of type AnyRef, x.eq(null) and null.eq(x) returns false. * null.eq(null) returns true.

    When overriding the equals or hashCode methods, it is important to ensure that their behavior is consistent with reference equality. Therefore, if two objects are references to each other (o1 eq o2), they should be equal to each other (o1 == o2) and they should hash to the same value (o1.hashCode == o2.hashCode).

    arg0

    the object to compare against this object for reference equality.

    returns

    true if the argument is a reference to the receiver object; false otherwise.

    attributes: final
    definition classes: AnyRef
  53. def equals(that: Any): Boolean

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence.

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence.

    The default implementations of this method is an [http://en.wikipedia.org/wiki/Equivalence_relation equivalence relation]: * It is reflexive: for any instance x of type Any, x.equals(x) should return true. * It is symmetric: for any instances x and y of type Any, x.equals(y) should return true if and only if y.equals(x) returns true. * It is transitive: for any instances x, y, and z of type AnyRef if x.equals(y) returns true and y.equals(z) returns true, then x.equals(z) should return true.

    If you override this method, you should verify that your implementation remains an equivalence relation. Additionally, when overriding this method it is often necessary to override hashCode to ensure that objects that are "equal" (o1.equals(o2) returns true) hash to the same scala.Int (o1.hashCode.equals(o2.hashCode)).

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    definition classes: MapLike → Equals → AnyRef → Any
  54. def exists(p: ((Int, Double)) ⇒ Boolean): Boolean

    definition classes: IterableLike → TraversableLike → TraversableOnce
  55. def filter(p: ((Int, Double)) ⇒ Boolean): Map[Int, Double]

    definition classes: TraversableLike
  56. def filterKeys(p: (Int) ⇒ Boolean): Map[Int, Double]

    definition classes: MapLike
  57. def filterNot(p: ((Int, Double)) ⇒ Boolean): Map[Int, Double]

    definition classes: MapLike → TraversableLike
  58. def finalize(): Unit

    This method is called by the garbage collector on the receiver object when garbage collection determines that there are no more references to the object.

    This method is called by the garbage collector on the receiver object when garbage collection determines that there are no more references to the object.

    The details of when and if the finalize method are invoked, as well as the interaction between finalizeand non-local returns and exceptions, are all platform dependent.

    attributes: protected
    definition classes: AnyRef
  59. def find(p: ((Int, Double)) ⇒ Boolean): Option[(Int, Double)]

    definition classes: IterableLike → TraversableLike → TraversableOnce
  60. def first: (Int, Double)

    definition classes: IterableLike
      deprecated:
    1. use head' instead

  61. def firstOption: Option[(Int, Double)]

    definition classes: IterableLike
      deprecated:
    1. use headOption' instead

  62. def flatMap[B, That](f: ((Int, Double)) ⇒ Traversable[B])(implicit bf: CanBuildFrom[Map[Int, Double], B, That]): That

    definition classes: TraversableLike → FilterMonadic
  63. def flatten[B](implicit asTraversable: ((Int, Double)) ⇒ Traversable[B]): Iterable[B]

    definition classes: GenericTraversableTemplate
  64. def foldLeft[B](z: B)(op: (B, (Int, Double)) ⇒ B): B

    definition classes: TraversableOnce
  65. def foldRight[B](z: B)(op: ((Int, Double), B) ⇒ B): B

    definition classes: IterableLike → TraversableOnce
  66. def forall(p: ((Int, Double)) ⇒ Boolean): Boolean

    definition classes: IterableLike → TraversableLike → TraversableOnce
  67. def foreach[U](f: ((Int, Double)) ⇒ U): Unit

    definition classes: IterableLike → TraversableLike → TraversableOnce → FilterMonadic
  68. def genericBuilder[B]: Builder[B, Iterable[B]]

    definition classes: GenericTraversableTemplate
  69. def get(key: Int): Option[Double]

    attributes: abstract
    definition classes: MapLike
  70. def getClass(): java.lang.Class[_]

    Returns a representation that corresponds to the dynamic class of the receiver object.

    Returns a representation that corresponds to the dynamic class of the receiver object.

    The nature of the representation is platform dependent.

    returns

    a representation that corresponds to the dynamic class of the receiver object.

    attributes: final
    definition classes: AnyRef
  71. def getOrElse[B1 >: Double](key: Int, default: ⇒ B1): B1

    definition classes: MapLike
  72. def getOrElseUpdate(key: Int, op: ⇒ Double): Double

    definition classes: MapLike
  73. def groupBy[K](f: ((Int, Double)) ⇒ K): Map[K, Map[Int, Double]]

    definition classes: TraversableLike
  74. def grouped(size: Int): Iterator[Map[Int, Double]]

    definition classes: IterableLike
  75. def hasDefiniteSize: Boolean

    definition classes: TraversableLike → TraversableOnce
  76. def hashCode(): Int

    Returns a hash code value for the object.

    Returns a hash code value for the object.

    The default hashing algorithm is platform dependent.

    Note that it is allowed for two objects to have identical hash codes (o1.hashCode.equals(o2.hashCode)) yet not be equal (o1.equals(o2) returns false). A degenerate implementation could always return 0. However, it is required that if two objects are equal (o1.equals(o2) returns true) that they have identical hash codes (o1.hashCode.equals(o2.hashCode)). Therefore, when overriding this method, be sure to verify that the behavior is consistent with the equals method.

    returns

    the hash code value for the object.

    definition classes: MapLike → AnyRef → Any
  77. def head: (Int, Double)

    definition classes: IterableLike → TraversableLike
  78. def headOption: Option[(Int, Double)]

    definition classes: TraversableLike
  79. def init: Map[Int, Double]

    definition classes: TraversableLike
  80. def initializedAs(alpha: Double): SparseVector

    Returns a clone of this vector, with all supported components set to alpha

    Returns a clone of this vector, with all supported components set to alpha

    alpha

    all supported components of the new vector will be set to this scalar

    attributes: abstract
  81. def isDefinedAt(key: Int): Boolean

    definition classes: MapLike → PartialFunction
  82. def isEmpty: Boolean

    definition classes: MapLike → IterableLike → TraversableLike → TraversableOnce
  83. def isInstanceOf[T0]: Boolean

    This method is used to test whether the dynamic type of the receiver object is T0.

    This method is used to test whether the dynamic type of the receiver object is T0.

    Note that the test result of the test is modulo Scala's erasure semantics. Therefore the expression1.isInstanceOf[String] will return false, while the expression List(1).isInstanceOf[List[String]] will return true. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested typed.

    returns

    true if the receiver object is an instance of erasure of type T0; false otherwise.

    attributes: final
    definition classes: Any
  84. def isTraversableAgain: Boolean

    attributes: final
    definition classes: TraversableLike → TraversableOnce
  85. def iterator: Iterator[(Int, Double)]

    attributes: abstract
    definition classes: MapLike → IterableLike
  86. def keySet: Set[Int]

    definition classes: MapLike
  87. def keys: Iterable[Int]

    definition classes: MapLike
  88. def keysIterator: Iterator[Int]

    definition classes: MapLike
  89. def last: (Int, Double)

    definition classes: TraversableLike
  90. def lastOption: Option[(Int, Double)]

    definition classes: TraversableLike
  91. def lift: (Int) ⇒ Option[Double]

    definition classes: PartialFunction
  92. def map[B, That](f: ((Int, Double)) ⇒ B)(implicit bf: CanBuildFrom[Map[Int, Double], B, That]): That

    definition classes: TraversableLike → FilterMonadic
  93. def mapElements[C](f: (Double) ⇒ C): Map[Int, C]

    definition classes: MapLike
      deprecated:
    1. use mapValues' instead

  94. def mapResult[NewTo](f: (Map[Int, Double]) ⇒ NewTo): Builder[(Int, Double), NewTo]

    definition classes: Builder
  95. def mapValues[C](f: (Double) ⇒ C): Map[Int, C]

    definition classes: MapLike
  96. def max[B >: (Int, Double)](implicit cmp: Ordering[B]): (Int, Double)

    definition classes: TraversableOnce
  97. def min[B >: (Int, Double)](implicit cmp: Ordering[B]): (Int, Double)

    definition classes: TraversableOnce
  98. def mkString: String

    definition classes: TraversableOnce
  99. def mkString(sep: String): String

    definition classes: TraversableOnce
  100. def mkString(start: String, sep: String, end: String): String

    definition classes: TraversableOnce
  101. def ne(arg0: AnyRef): Boolean

    o.ne(arg0) is the same as !(o.eq(arg0)).

    o.ne(arg0) is the same as !(o.eq(arg0)).

    arg0

    the object to compare against this object for reference dis-equality.

    returns

    false if the argument is not a reference to the receiver object; true otherwise.

    attributes: final
    definition classes: AnyRef
  102. def newBuilder: Builder[(Int, Double), Map[Int, Double]]

    attributes: protected[this]
    definition classes: MapLike → MapLike → TraversableLike → HasNewBuilder
  103. def nonEmpty: Boolean

    definition classes: TraversableOnce
  104. def notify(): Unit

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Wakes up a single thread that is waiting on the receiver object's monitor.

    attributes: final
    definition classes: AnyRef
  105. def notifyAll(): Unit

    Wakes up all threads that are waiting on the receiver object's monitor.

    Wakes up all threads that are waiting on the receiver object's monitor.

    attributes: final
    definition classes: AnyRef
  106. def orElse[A1 <: Int, B1 >: Double](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]

    definition classes: PartialFunction
  107. def partition(p: ((Int, Double)) ⇒ Boolean): (Map[Int, Double], Map[Int, Double])

    definition classes: TraversableLike
  108. def product[B >: (Int, Double)](implicit num: Numeric[B]): B

    definition classes: TraversableOnce
  109. def projection: IterableView[(Int, Double), Map[Int, Double]]

    definition classes: IterableLike
      deprecated:
    1. use view' instead

  110. def put(key: Int, value: Double): Option[Double]

    definition classes: MapLike
  111. def reduceLeft[B >: (Int, Double)](op: (B, (Int, Double)) ⇒ B): B

    definition classes: TraversableOnce
  112. def reduceLeftOption[B >: (Int, Double)](op: (B, (Int, Double)) ⇒ B): Option[B]

    definition classes: TraversableOnce
  113. def reduceRight[B >: (Int, Double)](op: ((Int, Double), B) ⇒ B): B

    definition classes: IterableLike → TraversableOnce
  114. def reduceRightOption[B >: (Int, Double)](op: ((Int, Double), B) ⇒ B): Option[B]

    definition classes: TraversableOnce
  115. def remove(key: Int): Option[Double]

    definition classes: MapLike
  116. def removeKey(key: Int): Option[Double]

    definition classes: MapLike
      deprecated:
    1. Use remove' instead

  117. def repr: Map[Int, Double]

    definition classes: TraversableLike
  118. def result(): Map[Int, Double]

    definition classes: MapLike → Builder
  119. def retain(p: (Int, Double) ⇒ Boolean): MapLike[Int, Double, Map[Int, Double]]

    definition classes: MapLike
  120. def reversed: List[(Int, Double)]

    attributes: protected[this]
    definition classes: TraversableOnce
  121. def sameElements[B >: (Int, Double)](that: Iterable[B]): Boolean

    definition classes: IterableLike
  122. def scale(alpha: Double): Unit

    Scales each component of the sparse vector

    Scales each component of the sparse vector

    alpha

    the scaling factor

    attributes: abstract
  123. def scanLeft[B, That](z: B)(op: (B, (Int, Double)) ⇒ B)(implicit bf: CanBuildFrom[Map[Int, Double], B, That]): That

    definition classes: TraversableLike
  124. def scanRight[B, That](z: B)(op: ((Int, Double), B) ⇒ B)(implicit bf: CanBuildFrom[Map[Int, Double], B, That]): That

    definition classes: TraversableLike
  125. def set(idx: Int, alpha: Double): Unit

    Sets the given component to the given scalar value; a new entry will be allocated if required

    Sets the given component to the given scalar value; a new entry will be allocated if required

    idx

    the index of the vector component

    alpha

    the scalar value

  126. def setSupported(alpha: Double): Unit

    Sets all supported, i.

    Sets all supported, i.e. non-zero components of this vector to the given scalar value

    alpha

    the scalar value

    attributes: abstract
  127. def size: Int

    definition classes: TraversableOnce
  128. def sizeHint(coll: scala.collection.TraversableLike[_, _], delta: Int): Unit

    definition classes: Builder
  129. def sizeHint(size: Int): Unit

    definition classes: Builder
  130. def sizeHintBounded(size: Int, boundingColl: scala.collection.TraversableLike[_, _]): Unit

    definition classes: Builder
  131. def slice(from: Int, until: Int): Map[Int, Double]

    definition classes: IterableLike → TraversableLike
  132. def sliding[B >: (Int, Double)](size: Int, step: Int): Iterator[Map[Int, Double]]

    definition classes: IterableLike
  133. def sliding[B >: (Int, Double)](size: Int): Iterator[Map[Int, Double]]

    definition classes: IterableLike
  134. def span(p: ((Int, Double)) ⇒ Boolean): (Map[Int, Double], Map[Int, Double])

    definition classes: TraversableLike
  135. def splitAt(n: Int): (Map[Int, Double], Map[Int, Double])

    definition classes: TraversableLike
  136. def stringPrefix: String

    definition classes: SparseVector → MapLike → TraversableLike
  137. def sum[B >: (Int, Double)](implicit num: Numeric[B]): B

    definition classes: TraversableOnce
  138. def synchronized[T0](arg0: T0): T0

    attributes: final
    definition classes: AnyRef
  139. def tail: Map[Int, Double]

    definition classes: TraversableLike
  140. def take(n: Int): Map[Int, Double]

    definition classes: IterableLike → TraversableLike
  141. def takeRight(n: Int): Map[Int, Double]

    definition classes: IterableLike
  142. def takeWhile(p: ((Int, Double)) ⇒ Boolean): Map[Int, Double]

    definition classes: IterableLike → TraversableLike
  143. def thisCollection: Iterable[(Int, Double)]

    attributes: protected[this]
    definition classes: IterableLike → TraversableLike
  144. def toArray[B >: (Int, Double)](implicit arg0: ClassManifest[B]): Array[B]

    definition classes: TraversableOnce
  145. def toBuffer[B >: (Int, Double)]: Buffer[B]

    definition classes: TraversableOnce
  146. def toCollection(repr: Map[Int, Double]): Iterable[(Int, Double)]

    attributes: protected[this]
    definition classes: IterableLike → TraversableLike
  147. def toIndexedSeq[B >: (Int, Double)]: IndexedSeq[B]

    definition classes: TraversableOnce
  148. def toIterable: Iterable[(Int, Double)]

    definition classes: IterableLike → TraversableOnce
  149. def toIterator: Iterator[(Int, Double)]

    definition classes: TraversableLike → TraversableOnce
  150. def toList: List[(Int, Double)]

    definition classes: TraversableOnce
  151. def toMap[T, U](implicit ev: <:<[(Int, Double), (T, U)]): Map[T, U]

    definition classes: TraversableOnce
  152. def toSeq: Seq[(Int, Double)]

    definition classes: IterableLike → TraversableOnce
  153. def toSet[B >: (Int, Double)]: Set[B]

    definition classes: TraversableOnce
  154. def toStream: Stream[(Int, Double)]

    definition classes: IterableLike → TraversableLike → TraversableOnce
  155. def toString(): String

    Returns a string representation of the object.

    Returns a string representation of the object.

    The default representation is platform dependent.

    returns

    a string representation of the object.

    definition classes: MapLike → TraversableLike → Function1 → AnyRef → Any
  156. def toTraversable: Traversable[(Int, Double)]

    definition classes: TraversableLike → TraversableOnce
  157. def transform(f: (Int, Double) ⇒ Double): MapLike[Int, Double, Map[Int, Double]]

    definition classes: MapLike
  158. def transpose[B](implicit asTraversable: ((Int, Double)) ⇒ Traversable[B]): Iterable[Iterable[B]]

    definition classes: GenericTraversableTemplate
  159. def unzip[A1, A2](implicit asPair: ((Int, Double)) ⇒ (A1, A2)): (Iterable[A1], Iterable[A2])

    definition classes: GenericTraversableTemplate
  160. def update(key: Int, value: Double): Unit

    definition classes: MapLike
  161. def updated[B1 >: Double](key: Int, value: B1): Map[Int, B1]

    definition classes: MapLike → MapLike
  162. def values: Iterable[Double]

    definition classes: MapLike
  163. def valuesIterator: Iterator[Double]

    definition classes: MapLike
  164. def view(from: Int, until: Int): IterableView[(Int, Double), Map[Int, Double]]

    definition classes: IterableLike → TraversableLike
  165. def view: IterableView[(Int, Double), Map[Int, Double]]

    definition classes: IterableLike → TraversableLike
  166. def wait(): Unit

    attributes: final
    definition classes: AnyRef
  167. def wait(arg0: Long, arg1: Int): Unit

    attributes: final
    definition classes: AnyRef
  168. def wait(arg0: Long): Unit

    attributes: final
    definition classes: AnyRef
  169. def withFilter(p: ((Int, Double)) ⇒ Boolean): FilterMonadic[(Int, Double), Map[Int, Double]]

    definition classes: TraversableLike → FilterMonadic
  170. def zip[A1 >: (Int, Double), B, That](that: Iterable[B])(implicit bf: CanBuildFrom[Map[Int, Double], (A1, B), That]): That

    definition classes: IterableLike
  171. def zipAll[B, A1 >: (Int, Double), That](that: Iterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Map[Int, Double], (A1, B), That]): That

    definition classes: IterableLike
  172. def zipWithIndex[A1 >: (Int, Double), That](implicit bf: CanBuildFrom[Map[Int, Double], (A1, Int), That]): That

    definition classes: IterableLike