sealed trait ScalarArray[S] extends IndexedSeq[S]

Class representing an array of scalar data. Only a subset of the array and generic collections operations is supported, and the data should be treated as immutable. For instance, data values can be accessed by index, but not updated.

S

the type of the contained data.

Linear Supertypes
IndexedSeq[S], IndexedSeqOps[S, IndexedSeq, IndexedSeq[S]], IndexedSeq[S], IndexedSeqOps[S, [_]IndexedSeq[_], IndexedSeq[S]], Seq[S], SeqOps[S, [_]IndexedSeq[_], IndexedSeq[S]], Seq[S], Equals, SeqOps[S, [_]IndexedSeq[_], IndexedSeq[S]], PartialFunction[Int, S], (Int) => S, Iterable[S], Iterable[S], IterableFactoryDefaults[S, [x]IndexedSeq[x]], IterableOps[S, [_]IndexedSeq[_], IndexedSeq[S]], IterableOnceOps[S, [_]IndexedSeq[_], IndexedSeq[S]], IterableOnce[S], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ScalarArray
  2. IndexedSeq
  3. IndexedSeqOps
  4. IndexedSeq
  5. IndexedSeqOps
  6. Seq
  7. SeqOps
  8. Seq
  9. Equals
  10. SeqOps
  11. PartialFunction
  12. Function1
  13. Iterable
  14. Iterable
  15. IterableFactoryDefaults
  16. IterableOps
  17. IterableOnceOps
  18. IterableOnce
  19. AnyRef
  20. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def apply(index: Int): S

    Returns the indexth element of the array

    Returns the indexth element of the array

    index

    the index of the value to return

    returns

    the value at index index

    Definition Classes
    ScalarArray → SeqOps → Function1
  2. abstract def length: Int

    Returns the length of the data array.

    Returns the length of the data array.

    returns

    the length of the data array

    Definition Classes
    ScalarArray → SeqOps
  3. abstract def map[T](f: (S) => T)(implicit arg0: Scalar[T], arg1: ClassTag[T]): ScalarArray[T]

    Maps this ScalarArray to another ScalarArray using the given mapping function

    Maps this ScalarArray to another ScalarArray using the given mapping function

    T

    the type of the values of the resulting ScalarArray

    f

    the mapping function to use

    returns

    a new ScalarArray whose values correspond to the values of this instance, mapped by the function f

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ++[B >: S](suffix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  4. final def ++:[B >: S](prefix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    SeqOps → IterableOps
    Annotations
    @inline()
  5. final def +:[B >: S](elem: B): IndexedSeq[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  6. final def :+[B >: S](elem: B): IndexedSeq[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  7. final def :++[B >: S](suffix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  8. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. final def addString(b: StringBuilder): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  10. final def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  11. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    IterableOnceOps
  12. def andThen[C](k: PartialFunction[S, C]): PartialFunction[Int, C]
    Definition Classes
    PartialFunction
  13. def andThen[C](k: (S) => C): PartialFunction[Int, C]
    Definition Classes
    PartialFunction → Function1
  14. def appended[B >: S](elem: B): IndexedSeq[B]
    Definition Classes
    SeqOps
  15. def appendedAll[B >: S](suffix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    SeqOps
  16. def applyOrElse[A1 <: Int, B1 >: S](x: A1, default: (A1) => B1): B1
    Definition Classes
    PartialFunction
  17. def applyPreferredMaxLength: Int
    Attributes
    protected
    Definition Classes
    IndexedSeq
  18. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  19. def canEqual(that: Any): Boolean
    Definition Classes
    IndexedSeq → Seq → Equals
  20. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  21. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  22. final def coll: ScalarArray.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  23. def collect[B](pf: PartialFunction[S, B]): IndexedSeq[B]
    Definition Classes
    IterableOps → IterableOnceOps
  24. def collectFirst[B](pf: PartialFunction[S, B]): Option[B]
    Definition Classes
    IterableOnceOps
  25. def combinations(n: Int): Iterator[IndexedSeq[S]]
    Definition Classes
    SeqOps
  26. def compose[R](k: PartialFunction[R, Int]): PartialFunction[R, S]
    Definition Classes
    PartialFunction
  27. def compose[A](g: (A) => Int): (A) => S
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  28. final def concat[B >: S](suffix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    SeqOps → IterableOps
    Annotations
    @inline()
  29. def contains[A1 >: S](elem: A1): Boolean
    Definition Classes
    SeqOps
  30. def containsSlice[B](that: Seq[B]): Boolean
    Definition Classes
    SeqOps
  31. def copyToArray[B >: S](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  32. def copyToArray[B >: S](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
  33. def copyToArray[B >: S](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
  34. def corresponds[B](that: Seq[B])(p: (S, B) => Boolean): Boolean
    Definition Classes
    SeqOps
  35. def corresponds[B](that: IterableOnce[B])(p: (S, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  36. def count(p: (S) => Boolean): Int
    Definition Classes
    IterableOnceOps
  37. def diff[B >: S](that: Seq[B]): IndexedSeq[S]
    Definition Classes
    SeqOps
  38. def distinct: IndexedSeq[S]
    Definition Classes
    SeqOps
  39. def distinctBy[B](f: (S) => B): IndexedSeq[S]
    Definition Classes
    SeqOps
  40. def drop(n: Int): IndexedSeq[S]
    Definition Classes
    IndexedSeqOps → IterableOps → IterableOnceOps
  41. def dropRight(n: Int): IndexedSeq[S]
    Definition Classes
    IndexedSeqOps → IterableOps
  42. def dropWhile(p: (S) => Boolean): IndexedSeq[S]
    Definition Classes
    IterableOps → IterableOnceOps
  43. def elementWise: ElementWiseExtractor[Int, S]
    Definition Classes
    PartialFunction
  44. def empty: IndexedSeq[S]
    Definition Classes
    IterableFactoryDefaults → IterableOps
  45. def endsWith[B >: S](that: Iterable[B]): Boolean
    Definition Classes
    SeqOps
  46. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  47. def equals(o: Any): Boolean
    Definition Classes
    Seq → Equals → AnyRef → Any
  48. def exists(p: (S) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  49. def filter(pred: (S) => Boolean): IndexedSeq[S]
    Definition Classes
    IterableOps → IterableOnceOps
  50. def filterNot(pred: (S) => Boolean): IndexedSeq[S]
    Definition Classes
    IterableOps → IterableOnceOps
  51. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  52. def find(p: (S) => Boolean): Option[S]
    Definition Classes
    IterableOnceOps
  53. def findLast(p: (S) => Boolean): Option[S]
    Definition Classes
    SeqOps
  54. def flatMap[B](f: (S) => IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    IterableOps → IterableOnceOps
  55. def flatten[B](implicit asIterable: (S) => IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    IterableOps → IterableOnceOps
  56. def fold[A1 >: S](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  57. def foldLeft[B](z: B)(op: (B, S) => B): B
    Definition Classes
    IterableOnceOps
  58. def foldRight[B](z: B)(op: (S, B) => B): B
    Definition Classes
    IterableOnceOps
  59. def forall(p: (S) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  60. def foreach[U](f: (S) => U): Unit
    Definition Classes
    IterableOnceOps
  61. def fromSpecific(coll: IterableOnce[S]): IndexedSeq[S]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  62. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  63. def groupBy[K](f: (S) => K): Map[K, IndexedSeq[S]]
    Definition Classes
    IterableOps
  64. def groupMap[K, B](key: (S) => K)(f: (S) => B): Map[K, IndexedSeq[B]]
    Definition Classes
    IterableOps
  65. def groupMapReduce[K, B](key: (S) => K)(f: (S) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  66. def grouped(size: Int): Iterator[IndexedSeq[S]]
    Definition Classes
    IterableOps
  67. def hashCode(): Int
    Definition Classes
    Seq → AnyRef → Any
  68. def head: S
    Definition Classes
    IterableOps
  69. def headOption: Option[S]
    Definition Classes
    IterableOps
  70. def indexOf[B >: S](elem: B): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override indexOf(elem, from) instead - indexOf(elem) calls indexOf(elem, 0)", "2.13.0")
  71. def indexOf[B >: S](elem: B, from: Int): Int
    Definition Classes
    SeqOps
  72. def indexOfSlice[B >: S](that: Seq[B]): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override indexOfSlice(that, from) instead - indexOfSlice(that) calls indexOfSlice(that, 0)", "2.13.0")
  73. def indexOfSlice[B >: S](that: Seq[B], from: Int): Int
    Definition Classes
    SeqOps
  74. def indexWhere(p: (S) => Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override indexWhere(p, from) instead - indexWhere(p) calls indexWhere(p, 0)", "2.13.0")
  75. def indexWhere(p: (S) => Boolean, from: Int): Int
    Definition Classes
    SeqOps
  76. def indices: Range
    Definition Classes
    SeqOps
  77. def init: IndexedSeq[S]
    Definition Classes
    IterableOps
  78. def inits: Iterator[IndexedSeq[S]]
    Definition Classes
    IterableOps
  79. def intersect[B >: S](that: Seq[B]): IndexedSeq[S]
    Definition Classes
    SeqOps
  80. final def isDefinedAt(index: Int): Boolean

    Determines if index lies within the bounds of the array

    Determines if index lies within the bounds of the array

    index

    the index in the array for which to check if it lies within the array bounds

    returns

    true if index lies within the array bounds, false otherwise.

    Definition Classes
    ScalarArray → SeqOps → PartialFunction
  81. def isEmpty: Boolean
    Definition Classes
    SeqOps → IterableOnceOps
  82. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  83. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  84. def iterableFactory: SeqFactory[IndexedSeq]
    Definition Classes
    IndexedSeq → IndexedSeq → Seq → Seq → Iterable → Iterable → IterableOps
  85. def iterator: Iterator[S]
    Definition Classes
    IndexedSeqOps → IterableOnce
  86. def knownSize: Int
    Definition Classes
    IndexedSeqOps → IterableOnce
  87. def last: S
    Definition Classes
    IndexedSeqOps → IterableOps
  88. def lastIndexOf[B >: S](elem: B, end: Int): Int
    Definition Classes
    SeqOps
  89. def lastIndexOfSlice[B >: S](that: Seq[B]): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override lastIndexOfSlice(that, end) instead - lastIndexOfSlice(that) calls lastIndexOfSlice(that, Int.MaxValue)", "2.13.0")
  90. def lastIndexOfSlice[B >: S](that: Seq[B], end: Int): Int
    Definition Classes
    SeqOps
  91. def lastIndexWhere(p: (S) => Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override lastIndexWhere(p, end) instead - lastIndexWhere(p) calls lastIndexWhere(p, Int.MaxValue)", "2.13.0")
  92. def lastIndexWhere(p: (S) => Boolean, end: Int): Int
    Definition Classes
    SeqOps
  93. def lastOption: Option[S]
    Definition Classes
    IterableOps
  94. def lazyZip[B](that: Iterable[B]): LazyZip2[S, B, ScalarArray.this.type]
    Definition Classes
    Iterable
  95. final def lengthCompare(that: Iterable[_]): Int
    Definition Classes
    IndexedSeqOps → SeqOps
  96. final def lengthCompare(len: Int): Int
    Definition Classes
    IndexedSeqOps → SeqOps
  97. final def lengthIs: SizeCompareOps
    Definition Classes
    SeqOps
    Annotations
    @inline()
  98. def lift: (Int) => Option[S]
    Definition Classes
    PartialFunction
  99. def map[B](f: (S) => B): IndexedSeq[B]
    Definition Classes
    IndexedSeqOps → IterableOps → IterableOnceOps
  100. def max[B >: S](implicit ord: Ordering[B]): S
    Definition Classes
    IterableOnceOps
  101. def maxBy[B](f: (S) => B)(implicit cmp: Ordering[B]): S
    Definition Classes
    IterableOnceOps
  102. def maxByOption[B](f: (S) => B)(implicit cmp: Ordering[B]): Option[S]
    Definition Classes
    IterableOnceOps
  103. def maxOption[B >: S](implicit ord: Ordering[B]): Option[S]
    Definition Classes
    IterableOnceOps
  104. def min[B >: S](implicit ord: Ordering[B]): S
    Definition Classes
    IterableOnceOps
  105. def minBy[B](f: (S) => B)(implicit cmp: Ordering[B]): S
    Definition Classes
    IterableOnceOps
  106. def minByOption[B](f: (S) => B)(implicit cmp: Ordering[B]): Option[S]
    Definition Classes
    IterableOnceOps
  107. def minOption[B >: S](implicit ord: Ordering[B]): Option[S]
    Definition Classes
    IterableOnceOps
  108. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  109. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  110. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  111. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  112. def newSpecificBuilder: Builder[S, IndexedSeq[S]]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  113. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  114. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  115. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  116. def occCounts[B](sq: Seq[B]): Map[B, Int]
    Attributes
    protected[collection]
    Definition Classes
    SeqOps
  117. def orElse[A1 <: Int, B1 >: S](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
    Definition Classes
    PartialFunction
  118. def padTo[B >: S](len: Int, elem: B): IndexedSeq[B]
    Definition Classes
    SeqOps
  119. def partition(p: (S) => Boolean): (IndexedSeq[S], IndexedSeq[S])
    Definition Classes
    IterableOps
  120. def partitionMap[A1, A2](f: (S) => Either[A1, A2]): (IndexedSeq[A1], IndexedSeq[A2])
    Definition Classes
    IterableOps
  121. def patch[B >: S](from: Int, other: IterableOnce[B], replaced: Int): IndexedSeq[B]
    Definition Classes
    SeqOps
  122. def permutations: Iterator[IndexedSeq[S]]
    Definition Classes
    SeqOps
  123. def prepended[B >: S](elem: B): IndexedSeq[B]
    Definition Classes
    IndexedSeqOps → SeqOps
  124. def prependedAll[B >: S](prefix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    SeqOps
  125. def product[B >: S](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  126. def reduce[B >: S](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  127. def reduceLeft[B >: S](op: (B, S) => B): B
    Definition Classes
    IterableOnceOps
  128. def reduceLeftOption[B >: S](op: (B, S) => B): Option[B]
    Definition Classes
    IterableOnceOps
  129. def reduceOption[B >: S](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  130. def reduceRight[B >: S](op: (S, B) => B): B
    Definition Classes
    IterableOnceOps
  131. def reduceRightOption[B >: S](op: (S, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  132. def reverse: IndexedSeq[S]
    Definition Classes
    IndexedSeqOps → SeqOps
  133. def reverseIterator: Iterator[S]
    Definition Classes
    IndexedSeqOps → SeqOps
  134. def reversed: Iterable[S]
    Attributes
    protected
    Definition Classes
    IndexedSeqOps → IterableOnceOps
  135. def runWith[U](action: (S) => U): (Int) => Boolean
    Definition Classes
    PartialFunction
  136. def sameElements[B >: S](o: IterableOnce[B]): Boolean
    Definition Classes
    IndexedSeq → SeqOps
  137. def scan[B >: S](z: B)(op: (B, B) => B): IndexedSeq[B]
    Definition Classes
    IterableOps
  138. def scanLeft[B](z: B)(op: (B, S) => B): IndexedSeq[B]
    Definition Classes
    IterableOps → IterableOnceOps
  139. def scanRight[B](z: B)(op: (S, B) => B): IndexedSeq[B]
    Definition Classes
    IterableOps
  140. def search[B >: S](elem: B, from: Int, to: Int)(implicit ord: Ordering[B]): SearchResult
    Definition Classes
    IndexedSeqOps → SeqOps
  141. def search[B >: S](elem: B)(implicit ord: Ordering[B]): SearchResult
    Definition Classes
    IndexedSeqOps → SeqOps
  142. def segmentLength(p: (S) => Boolean, from: Int): Int
    Definition Classes
    SeqOps
  143. final def segmentLength(p: (S) => Boolean): Int
    Definition Classes
    SeqOps
  144. final def size: Int
    Definition Classes
    SeqOps → IterableOnceOps
  145. final def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    SeqOps → IterableOps
  146. final def sizeCompare(otherSize: Int): Int
    Definition Classes
    SeqOps → IterableOps
  147. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  148. def slice(from: Int, until: Int): IndexedSeq[S]
    Definition Classes
    IndexedSeqOps → IndexedSeqOps → IterableOps → IterableOnceOps
  149. def sliding(size: Int, step: Int): Iterator[IndexedSeq[S]]
    Definition Classes
    IterableOps
  150. def sliding(size: Int): Iterator[IndexedSeq[S]]
    Definition Classes
    IterableOps
  151. def sortBy[B](f: (S) => B)(implicit ord: Ordering[B]): IndexedSeq[S]
    Definition Classes
    SeqOps
  152. def sortWith(lt: (S, S) => Boolean): IndexedSeq[S]
    Definition Classes
    SeqOps
  153. def sorted[B >: S](implicit ord: Ordering[B]): IndexedSeq[S]
    Definition Classes
    SeqOps
  154. def span(p: (S) => Boolean): (IndexedSeq[S], IndexedSeq[S])
    Definition Classes
    IterableOps → IterableOnceOps
  155. def splitAt(n: Int): (IndexedSeq[S], IndexedSeq[S])
    Definition Classes
    IterableOps → IterableOnceOps
  156. def startsWith[B >: S](that: IterableOnce[B], offset: Int): Boolean
    Definition Classes
    SeqOps
  157. def stepper[S <: Stepper[_]](implicit shape: StepperShape[S, S]): S with EfficientSplit
    Definition Classes
    IndexedSeqOps → IterableOnce
  158. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    IndexedSeq → Seq → Iterable
  159. def sum[B >: S](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  160. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  161. def tail: IndexedSeq[S]
    Definition Classes
    IterableOps
  162. def tails: Iterator[IndexedSeq[S]]
    Definition Classes
    IterableOps
  163. def take(n: Int): IndexedSeq[S]
    Definition Classes
    IndexedSeqOps → IterableOps → IterableOnceOps
  164. def takeRight(n: Int): IndexedSeq[S]
    Definition Classes
    IndexedSeqOps → IterableOps
  165. def takeWhile(p: (S) => Boolean): IndexedSeq[S]
    Definition Classes
    IterableOps → IterableOnceOps
  166. def tapEach[U](f: (S) => U): IndexedSeq[S]
    Definition Classes
    IterableOps → IterableOnceOps
  167. def to[C1](factory: Factory[S, C1]): C1
    Definition Classes
    IterableOnceOps
  168. def toArray[B >: S](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  169. final def toBuffer[B >: S]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  170. final def toIndexedSeq: IndexedSeq[S]
    Definition Classes
    IndexedSeq → IterableOnceOps
  171. final def toIterable: ScalarArray.this.type
    Definition Classes
    Iterable → IterableOps
  172. def toList: List[S]
    Definition Classes
    IterableOnceOps
  173. def toMap[K, V](implicit ev: <:<[S, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  174. final def toSeq: ScalarArray.this.type
    Definition Classes
    Seq → IterableOnceOps
  175. def toSet[B >: S]: Set[B]
    Definition Classes
    IterableOnceOps
  176. def toString(): String
    Definition Classes
    Seq → Function1 → Iterable → AnyRef → Any
  177. def toVector: Vector[S]
    Definition Classes
    IterableOnceOps
  178. def transpose[B](implicit asIterable: (S) => Iterable[B]): IndexedSeq[IndexedSeq[B]]
    Definition Classes
    IterableOps
  179. def unapply(a: Int): Option[S]
    Definition Classes
    PartialFunction
  180. def unzip[A1, A2](implicit asPair: (S) => (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])
    Definition Classes
    IterableOps
  181. def unzip3[A1, A2, A3](implicit asTriple: (S) => (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])
    Definition Classes
    IterableOps
  182. def updated[B >: S](index: Int, elem: B): IndexedSeq[B]
    Definition Classes
    SeqOps
  183. def view: IndexedSeqView[S]
    Definition Classes
    IndexedSeqOps → SeqOps → IterableOps
  184. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  185. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  186. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  187. def withFilter(p: (S) => Boolean): WithFilter[S, [_]IndexedSeq[_]]
    Definition Classes
    IterableOps
  188. def zip[B](that: IterableOnce[B]): IndexedSeq[(S, B)]
    Definition Classes
    IterableOps
  189. def zipAll[A1 >: S, B](that: Iterable[B], thisElem: A1, thatElem: B): IndexedSeq[(A1, B)]
    Definition Classes
    IterableOps
  190. def zipWithIndex: IndexedSeq[(S, Int)]
    Definition Classes
    IterableOps → IterableOnceOps

Deprecated Value Members

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

    (Since version 2.13.0) Use foldLeft instead of /:

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

    (Since version 2.13.0) Use foldRight instead of :\

  3. def aggregate[B](z: => B)(seqop: (B, S) => 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.

  4. def companion: IterableFactory[[_]IndexedSeq[_]]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding("Use iterableFactory instead", "2.13.0") @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

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

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

  6. 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)

  7. final def prefixLength(p: (S) => Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use segmentLength instead of prefixLength

  8. final def repr: IndexedSeq[S]
    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

  9. def reverseMap[B](f: (S) => B): IndexedSeq[B]
    Definition Classes
    SeqOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .reverseIterator.map(f).to(...) instead of .reverseMap(f)

  10. def seq: ScalarArray.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[S]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

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

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

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

    (Since version 2.13.0) Use toIterable instead

  14. final def union[B >: S](that: Seq[B]): IndexedSeq[B]
    Definition Classes
    SeqOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use concat instead

  15. def view(from: Int, until: Int): IndexedSeqView[S]
    Definition Classes
    IndexedSeqOps → IterableOps
    Annotations
    @deprecated
    Deprecated

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

Inherited from IndexedSeq[S]

Inherited from IndexedSeqOps[S, IndexedSeq, IndexedSeq[S]]

Inherited from IndexedSeq[S]

Inherited from IndexedSeqOps[S, [_]IndexedSeq[_], IndexedSeq[S]]

Inherited from Seq[S]

Inherited from SeqOps[S, [_]IndexedSeq[_], IndexedSeq[S]]

Inherited from Seq[S]

Inherited from Equals

Inherited from SeqOps[S, [_]IndexedSeq[_], IndexedSeq[S]]

Inherited from PartialFunction[Int, S]

Inherited from (Int) => S

Inherited from Iterable[S]

Inherited from Iterable[S]

Inherited from IterableFactoryDefaults[S, [x]IndexedSeq[x]]

Inherited from IterableOps[S, [_]IndexedSeq[_], IndexedSeq[S]]

Inherited from IterableOnceOps[S, [_]IndexedSeq[_], IndexedSeq[S]]

Inherited from IterableOnce[S]

Inherited from AnyRef

Inherited from Any

Ungrouped