Packages

class VectorI extends VectoI

The VectorI class stores and operates on Numeric Vectors of base type Int. It follows the framework of gen.VectorN [T] and is provided for performance.

Linear Supertypes
VectoI, Serializable, Error, Vec, PartiallyOrdered[VectoI], Iterable[Int], IterableFactoryDefaults[Int, Iterable], IterableOps[Int, Iterable, Iterable[Int]], IterableOnceOps[Int, Iterable, Iterable[Int]], IterableOnce[Int], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. VectorI
  2. VectoI
  3. Serializable
  4. Error
  5. Vec
  6. PartiallyOrdered
  7. Iterable
  8. IterableFactoryDefaults
  9. IterableOps
  10. IterableOnceOps
  11. IterableOnce
  12. AnyRef
  13. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new VectorI(iv: (Int, Int), dm: Int)

    Construct a vector and assign 'value' at 'index' position.

    Construct a vector and assign 'value' at 'index' position.

    iv

    the tuple containing (index, value)

    dm

    the dimension for the new vector

  2. new VectorI(u: VectoI)

    Construct a vector and assign values from vector 'u'.

    Construct a vector and assign values from vector 'u'.

    u

    the other vector

  3. new VectorI(dim: Int, v: Array[Int] = null)

    dim

    the dimension/size of the vector

    v

    the 1D array used to store vector elements

Type Members

  1. type AsPartiallyOrdered[B] = (B) => PartiallyOrdered[B]
    Definition Classes
    PartiallyOrdered

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def *(s: (Int, Int)): VectorI

    Multiply 'this' vector by scalar 's._2' only at position 's._1', e.g., 'x * (3, 5.5)'.

    Multiply 'this' vector by scalar 's._2' only at position 's._1', e.g., 'x * (3, 5.5)'.

    s

    the (position, scalar) to multiply

    Definition Classes
    VectorIVectoI
  4. def *(s: Int): VectorI

    Multiply 'this' vector by scalar 's'.

    Multiply 'this' vector by scalar 's'.

    s

    the scalar to multiply by

    Definition Classes
    VectorIVectoI
  5. def *(b: VectorI): VectorI

    Multiply 'this' vector by vector 'b'.

    Multiply 'this' vector by vector 'b'.

    b

    the vector to multiply by (same kind, more efficient)

  6. def *(b: VectoI): VectorI

    Multiply 'this' vector by vector 'b'.

    Multiply 'this' vector by vector 'b'.

    b

    the vector to multiply by (any kind)

    Definition Classes
    VectorIVectoI
  7. def *=(s: Int): VectorI

    Multiply in-place 'this' vector and scalar 's'.

    Multiply in-place 'this' vector and scalar 's'.

    s

    the scalar to multiply by

    Definition Classes
    VectorIVectoI
  8. def *=(b: VectorI): VectorI

    Multiply in-place 'this' vector and vector 'b'.

    Multiply in-place 'this' vector and vector 'b'.

    b

    the vector to multiply by (same kind, more efficient)

  9. def *=(b: VectoI): VectorI

    Multiply in-place 'this' vector and vector 'b'.

    Multiply in-place 'this' vector and vector 'b'.

    b

    the vector to multiply by (any kind)

    Definition Classes
    VectorIVectoI
  10. def +(s: (Int, Int)): VectorI

    Add 'this' vector and scalar 's._2' only at position 's._1', e.g., 'x + (3, 5.5)'.

    Add 'this' vector and scalar 's._2' only at position 's._1', e.g., 'x + (3, 5.5)'.

    s

    the (position, scalar) to add

    Definition Classes
    VectorIVectoI
  11. def +(s: Int): VectorI

    Add 'this' vector and scalar 's'.

    Add 'this' vector and scalar 's'.

    s

    the scalar to add

    Definition Classes
    VectorIVectoI
  12. def +(b: VectorI): VectorI

    Add 'this' vector and vector 'b'.

    Add 'this' vector and vector 'b'.

    b

    the vector to add (same kind, more efficient)

  13. def +(b: VectoI): VectorI

    Add 'this' vector and vector 'b'.

    Add 'this' vector and vector 'b'.

    b

    the vector to add (any kind)

    Definition Classes
    VectorIVectoI
  14. def ++(s: Int): VectorI

    Concatenate 'this' vector and scalar 's'.

    Concatenate 'this' vector and scalar 's'.

    s

    the scalar to be concatenated

    Definition Classes
    VectorIVectoI
  15. def ++(b: VectorI): VectorI

    Concatenate 'this' vector and vector' b'.

    Concatenate 'this' vector and vector' b'.

    b

    the vector to be concatenated (same kind, more efficient)

  16. def ++(b: VectoI): VectorI

    Concatenate 'this' vector and vector' b'.

    Concatenate 'this' vector and vector' b'.

    b

    the vector to be concatenated (any kind)

    Definition Classes
    VectorIVectoI
  17. final def ++[B >: Int](suffix: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  18. def +=(s: Int): VectorI

    Add in-place 'this' vector and scalar 's'.

    Add in-place 'this' vector and scalar 's'.

    s

    the scalar to add

    Definition Classes
    VectorIVectoI
  19. def +=(b: VectorI): VectorI

    Add in-place 'this' vector and vector 'b'.

    Add in-place 'this' vector and vector 'b'.

    b

    the vector to add (same kind, more efficient)

  20. def +=(b: VectoI): VectorI

    Add in-place 'this' vector and vector 'b'.

    Add in-place 'this' vector and vector 'b'.

    b

    the vector to add (any kind)

    Definition Classes
    VectorIVectoI
  21. def -(s: (Int, Int)): VectorI

    From 'this' vector subtract scalar 's._2' only at position 's._1', e.g., 'x - (3, 5.5)'.

    From 'this' vector subtract scalar 's._2' only at position 's._1', e.g., 'x - (3, 5.5)'.

    s

    the (position, scalar) to subtract

    Definition Classes
    VectorIVectoI
  22. def -(s: Int): VectorI

    From 'this' vector subtract scalar 's'.

    From 'this' vector subtract scalar 's'.

    s

    the scalar to subtract

    Definition Classes
    VectorIVectoI
  23. def -(b: VectorI): VectorI

    From 'this' vector subtract vector 'b'.

    From 'this' vector subtract vector 'b'.

    b

    the vector to subtract (same kind, more efficient)

  24. def -(b: VectoI): VectorI

    From 'this' vector subtract vector 'b'.

    From 'this' vector subtract vector 'b'.

    b

    the vector to subtract (any kind)

    Definition Classes
    VectorIVectoI
  25. def -=(s: Int): VectorI

    From 'this' vector subtract in-place scalar 's'.

    From 'this' vector subtract in-place scalar 's'.

    s

    the scalar to subtract

    Definition Classes
    VectorIVectoI
  26. def -=(b: VectorI): VectorI

    From 'this' vector subtract in-place vector 'b'.

    From 'this' vector subtract in-place vector 'b'.

    b

    the vector to subtract (same kind, more efficient)

  27. def -=(b: VectoI): VectorI

    From 'this' vector subtract in-place vector 'b'.

    From 'this' vector subtract in-place vector 'b'.

    b

    the vector to subtract (any kind)

    Definition Classes
    VectorIVectoI
  28. def /(s: (Int, Int)): VectorI

    Divide 'this' vector by scalar 's._2' only at position 's._1', e.g., 'x / (3, 5.5)'.

    Divide 'this' vector by scalar 's._2' only at position 's._1', e.g., 'x / (3, 5.5)'.

    s

    the (position, scalar) to divide

    Definition Classes
    VectorIVectoI
  29. def /(s: Int): VectorI

    Divide 'this' vector by scalar 's'.

    Divide 'this' vector by scalar 's'.

    s

    the scalar to divide by

    Definition Classes
    VectorIVectoI
  30. def /(b: VectorI): VectorI

    Divide 'this' vector by vector 'b' (element-by-element).

    Divide 'this' vector by vector 'b' (element-by-element).

    b

    the vector to divide by (same kind, more efficient)

  31. def /(b: VectoI): VectorI

    Divide 'this' vector by vector 'b' (element-by-element).

    Divide 'this' vector by vector 'b' (element-by-element).

    b

    the vector to divide by (any kind)

    Definition Classes
    VectorIVectoI
  32. def /=(s: Int): VectorI

    Divide in-place 'this' vector and scalar 's'.

    Divide in-place 'this' vector and scalar 's'.

    s

    the scalar to divide by

    Definition Classes
    VectorIVectoI
  33. def /=(b: VectorI): VectorI

    Divide in-place 'this' vector and vector 'b'.

    Divide in-place 'this' vector and vector 'b'.

    b

    the vector to divide by (same kind, more efficient)

  34. def /=(b: VectoI): VectorI

    Divide in-place 'this' vector and vector 'b'.

    Divide in-place 'this' vector and vector 'b'.

    b

    the vector to divide by (any kind)

    Definition Classes
    VectorIVectoI
  35. def <[B >: VectoI](that: B)(implicit arg0: AsPartiallyOrdered[B]): Boolean
    Definition Classes
    PartiallyOrdered
  36. def <=[B >: VectoI](that: B)(implicit arg0: AsPartiallyOrdered[B]): Boolean
    Definition Classes
    PartiallyOrdered
  37. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  38. def >[B >: VectoI](that: B)(implicit arg0: AsPartiallyOrdered[B]): Boolean
    Definition Classes
    PartiallyOrdered
  39. def >=[B >: VectoI](that: B)(implicit arg0: AsPartiallyOrdered[B]): Boolean
    Definition Classes
    PartiallyOrdered
  40. def _oneAt(j: Int, size: Int = dim): VectorI

    Create a vector of the form (0, ...

    Create a vector of the form (0, ... -1, ... 0) where the -1 is at position j.

    j

    the position to place the -1

    size

    the size of the vector (upper bound = size - 1)

    Definition Classes
    VectorIVectoI
  41. def abs: VectorI

    Return the vector that is the element-wise absolute value of 'this' vector.

    Return the vector that is the element-wise absolute value of 'this' vector.

    Definition Classes
    VectorIVectoI
  42. final def addString(b: StringBuilder): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  43. final def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  44. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    IterableOnceOps
  45. def apply(iv: VectoI): VectorI

    Get 'this' vector's elements that are given in the index vector.

    Get 'this' vector's elements that are given in the index vector.

    iv

    the index vector

    Definition Classes
    VectorIVectoI
  46. def apply(): ArraySeq[Int]

    Get 'this' vector's entire array.

    Get 'this' vector's entire array.

    Definition Classes
    VectorIVectoI
  47. def apply(r: Range): VectorI

    Get 'this' vector's elements within the given range (vector slicing).

    Get 'this' vector's elements within the given range (vector slicing).

    r

    the given range

    Definition Classes
    VectorIVectoI
  48. def apply(i: Int): Int

    Get 'this' vector's element at the 'i'-th index position.

    Get 'this' vector's element at the 'i'-th index position.

    i

    the given index

    Definition Classes
    VectorIVectoI
  49. def argmax(s: Int, e: Int): Int

    Find the argument maximum of 'this' vector (index of maximum element).

    Find the argument maximum of 'this' vector (index of maximum element).

    s

    the starting index (inclusive) for the search

    e

    the ending index (exclusive) for the search

    Definition Classes
    VectorIVectoI
  50. def argmax(e: Int = dim): Int

    Find the argument maximum of 'this' vector (index of maximum element).

    Find the argument maximum of 'this' vector (index of maximum element).

    e

    the ending index (exclusive) for the search

    Definition Classes
    VectorIVectoI
  51. def argmaxPos(e: Int = dim): Int

    Return the argument maximum of 'this' vector (-1 if it's not positive).

    Return the argument maximum of 'this' vector (-1 if it's not positive).

    e

    the ending index (exclusive) for the search

    Definition Classes
    VectorIVectoI
  52. def argmin(s: Int, e: Int): Int

    Find the argument minimum of 'this' vector (index of minimum element).

    Find the argument minimum of 'this' vector (index of minimum element).

    s

    the starting index (inclusive) for the search

    e

    the ending index (exclusive) for the search

    Definition Classes
    VectorIVectoI
  53. def argmin(e: Int = dim): Int

    Find the argument minimum of 'this' vector (index of minimum element).

    Find the argument minimum of 'this' vector (index of minimum element).

    e

    the ending index (exclusive) for the search

    Definition Classes
    VectorIVectoI
  54. def argminNeg(e: Int = dim): Int

    Return the argument minimum of 'this' vector (-1 if it's not negative).

    Return the argument minimum of 'this' vector (-1 if it's not negative).

    e

    the ending index (exclusive) for the search

    Definition Classes
    VectorIVectoI
  55. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  56. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  57. def clean(thres: Double = TOL, relative: Boolean = true): VectorI

    Clean values in 'this' vector at or below the threshold 'thres' by setting them to zero.

    Clean values in 'this' vector at or below the threshold 'thres' by setting them to zero. Iterative algorithms give approximate values and if very close to zero, may throw off other calculations, e.g., in computing eigenvectors.

    thres

    the cutoff threshold (a small value)

    relative

    whether to use relative or absolute cutoff

  58. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  59. final def coll: VectorI.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  60. def collect[B](pf: PartialFunction[Int, B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  61. def collectFirst[B](pf: PartialFunction[Int, B]): Option[B]
    Definition Classes
    IterableOnceOps
  62. def concat[B >: Int](suffix: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
  63. def contains(x: Int): Boolean

    Determine whether 'x' is contained in 'this' vector.

    Determine whether 'x' is contained in 'this' vector.

    x

    the element to be checked

    Definition Classes
    VectorIVectoI
  64. def containsAny(x: VectorI): Boolean

    Determine whether any of the elements in 'x' are contained in 'this' vector.

    Determine whether any of the elements in 'x' are contained in 'this' vector.

    x

    the vector of elements to be checked

  65. def copy: VectorI

    Create an exact copy of 'this' vector.

    Create an exact copy of 'this' vector.

    Definition Classes
    VectorIVectoI
  66. def copyToArray[B >: Int](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  67. def copyToArray[B >: Int](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  68. def copyToArray[B >: Int](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  69. def corresponds[B](that: IterableOnce[B])(p: (Int, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  70. def count(p: (Int) => Boolean): Int
    Definition Classes
    IterableOnceOps
  71. def countNeg: Int

    Count the number of strictly negative elements in 'this' vector.

    Count the number of strictly negative elements in 'this' vector.

    Definition Classes
    VectorIVectoI
  72. def countPos: Int

    Count the number of strictly positive elements in 'this' vector.

    Count the number of strictly positive elements in 'this' vector.

    Definition Classes
    VectorIVectoI
  73. def countZero: Int

    Count the number of zero elements in the 'this' vector.

    Count the number of zero elements in the 'this' vector.

    Definition Classes
    VectorIVectoI
  74. def countinct: Int

    Count the number of distinct elements in 'this' vector.

    Count the number of distinct elements in 'this' vector.

    Definition Classes
    VectorIVectoI
  75. def cumulate: VectorI

    Cumulate the values of 'this' vector from left to right (e.g., create a CDF from a pmf).

    Cumulate the values of 'this' vector from left to right (e.g., create a CDF from a pmf). Example: (4, 2, 3, 1) --> (4, 6, 9, 10)

    Definition Classes
    VectorIVectoI
  76. def diff(b: VectorI): VectorI

    Take difference between 'this' vector and vector 'b', i.e., the elements in this, but in 'b'.

    Take difference between 'this' vector and vector 'b', i.e., the elements in this, but in 'b'.

    b

    the other vector

  77. val dim: Int

    Vector dimension

    Vector dimension

    Definition Classes
    VectorIVectoI
  78. def distinct: VectorI

    Return a new vector consisting of the distinct elements from 'this' vector.

    Return a new vector consisting of the distinct elements from 'this' vector.

    Definition Classes
    VectorIVectoI
  79. def dot(b: VectorI): Int

    Compute the dot product (or inner product) of 'this' vector with vector 'b'.

    Compute the dot product (or inner product) of 'this' vector with vector 'b'. When b.dim > dim, the remaining elements in b are skipped. When b.dim < dim, an index out of bound exception is thrown.

    b

    the other vector (same kind, more efficient)

  80. def dot(b: VectoI): Int

    Compute the dot product (or inner product) of 'this' vector with vector 'b'.

    Compute the dot product (or inner product) of 'this' vector with vector 'b'. When b.dim > dim, the remaining elements in b are skipped. When b.dim < dim, an index out of bound exception is thrown.

    b

    the other vector (any kind)

    Definition Classes
    VectorIVectoI
  81. def drop(n: Int): Iterable[Int]
    Definition Classes
    IterableOps → IterableOnceOps
  82. def dropRight(n: Int): Iterable[Int]
    Definition Classes
    IterableOps
  83. def dropWhile(p: (Int) => Boolean): Iterable[Int]
    Definition Classes
    IterableOps → IterableOnceOps
  84. def empty: Iterable[Int]
    Definition Classes
    IterableFactoryDefaults → IterableOps
  85. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  86. def equals(b: Any): Boolean

    Override equals to determine whether 'this' vector equals vector 'b'.

    Override equals to determine whether 'this' vector equals vector 'b'.

    b

    the vector to compare with this

    Definition Classes
    VectorIVectoI → AnyRef → Any
  87. def exists(p: (Int) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  88. def expand(more: Int = dim): VectorI

    Expand the size (dim) of 'this' vector by 'more' elements.

    Expand the size (dim) of 'this' vector by 'more' elements.

    more

    the number of new elements to add

    Definition Classes
    VectorIVectoI
  89. val fString: String

    Format String used for printing vector values (change using 'setFormat') Ex: "%d,\t", "%.6g,\t" or "%12.6g,\t"

    Format String used for printing vector values (change using 'setFormat') Ex: "%d,\t", "%.6g,\t" or "%12.6g,\t"

    Attributes
    protected
    Definition Classes
    VectoI
  90. def filter(p: (Int) => Boolean): VectorI

    Filter the elements of 'this' vector based on the predicate 'p', returning a new vector.

    Filter the elements of 'this' vector based on the predicate 'p', returning a new vector.

    p

    the predicate (Boolean function) to apply

    Definition Classes
    VectorIVectoI → IterableOps → IterableOnceOps
  91. def filterMissing: VectorI

    Filter out the missing elements of 'this' vector based on the predicate that 'e != noInt'.

    Filter out the missing elements of 'this' vector based on the predicate that 'e != noInt'.

    Definition Classes
    VectorIVectoI
  92. def filterNot(pred: (Int) => Boolean): Iterable[Int]
    Definition Classes
    IterableOps → IterableOnceOps
  93. def filterPos(p: (Int) => Boolean): IndexedSeq[Int]

    Filter the elements of 'this' vector based on the predicate 'p', returning the index positions.

    Filter the elements of 'this' vector based on the predicate 'p', returning the index positions.

    p

    the predicate (Boolean function) to apply

    Definition Classes
    VectorIVectoI
  94. def filterPos2(v2: VectoI, p: (Int, Int) => Boolean): IndexedSeq[(Int, Int)]

    Filter the elements of 'this' vector based on the binary predicate 'p', returning the index positions.

    Filter the elements of 'this' vector based on the binary predicate 'p', returning the index positions.

    v2

    the other vector to compare with

    p

    the binary predicate (Boolean function, between two elements) to apply

    Definition Classes
    VectorIVectoI
  95. def find(p: (Int) => Boolean): Option[Int]
    Definition Classes
    IterableOnceOps
  96. def firstNeg(e: Int = dim): Int

    Return the index of the first negative element in 'this' vector (-1 otherwise).

    Return the index of the first negative element in 'this' vector (-1 otherwise).

    e

    the ending index (exclusive) for the search

    Definition Classes
    VectorIVectoI
  97. def firstPos(e: Int = dim): Int

    Return the index of the first positive element in 'this' vector (-1 otherwise).

    Return the index of the first positive element in 'this' vector (-1 otherwise).

    e

    the ending index (exclusive) for the search

    Definition Classes
    VectorIVectoI
  98. def flatMap[B](f: (Int) => IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  99. def flatten[B](implicit asIterable: (Int) => IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  100. final def flaw(method: String, message: String): Unit

    Show the flaw by printing the error message.

    Show the flaw by printing the error message.

    method

    the method where the error occurred

    message

    the error message

    Definition Classes
    Error
  101. def fold[A1 >: Int](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  102. def foldLeft[B](z: B)(op: (B, Int) => B): B
    Definition Classes
    IterableOnceOps
  103. def foldRight[B](z: B)(op: (Int, B) => B): B
    Definition Classes
    IterableOnceOps
  104. def forall(p: (Int) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  105. def foreach[U](f: (Int) => U): Unit

    Iterate over 'this' vector element by element.

    Iterate over 'this' vector element by element.

    f

    the function to apply

    Definition Classes
    VectorIVectoI → IterableOnceOps
  106. def fromSpecific(coll: IterableOnce[Int]): Iterable[Int]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  107. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  108. def groupBy[K](f: (Int) => K): Map[K, Iterable[Int]]
    Definition Classes
    IterableOps
  109. def groupMap[K, B](key: (Int) => K)(f: (Int) => B): Map[K, Iterable[B]]
    Definition Classes
    IterableOps
  110. def groupMapReduce[K, B](key: (Int) => K)(f: (Int) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  111. def grouped(size: Int): Iterator[Iterable[Int]]
    Definition Classes
    IterableOps
  112. def hashCode(): Int

    Must also override hashCode for 'this' vector to be compatible with equals.

    Must also override hashCode for 'this' vector to be compatible with equals.

    Definition Classes
    VectorIVectoI → AnyRef → Any
  113. def head: Int
    Definition Classes
    IterableOps
  114. def headOption: Option[Int]
    Definition Classes
    IterableOps
  115. def indexOf(x: Int, e: Int = dim): Int

    Return the index of the first occurrence of element 'x' in 'this' vector, or -1 if not found.

    Return the index of the first occurrence of element 'x' in 'this' vector, or -1 if not found.

    x

    the given element

    e

    the ending index (exclusive) for the search

    Definition Classes
    VectorIVectoI
  116. def indexWhere(p: (Int) => Boolean): Int

    Find and return index of first element satisfying predicate 'p', or -1 if not found.

    Find and return index of first element satisfying predicate 'p', or -1 if not found.

    p

    the predicate to check

    Definition Classes
    VectorIVectoI
  117. def indices: Range

    Produce the range of all indices (0 to one less than dim).

    Produce the range of all indices (0 to one less than dim).

    Definition Classes
    VectoIVec
  118. def init: Iterable[Int]
    Definition Classes
    IterableOps
  119. def inits: Iterator[Iterable[Int]]
    Definition Classes
    IterableOps
  120. def intersect(x: VectorI): VectorI

    Return the intersection of vectors 'this' and 'x'.

    Return the intersection of vectors 'this' and 'x'.

    x

    the other vector

  121. def isEmpty: Boolean
    Definition Classes
    IterableOnceOps
  122. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  123. def isNonnegative: Boolean

    Check whether 'this' vector is nonnegative (has no negative elements).

    Check whether 'this' vector is nonnegative (has no negative elements).

    Definition Classes
    VectorIVectoI
  124. def isSorted: Boolean

    Determine whether 'this' vector is in sorted (ascending) order.

    Determine whether 'this' vector is in sorted (ascending) order.

    Definition Classes
    VectorIVectoI
  125. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  126. def iterableFactory: IterableFactory[Iterable]
    Definition Classes
    Iterable → IterableOps
  127. def iterator: Iterator[Int]

    Return an iterator which yields all the elements.

    Return an iterator which yields all the elements.

    Definition Classes
    VectorI → IterableOnce
  128. def knownSize: Int
    Definition Classes
    IterableOnce
  129. def last: Int
    Definition Classes
    IterableOps
  130. def lastOption: Option[Int]
    Definition Classes
    IterableOps
  131. def lazyZip[B](that: Iterable[B]): LazyZip2[Int, B, VectorI.this.type]
    Definition Classes
    Iterable
  132. def mag: Int

    Find the element with the greatest magnitude in 'this' vector.

    Find the element with the greatest magnitude in 'this' vector.

    Definition Classes
    VectoI
  133. def map(f: (Int) => Int): VectorI

    Map the elements of 'this' vector by applying the mapping function 'f'.

    Map the elements of 'this' vector by applying the mapping function 'f'.

    f

    the function to apply

    Definition Classes
    VectorIVectoI
  134. def map[B](f: (Int) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  135. def max(b: VectorI): VectorI

    Take the maximum of 'this' vector with vector 'b' (element-by element).

    Take the maximum of 'this' vector with vector 'b' (element-by element).

    b

    the other vector (same kind, more efficient)

  136. def max(b: VectoI): VectorI

    Take the maximum of 'this' vector with vector 'b' (element-by element).

    Take the maximum of 'this' vector with vector 'b' (element-by element).

    b

    the other vector (any kind)

    Definition Classes
    VectorIVectoI
  137. def max(e: Int = dim): Int

    Find the maximum element in 'this' vector.

    Find the maximum element in 'this' vector.

    e

    the ending index (exclusive) for the search

    Definition Classes
    VectorIVectoI
  138. def max[B >: Int](implicit ord: Ordering[B]): Int
    Definition Classes
    IterableOnceOps
  139. def maxBy[B](f: (Int) => B)(implicit cmp: Ordering[B]): Int
    Definition Classes
    IterableOnceOps
  140. def maxByOption[B](f: (Int) => B)(implicit cmp: Ordering[B]): Option[Int]
    Definition Classes
    IterableOnceOps
  141. def maxOption[B >: Int](implicit ord: Ordering[B]): Option[Int]
    Definition Classes
    IterableOnceOps
  142. def mean: Double

    Compute the mean of the elements of 'this' vector.

    Compute the mean of the elements of 'this' vector.

    Definition Classes
    VectoI
  143. def min(b: VectorI): VectorI

    Take the minimum of 'this' vector with vector 'b' (element-by element).

    Take the minimum of 'this' vector with vector 'b' (element-by element).

    b

    the other vector (same kind, more efficient)

  144. def min(b: VectoI): VectorI

    Take the minimum of 'this' vector with vector 'b' (element-by element).

    Take the minimum of 'this' vector with vector 'b' (element-by element).

    b

    the other vector (any kind)

    Definition Classes
    VectorIVectoI
  145. def min(e: Int = dim): Int

    Find the minimum element in 'this' vector.

    Find the minimum element in 'this' vector.

    e

    the ending index (exclusive) for the search

    Definition Classes
    VectorIVectoI
  146. def min[B >: Int](implicit ord: Ordering[B]): Int
    Definition Classes
    IterableOnceOps
  147. def minBy[B](f: (Int) => B)(implicit cmp: Ordering[B]): Int
    Definition Classes
    IterableOnceOps
  148. def minByOption[B](f: (Int) => B)(implicit cmp: Ordering[B]): Option[Int]
    Definition Classes
    IterableOnceOps
  149. def minOption[B >: Int](implicit ord: Ordering[B]): Option[Int]
    Definition Classes
    IterableOnceOps
  150. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  151. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  152. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  153. val nd: Double

    Number of elements in the vector as a Int

    Number of elements in the vector as a Int

    Definition Classes
    VectoI
  154. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  155. def newSpecificBuilder: Builder[Int, Iterable[Int]]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  156. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  157. def norm: Int

    Compute the Euclidean norm (2-norm) of 'this' vector.

    Compute the Euclidean norm (2-norm) of 'this' vector.

    Definition Classes
    VectoI
  158. def norm1: Int

    Compute the Manhattan norm (1-norm) of 'this' vector, i.e., the sum of the absolute values of the elements.

    Compute the Manhattan norm (1-norm) of 'this' vector, i.e., the sum of the absolute values of the elements.

    Definition Classes
    VectorIVectoI
  159. def normSq: Int

    Compute the Euclidean norm (2-norm) squared of 'this' vector.

    Compute the Euclidean norm (2-norm) squared of 'this' vector.

    Definition Classes
    VectoI
  160. def normalize: VectorI

    Normalize 'this' vector so that it sums to one (like a probability vector).

    Normalize 'this' vector so that it sums to one (like a probability vector).

    Definition Classes
    VectorIVectoI
  161. def normalize1: VectorI

    Normalize 'this' vector to have a maximum of one.

    Normalize 'this' vector to have a maximum of one.

    Definition Classes
    VectorIVectoI
  162. def normalizeU: VectorI

    Normalize 'this' vector so its length is one (unit vector).

    Normalize 'this' vector so its length is one (unit vector).

    Definition Classes
    VectorIVectoI
  163. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  164. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  165. def one(size: Int = dim): VectorI

    Create a one vector (all elements are one) of length 'size'.

    Create a one vector (all elements are one) of length 'size'.

    size

    the number of elements in the vector

    Definition Classes
    VectorIVectoI
  166. def oneAt(j: Int, size: Int = dim): VectorI

    Create a vector of the form (0, ...

    Create a vector of the form (0, ... 1, ... 0) where the 1 is at position j.

    j

    the position to place the 1

    size

    the size of the vector (upper bound = size - 1)

    Definition Classes
    VectorIVectoI
  167. def partition(p: (Int) => Boolean): (Iterable[Int], Iterable[Int])
    Definition Classes
    IterableOps
  168. def partitionMap[A1, A2](f: (Int) => Either[A1, A2]): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  169. def pot(b: VectoI): Int

    Compute the dot product (or inner product) of 'this' vector with vector 'b' zero-padded.

    Compute the dot product (or inner product) of 'this' vector with vector 'b' zero-padded.

    b

    the other vector

    Definition Classes
    VectorIVectoI
  170. def product[B >: Int](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  171. def pvariance: Double

    Compute the population variance of the elements of 'this' vector.

    Compute the population variance of the elements of 'this' vector. This is also the (biased) MLE estimator for sample variance.

    Definition Classes
    VectoI
  172. val range: Range

    Range for the storage array

    Range for the storage array

    Definition Classes
    VectoI
  173. def rank: VectorI

    Establish the rank order of the elements in 'self' vector, e.g., (8.0, 2.0, 4.0, 6.0) is (3, 0, 1, 2).

    Establish the rank order of the elements in 'self' vector, e.g., (8.0, 2.0, 4.0, 6.0) is (3, 0, 1, 2).

    Definition Classes
    VectorIVectoI
  174. def recip: VectorI

    Return the vector containing the reciprocal of each element of 'this' vector.

    Return the vector containing the reciprocal of each element of 'this' vector.

    Definition Classes
    VectorIVectoI
  175. def reduce[B >: Int](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  176. def reduceLeft[B >: Int](op: (B, Int) => B): B
    Definition Classes
    IterableOnceOps
  177. def reduceLeftOption[B >: Int](op: (B, Int) => B): Option[B]
    Definition Classes
    IterableOnceOps
  178. def reduceOption[B >: Int](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  179. def reduceRight[B >: Int](op: (Int, B) => B): B
    Definition Classes
    IterableOnceOps
  180. def reduceRightOption[B >: Int](op: (Int, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  181. def reorder(rnk: VectoI): VectoI

    Return the elements in 'this' vector in the given rank order 'rnk'.

    Return the elements in 'this' vector in the given rank order 'rnk'.

    rnk

    the given rank order

    Definition Classes
    VectoI
  182. def reverse(): VectorI

    Reverse the order of the elements in 'this' vector.

    Reverse the order of the elements in 'this' vector.

    Definition Classes
    VectorIVectoI
  183. def reversed: Iterable[Int]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  184. def rot(b: VectoI)(from: Int = b.dim - 1): Int

    Compute the dot product (or inner product) of 'this' vector with vector 'b' zero-padded and reversed.

    Compute the dot product (or inner product) of 'this' vector with vector 'b' zero-padded and reversed.

    b

    the other vector

    from

    the location in b to move back from

    Definition Classes
    VectorIVectoI
  185. def sameDimensions(b: VectoI): Boolean

    Check whether the other vector 'b' is at least as long as 'this' vector.

    Check whether the other vector 'b' is at least as long as 'this' vector.

    b

    the other vector

    Definition Classes
    VectoI
  186. def scan[B >: Int](z: B)(op: (B, B) => B): Iterable[B]
    Definition Classes
    IterableOps
  187. def scanLeft[B](z: B)(op: (B, Int) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  188. def scanRight[B](z: B)(op: (Int, B) => B): Iterable[B]
    Definition Classes
    IterableOps
  189. def select(basis: VectoI): VectorI

    Select a subset of elements of 'this' vector corresponding to a 'basis'.

    Select a subset of elements of 'this' vector corresponding to a 'basis'.

    basis

    the set/vector of index positions (e.g., 0, 2, 5)

    Definition Classes
    VectorIVectoI
  190. def select(basis: Array[Int]): VectorI

    Select a subset of elements of 'this' vector corresponding to a 'basis'.

    Select a subset of elements of 'this' vector corresponding to a 'basis'.

    basis

    the set/array of index positions (e.g., 0, 2, 5)

    Definition Classes
    VectorIVectoI
  191. def selectEx(basis: VectoI): VectoI

    Select all elements of 'this' vector excluding ones in the 'basis'.

    Select all elements of 'this' vector excluding ones in the 'basis'.

    basis

    the index positions to be excluded

    Definition Classes
    VectoI
  192. def selectEx(basis: Array[Int]): VectoI

    Select all elements of 'this' vector excluding ones in the 'basis'.

    Select all elements of 'this' vector excluding ones in the 'basis'.

    basis

    the index positions to be excluded

    Definition Classes
    VectoI
  193. def set(u: Seq[Int]): Unit

    Set the values in 'this' vector to the values in sequence/array 'u'.

    Set the values in 'this' vector to the values in sequence/array 'u'.

    u

    the sequence/array of values to be assigned

    Definition Classes
    VectorIVectoI
  194. def set(x: Int): Unit

    Set each value in 'this' vector to 'x'.

    Set each value in 'this' vector to 'x'.

    x

    the value to be assigned

    Definition Classes
    VectorIVectoI
  195. def setFormat(newFormat: String): Unit

    Set the format to the 'newFormat' (e.g., "%.6g,\t" or "%12.6g,\t").

    Set the format to the 'newFormat' (e.g., "%.6g,\t" or "%12.6g,\t").

    newFormat

    the new format String

    Definition Classes
    VectoI
  196. def size: Int

    Return the size (number of elements) of 'this' vector.

    Return the size (number of elements) of 'this' vector.

    Definition Classes
    VectoIVec → IterableOnceOps
  197. def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    IterableOps
  198. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  199. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  200. def slice(from: Int, till: Int = dim): VectorI

    Slice 'this' vector 'from' to 'end'.

    Slice 'this' vector 'from' to 'end'.

    from

    the start of the slice (included)

    till

    the end of the slice (excluded)

    Definition Classes
    VectorIVectoI → IterableOps → IterableOnceOps
  201. def slice(rg: Range): VectoI

    Slice 'this' vector over the given range 'rg'.

    Slice 'this' vector over the given range 'rg'.

    rg

    the range specifying the slice

    Definition Classes
    VectoI
  202. def sliceEx(rg: Range): VectoI

    Slice 'this' vector excluding the given range 'rg'.

    Slice 'this' vector excluding the given range 'rg'.

    rg

    the excluded range of the slice

    Definition Classes
    VectoI
  203. def sliding(size: Int, step: Int): Iterator[Iterable[Int]]
    Definition Classes
    IterableOps
  204. def sliding(size: Int): Iterator[Iterable[Int]]
    Definition Classes
    IterableOps
  205. def sort(): Unit

    Sort 'this' vector in-place in ascending (non-decreasing) order.

    Sort 'this' vector in-place in ascending (non-decreasing) order.

    Definition Classes
    VectorIVectoI
  206. def sort2(): Unit

    Sort 'this' vector in-place in descending (non-increasing) order.

    Sort 'this' vector in-place in descending (non-increasing) order.

    Definition Classes
    VectorIVectoI
  207. def span(p: (Int) => Boolean): (Iterable[Int], Iterable[Int])
    Definition Classes
    IterableOps → IterableOnceOps
  208. def split(k: Int): Array[VectoI]

    Split 'this' vector into 'k' arrays of equal sizes (perhaps except for the last one).

    Split 'this' vector into 'k' arrays of equal sizes (perhaps except for the last one).

    k

    the number of pieces the vector is to be split into

    Definition Classes
    VectorIVectoI
  209. def split(basis: VectoI): (VectoI, VectoI)

    Split the elements of 'this' vector into two vectors, one including the 'basis' and the other excluding the 'basis'.

    Split the elements of 'this' vector into two vectors, one including the 'basis' and the other excluding the 'basis'.

    basis

    the index positions to be included/excluded

    Definition Classes
    VectoI
  210. def split(basis: Array[Int]): (VectoI, VectoI)

    Split the elements of 'this' vector into two vectors, one including the 'basis' and the other excluding the 'basis'.

    Split the elements of 'this' vector into two vectors, one including the 'basis' and the other excluding the 'basis'.

    basis

    the index positions to be included/excluded

    Definition Classes
    VectoI
  211. def splitAt(n: Int): (Iterable[Int], Iterable[Int])
    Definition Classes
    IterableOps → IterableOnceOps
  212. def sq: VectoI

    Return the vector containing the square of each element of 'this' vector.

    Return the vector containing the square of each element of 'this' vector.

    Definition Classes
    VectoI
  213. def stepper[S <: Stepper[_]](implicit shape: StepperShape[Int, S]): S
    Definition Classes
    IterableOnce
  214. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
    Annotations
    @deprecatedOverriding()
  215. def sum: Int

    Sum the elements of 'this' vector.

    Sum the elements of 'this' vector.

    Definition Classes
    VectorIVectoI
  216. def sum[B >: Int](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  217. def sumNE(i: Int): Int

    Sum the elements of 'this' vector skipping the 'i'-th element (Not Equal 'i').

    Sum the elements of 'this' vector skipping the 'i'-th element (Not Equal 'i').

    i

    the index of the element to skip

    Definition Classes
    VectorIVectoI
  218. def sumPos: Int

    Sum the positive (> 0) elements of 'this' vector.

    Sum the positive (> 0) elements of 'this' vector.

    Definition Classes
    VectorIVectoI
  219. def swap(i: Int, j: Int): Unit

    Swap elements 'i' and 'j' in 'this' vector.

    Swap elements 'i' and 'j' in 'this' vector.

    i

    the first element in the swap

    j

    the second element in the swap

    Definition Classes
    VectorIVectoI
  220. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  221. def tail: Iterable[Int]
    Definition Classes
    IterableOps
  222. def tails: Iterator[Iterable[Int]]
    Definition Classes
    IterableOps
  223. def take(n: Int): Iterable[Int]
    Definition Classes
    IterableOps → IterableOnceOps
  224. def takeRight(n: Int): Iterable[Int]
    Definition Classes
    IterableOps
  225. def takeWhile(p: (Int) => Boolean): Iterable[Int]
    Definition Classes
    IterableOps → IterableOnceOps
  226. def tapEach[U](f: (Int) => U): Iterable[Int]
    Definition Classes
    IterableOps → IterableOnceOps
  227. def to[C1](factory: Factory[Int, C1]): C1
    Definition Classes
    IterableOnceOps
  228. def toArray[B >: Int](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  229. final def toBuffer[B >: Int]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  230. def toDense: VectorI

    Convert 'this' VectorI into a dense VectorI.

    Convert 'this' VectorI into a dense VectorI.

    Definition Classes
    VectorIVectoI
  231. def toDouble: VectorD

    Convert 'this' VectorI into a VectorD.

    Convert 'this' VectorI into a VectorD.

    Definition Classes
    VectorIVectoI
  232. def toIndexedSeq: IndexedSeq[Int]
    Definition Classes
    IterableOnceOps
  233. def toInt: VectorI

    Convert 'this' VectorI into a VectorI.

    Convert 'this' VectorI into a VectorI.

    Definition Classes
    VectorIVectoI
  234. final def toIterable: VectorI.this.type
    Definition Classes
    Iterable → IterableOps
  235. def toList: List[Int]
    Definition Classes
    IterableOnceOps
  236. def toLong: VectorL

    Convert 'this' VectorI into a VectorL.

    Convert 'this' VectorI into a VectorL.

    Definition Classes
    VectorIVectoI
  237. def toMap[K, V](implicit ev: <:<[Int, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  238. def toSeq: Seq[Int]
    Definition Classes
    IterableOnceOps
  239. def toSet[B >: Int]: Set[B]
    Definition Classes
    IterableOnceOps
  240. def toString: String

    Convert 'this' vector to a String.

    Convert 'this' vector to a String.

    Definition Classes
    VectorIVectoI → Iterable → AnyRef → Any
  241. def toVector: Vector[Int]
    Definition Classes
    IterableOnceOps
  242. def transpose[B](implicit asIterable: (Int) => Iterable[B]): Iterable[Iterable[B]]
    Definition Classes
    IterableOps
  243. def tryCompareTo[B >: VectorI](b: B)(implicit view_1: (B) => PartiallyOrdered[B]): Option[Int]

    Compare 'this' vector with vector 'b'.

    Compare 'this' vector with vector 'b'.

    b

    the other vector

    Definition Classes
    VectorI → PartiallyOrdered
  244. def unary_-: VectorI

    Return the negative of 'this' vector (unary minus).

    Return the negative of 'this' vector (unary minus).

    Definition Classes
    VectorIVectoI
  245. def unzip[A1, A2](implicit asPair: (Int) => (A1, A2)): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  246. def unzip3[A1, A2, A3](implicit asTriple: (Int) => (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
    Definition Classes
    IterableOps
  247. def update(r: Range, u: VectoI): Unit

    Set 'this' vector's elements over the given range (vector slicing).

    Set 'this' vector's elements over the given range (vector slicing).

    r

    the given range

    u

    the vector to assign

    Definition Classes
    VectorIVectoI
  248. def update(r: Range, x: Int): Unit

    Set 'this' vector's elements over the given range (vector slicing).

    Set 'this' vector's elements over the given range (vector slicing).

    r

    the given range

    x

    the value to assign

    Definition Classes
    VectorIVectoI
  249. def update(i: Int, x: Int): Unit

    Set 'this' vector's element at the 'i'-th index position.

    Set 'this' vector's element at the 'i'-th index position.

    i

    the given index

    x

    the value to assign

    Definition Classes
    VectorIVectoI
  250. var v: Array[Int]
    Attributes
    protected
  251. def variance: Double

    Compute the (unbiased) sample variance of the elements of 'this' vector.

    Compute the (unbiased) sample variance of the elements of 'this' vector.

    Definition Classes
    VectoI
  252. def view: View[Int]
    Definition Classes
    IterableOps
  253. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  254. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  255. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  256. def withFilter(p: (Int) => Boolean): WithFilter[Int, Iterable]
    Definition Classes
    IterableOps
  257. def zero(size: Int = dim): VectorI

    Create a zero vector (all elements are zero) of length 'size'.

    Create a zero vector (all elements are zero) of length 'size'.

    size

    the number of elements in the vector

    Definition Classes
    VectorIVectoI
  258. def zip[B](that: IterableOnce[B]): Iterable[(Int, B)]
    Definition Classes
    IterableOps
  259. def zipAll[A1 >: Int, B](that: Iterable[B], thisElem: A1, thatElem: B): Iterable[(A1, B)]
    Definition Classes
    IterableOps
  260. def zipWithIndex: Iterable[(Int, Int)]
    Definition Classes
    IterableOps → IterableOnceOps
  261. def ~^(s: Int): VectorI

    Return the vector containing each element of 'this' vector raised to the s-th power.

    Return the vector containing each element of 'this' vector raised to the s-th power.

    s

    the scalar exponent

    Definition Classes
    VectorIVectoI
  262. def ~^=(s: Int): VectorI

    Raise in-place each element of 'this' vector to the 's'-th power.

    Raise in-place each element of 'this' vector to the 's'-th power.

    s

    the scalar exponent

    Definition Classes
    VectorIVectoI
  263. def (b: VectoI): Int

    Compute the dot product (or inner product) of 'this' vector with vector 'b'.

    Compute the dot product (or inner product) of 'this' vector with vector 'b'. When b.dim > dim, the remaining elements in b are skipped. When b.dim < dim, an index out of bound exception is thrown.

    b

    the other vector

    Definition Classes
    VectoI
  264. def (b: VectoI): Boolean

    Compare 'this' vector with that vector 'b' for inequality.

    Compare 'this' vector with that vector 'b' for inequality.

    b

    that vector

    Definition Classes
    VectoI
  265. def (b: VectoI): Boolean

    Compare 'this' vector with that vector 'b' for less than or equal to.

    Compare 'this' vector with that vector 'b' for less than or equal to.

    b

    that vector

    Definition Classes
    VectoI
  266. def (b: VectoI): Boolean

    Compare 'this' vector with that vector 'b' for greater than or equal to.

    Compare 'this' vector with that vector 'b' for greater than or equal to.

    b

    that vector

    Definition Classes
    VectoI

Deprecated Value Members

  1. def ++:[B >: Int](that: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ instead of ++: for collections of type Iterable

  2. final def /:[B](z: B)(op: (B, Int) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  3. final def :\[B](z: B)(op: (Int, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  4. def aggregate[B](z: => B)(seqop: (B, Int) => B, combop: (B, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

  5. def companion: IterableFactory[Iterable]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding() @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  6. final def copyToBuffer[B >: Int](dest: Buffer[B]): Unit
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  7. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated
  8. def hasDefiniteSize: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)

  9. final def repr: Iterable[Int]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside

  10. def seq: VectorI.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterable.seq always returns the iterable itself

  11. final def toIterator: Iterator[Int]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead of .toIterator

  12. final def toStream: Stream[Int]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .to(LazyList) instead of .toStream

  13. final def toTraversable: Traversable[Int]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  14. def view(from: Int, until: Int): View[Int]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)

Inherited from VectoI

Inherited from Serializable

Inherited from Error

Inherited from Vec

Inherited from PartiallyOrdered[VectoI]

Inherited from Iterable[Int]

Inherited from IterableFactoryDefaults[Int, Iterable]

Inherited from IterableOps[Int, Iterable, Iterable[Int]]

Inherited from IterableOnceOps[Int, Iterable, Iterable[Int]]

Inherited from IterableOnce[Int]

Inherited from AnyRef

Inherited from Any

Ungrouped