Packages

c

zio.Chunk

ShortArray

final case class ShortArray(array: Array[Short], offset: Int, length: Int) extends Arr[Short] with ChunkIterator[Short] with Product with Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ShortArray
  2. Product
  3. ChunkIterator
  4. Arr
  5. Chunk
  6. Serializable
  7. ChunkLike
  8. StrictOptimizedSeqOps
  9. StrictOptimizedSeqOps
  10. StrictOptimizedIterableOps
  11. IndexedSeq
  12. IndexedSeqOps
  13. IndexedSeq
  14. IndexedSeqOps
  15. Seq
  16. SeqOps
  17. Seq
  18. Equals
  19. SeqOps
  20. PartialFunction
  21. Function1
  22. Iterable
  23. Iterable
  24. IterableFactoryDefaults
  25. IterableOps
  26. IterableOnceOps
  27. IterableOnce
  28. AnyRef
  29. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ShortArray(array: Array[Short], offset: Int, length: Int)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def &(that: Chunk[Boolean])(implicit ev: <:<[Short, Boolean]): BitChunkByte

    Returns the bitwise AND of this chunk and the specified chunk.

    Returns the bitwise AND of this chunk and the specified chunk.

    Definition Classes
    Chunk
  4. final def ++[A1 >: Short](that: ChunkIterator[A1]): ChunkIterator[A1]

    Concatenates this chunk iterator with the specified chunk iterator.

    Concatenates this chunk iterator with the specified chunk iterator.

    Definition Classes
    ChunkIterator
  5. final def ++[A1 >: Short](that: NonEmptyChunk[A1]): NonEmptyChunk[A1]

    Returns the concatenation of this chunk with the specified chunk.

    Returns the concatenation of this chunk with the specified chunk.

    Definition Classes
    Chunk
  6. final def ++[A1 >: Short](that: Chunk[A1]): Chunk[A1]

    Returns the concatenation of this chunk with the specified chunk.

    Returns the concatenation of this chunk with the specified chunk.

    Definition Classes
    Chunk
  7. final def ++[B >: Short](suffix: IterableOnce[B]): Chunk[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  8. final def ++:[B >: Short](prefix: IterableOnce[B]): Chunk[B]
    Definition Classes
    SeqOps → IterableOps
    Annotations
    @inline()
  9. final def +:[B >: Short](elem: B): Chunk[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  10. final def :+[B >: Short](elem: B): Chunk[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  11. final def :++[B >: Short](suffix: IterableOnce[B]): Chunk[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  12. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  13. def ^(that: Chunk[Boolean])(implicit ev: <:<[Short, Boolean]): BitChunkByte

    Returns the bitwise XOR of this chunk and the specified chunk.

    Returns the bitwise XOR of this chunk and the specified chunk.

    Definition Classes
    Chunk
  14. final def addString(b: StringBuilder): b.type
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  15. final def addString(b: StringBuilder, sep: String): b.type
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  16. def addString(b: StringBuilder, start: String, sep: String, end: String): b.type
    Definition Classes
    IterableOnceOps
  17. def andThen[C](k: PartialFunction[Short, C]): PartialFunction[Int, C]
    Definition Classes
    PartialFunction
  18. def andThen[C](k: (Short) => C): PartialFunction[Int, C]
    Definition Classes
    PartialFunction → Function1
  19. def append[A1 >: Short](a1: A1): Chunk[A1]

    Appends an element to the chunk.

    Appends an element to the chunk.

    Attributes
    protected
    Definition Classes
    Chunk
  20. final def appended[A1 >: Short](a1: A1): Chunk[A1]
    Definition Classes
    ChunkLike → StrictOptimizedSeqOps → SeqOps
  21. def appendedAll[B >: Short](suffix: IterableOnce[B]): Chunk[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  22. def apply(index: Int): Short
    Definition Classes
    ShortArray → SeqOps → Function1
  23. def applyOrElse[A1 <: Int, B1 >: Short](x: A1, default: (A1) => B1): B1
    Definition Classes
    PartialFunction
  24. def applyPreferredMaxLength: Int
    Attributes
    protected
    Definition Classes
    IndexedSeq
  25. val array: Array[Short]
    Definition Classes
    ShortArray → Arr
  26. def asBase64String(implicit ev: IsText[Short]): String

    Crates a base64 encoded string based on the chunk's data.

    Crates a base64 encoded string based on the chunk's data.

    Definition Classes
    Chunk
  27. final def asBitsByte(implicit ev: <:<[Short, Byte]): Chunk[Boolean]

    Converts a chunk of bytes to a chunk of bits.

    Converts a chunk of bytes to a chunk of bits.

    Definition Classes
    Chunk
  28. final def asBitsInt(endianness: Endianness)(implicit ev: <:<[Short, Int]): Chunk[Boolean]

    Converts a chunk of ints to a chunk of bits.

    Converts a chunk of ints to a chunk of bits.

    Definition Classes
    Chunk
  29. final def asBitsLong(endianness: Endianness)(implicit ev: <:<[Short, Long]): Chunk[Boolean]

    Converts a chunk of longs to a chunk of bits.

    Converts a chunk of longs to a chunk of bits.

    Definition Classes
    Chunk
  30. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  31. final def asString(charset: Charset)(implicit ev: <:<[Short, Byte]): String

    Crates a new String based on this chunk of bytes and using the given charset.

    Crates a new String based on this chunk of bytes and using the given charset.

    Definition Classes
    Chunk
  32. final def asString(implicit ev: IsText[Short]): String

    Crates a new String based on this chunks data.

    Crates a new String based on this chunks data.

    Definition Classes
    Chunk
  33. def boolean(index: Int)(implicit ev: <:<[Short, Boolean]): Boolean

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  34. def byte(index: Int)(implicit ev: <:<[Short, Byte]): Byte

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  35. def canEqual(that: Any): Boolean
    Definition Classes
    IndexedSeq → Seq → Equals
  36. def char(index: Int)(implicit ev: <:<[Short, Char]): Char

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  37. def chunkIterator: ChunkIterator[Short]
    Definition Classes
    ShortArrayChunk
  38. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  39. implicit val classTag: ClassTag[Short]
    Definition Classes
    Arr
  40. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  41. final def coll: ShortArray.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  42. def collect[B](pf: PartialFunction[Short, B]): Chunk[B]

    Returns a filtered, mapped subset of the elements of this Chunk.

    Returns a filtered, mapped subset of the elements of this Chunk.

    Definition Classes
    ChunkLike → StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  43. def collectChunk[B](pf: PartialFunction[Short, B]): Chunk[B]

    Returns a filtered, mapped subset of the elements of this chunk.

    Returns a filtered, mapped subset of the elements of this chunk.

    Attributes
    protected
    Definition Classes
    Arr → Chunk
  44. def collectFirst[B](pf: PartialFunction[Short, B]): Option[B]
    Definition Classes
    IterableOnceOps
  45. def collectWhile[B](pf: PartialFunction[Short, B]): Chunk[B]

    Transforms all elements of the chunk for as long as the specified partial function is defined.

    Transforms all elements of the chunk for as long as the specified partial function is defined.

    Definition Classes
    Arr → Chunk
  46. def collectWhileZIO[R, E, B](pf: PartialFunction[Short, ZIO[R, E, B]])(implicit trace: Trace): ZIO[R, E, Chunk[B]]
    Definition Classes
    Arr → Chunk
  47. def collectZIO[R, E, B](pf: PartialFunction[Short, ZIO[R, E, B]])(implicit trace: Trace): ZIO[R, E, Chunk[B]]

    Returns a filtered, mapped subset of the elements of this chunk based on a .

    Returns a filtered, mapped subset of the elements of this chunk based on a .

    Definition Classes
    Arr → Chunk
  48. def combinations(n: Int): Iterator[Chunk[Short]]
    Definition Classes
    SeqOps
  49. def compose[R](k: PartialFunction[R, Int]): PartialFunction[R, Short]
    Definition Classes
    PartialFunction
  50. def compose[A](g: (A) => Int): (A) => Short
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  51. final def concat[B >: Short](suffix: IterableOnce[B]): Chunk[B]
    Definition Classes
    SeqOps → IterableOps
    Annotations
    @inline()
  52. def concatDepth: Int
    Attributes
    protected
    Definition Classes
    Chunk
  53. def contains[A1 >: Short](elem: A1): Boolean
    Definition Classes
    SeqOps
  54. def containsSlice[B >: Short](that: Seq[B]): Boolean
    Definition Classes
    SeqOps
  55. def copyToArray[B >: Short](dest: Array[B], destPos: Int, length: Int): Int
    Definition Classes
    ChunkLike → IterableOnceOps
  56. def copyToArray[B >: Short](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  57. def copyToArray[B >: Short](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  58. final def corresponds[B](that: Chunk[B])(f: (Short, B) => Boolean): Boolean

    Determines whether this chunk and the specified chunk have the same length and every pair of corresponding elements of this chunk and the specified chunk satisfy the specified predicate.

    Determines whether this chunk and the specified chunk have the same length and every pair of corresponding elements of this chunk and the specified chunk satisfy the specified predicate.

    Definition Classes
    Chunk
  59. def corresponds[B](that: Seq[B])(p: (Short, B) => Boolean): Boolean
    Definition Classes
    SeqOps
  60. def corresponds[B](that: IterableOnce[B])(p: (Short, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  61. def count(p: (Short) => Boolean): Int
    Definition Classes
    IterableOnceOps
  62. def dedupe: Chunk[Short]

    Deduplicates adjacent elements that are identical.

    Deduplicates adjacent elements that are identical.

    Definition Classes
    Chunk
  63. def depth: Int
    Attributes
    protected
    Definition Classes
    Chunk
  64. def diff[B >: Short](that: Seq[B]): Chunk[Short]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  65. def distinct: Chunk[Short]
    Definition Classes
    SeqOps
  66. def distinctBy[B](f: (Short) => B): Chunk[Short]
    Definition Classes
    StrictOptimizedSeqOps → StrictOptimizedSeqOps → SeqOps
  67. def double(index: Int)(implicit ev: <:<[Short, Double]): Double

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  68. def drop(n: Int): Chunk[Short]

    Drops the first n elements of the chunk.

    Drops the first n elements of the chunk.

    Definition Classes
    Chunk → IndexedSeqOps → IterableOps → IterableOnceOps
  69. def dropRight(n: Int): Chunk[Short]

    Drops the last n elements of the chunk.

    Drops the last n elements of the chunk.

    Definition Classes
    Chunk → StrictOptimizedIterableOps → IndexedSeqOps → IterableOps
  70. def dropUntil(f: (Short) => Boolean): Chunk[Short]

    Drops all elements until the predicate returns true.

    Drops all elements until the predicate returns true.

    Definition Classes
    Chunk
  71. def dropUntilZIO[R, E](p: (Short) => ZIO[R, E, Boolean])(implicit trace: Trace): ZIO[R, E, Chunk[Short]]

    Drops all elements until the effectful predicate returns true.

    Drops all elements until the effectful predicate returns true.

    Definition Classes
    Chunk
  72. def dropWhile(f: (Short) => Boolean): Chunk[Short]

    Drops all elements so long as the predicate returns true.

    Drops all elements so long as the predicate returns true.

    Definition Classes
    Arr → Chunk → IterableOps → IterableOnceOps
  73. def dropWhileZIO[R, E](p: (Short) => ZIO[R, E, Boolean])(implicit trace: Trace): ZIO[R, E, Chunk[Short]]

    Drops all elements so long as the effectful predicate returns true.

    Drops all elements so long as the effectful predicate returns true.

    Definition Classes
    Chunk
  74. def elementWise: ElementWiseExtractor[Int, Short]
    Definition Classes
    PartialFunction
  75. def empty: Chunk[Short]
    Definition Classes
    IterableFactoryDefaults → IterableOps
  76. def endsWith[B >: Short](that: Iterable[B]): Boolean
    Definition Classes
    SeqOps
  77. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  78. def equals(that: Any): Boolean
    Definition Classes
    Chunk → Seq → Equals → AnyRef → Any
  79. final def exists(f: (Short) => Boolean): Boolean

    Determines whether a predicate is satisfied for at least one element of this chunk.

    Determines whether a predicate is satisfied for at least one element of this chunk.

    Definition Classes
    Chunk → IterableOnceOps
  80. def filter(f: (Short) => Boolean): Chunk[Short]

    Returns a filtered subset of this chunk.

    Returns a filtered subset of this chunk.

    Definition Classes
    ShortArray → Arr → Chunk → StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  81. def filterImpl(pred: (Short) => Boolean, isFlipped: Boolean): Chunk[Short]
    Attributes
    protected[collection]
    Definition Classes
    StrictOptimizedIterableOps
  82. def filterNot(pred: (Short) => Boolean): Chunk[Short]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  83. final def filterZIO[R, E](f: (Short) => ZIO[R, E, Boolean])(implicit trace: Trace): ZIO[R, E, Chunk[Short]]

    Filters this chunk by the specified effectful predicate, retaining all elements for which the predicate evaluates to true.

    Filters this chunk by the specified effectful predicate, retaining all elements for which the predicate evaluates to true.

    Definition Classes
    Chunk
  84. final def find(f: (Short) => Boolean): Option[Short]

    Returns the first element that satisfies the predicate.

    Returns the first element that satisfies the predicate.

    Definition Classes
    Chunk → IterableOnceOps
  85. def findLast(p: (Short) => Boolean): Option[Short]
    Definition Classes
    SeqOps
  86. final def findZIO[R, E](f: (Short) => ZIO[R, E, Boolean])(implicit trace: Trace): ZIO[R, E, Option[Short]]

    Returns the first element that satisfies the effectful predicate.

    Returns the first element that satisfies the effectful predicate.

    Definition Classes
    Chunk
  87. final def flatMap[B](f: (Short) => IterableOnce[B]): Chunk[B]

    Returns the concatenation of mapping every element into a new chunk using the specified function.

    Returns the concatenation of mapping every element into a new chunk using the specified function.

    Definition Classes
    ChunkLike → StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  88. def flatten[B](implicit ev: (Short) => IterableOnce[B]): Chunk[B]

    Flattens a chunk of chunks into a single chunk by concatenating all chunks.

    Flattens a chunk of chunks into a single chunk by concatenating all chunks.

    Definition Classes
    ChunkLike → StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  89. def float(index: Int)(implicit ev: <:<[Short, Float]): Float

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  90. def fold[A1 >: Short](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  91. def foldLeft[S](s0: S)(f: (S, Short) => S): S

    Folds over the elements in this chunk from the left.

    Folds over the elements in this chunk from the left.

    Definition Classes
    Arr → Chunk → IterableOnceOps
  92. def foldRight[S](s0: S)(f: (Short, S) => S): S

    Folds over the elements in this chunk from the right.

    Folds over the elements in this chunk from the right.

    Definition Classes
    Arr → Chunk → IndexedSeqOps → IterableOnceOps
  93. final def foldWhile[S](s0: S)(pred: (S) => Boolean)(f: (S, Short) => S): S

    Folds over the elements in this chunk from the left.

    Folds over the elements in this chunk from the left. Stops the fold early when the condition is not fulfilled.

    Definition Classes
    Chunk
  94. final def foldWhileZIO[R, E, S](z: S)(pred: (S) => Boolean)(f: (S, Short) => ZIO[R, E, S])(implicit trace: Trace): ZIO[R, E, S]
    Definition Classes
    Chunk
  95. final def foldZIO[R, E, S](s: S)(f: (S, Short) => ZIO[R, E, S])(implicit trace: Trace): ZIO[R, E, S]

    Effectfully folds over the elements in this chunk from the left.

    Effectfully folds over the elements in this chunk from the left.

    Definition Classes
    Chunk
  96. final def forall(f: (Short) => Boolean): Boolean

    Determines whether a predicate is satisfied for all elements of this chunk.

    Determines whether a predicate is satisfied for all elements of this chunk.

    Definition Classes
    Chunk → IterableOnceOps
  97. def foreach[B](f: (Short) => B): Unit
    Definition Classes
    Arr → IterableOnceOps
  98. def fromSpecific(coll: IterableOnce[Short]): Chunk[Short]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  99. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  100. def groupBy[K](f: (Short) => K): Map[K, Chunk[Short]]
    Definition Classes
    IterableOps
  101. def groupMap[K, B](key: (Short) => K)(f: (Short) => B): Map[K, Chunk[B]]
    Definition Classes
    IterableOps
  102. def groupMapReduce[K, B](key: (Short) => K)(f: (Short) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  103. def grouped(size: Int): Iterator[Chunk[Short]]
    Definition Classes
    IterableOps
  104. def hasNextAt(index: Int): Boolean

    Checks if the chunk iterator has another element.

    Checks if the chunk iterator has another element.

    Definition Classes
    ShortArrayChunkIterator
  105. final def hashCode(): Int
    Definition Classes
    Chunk → Seq → AnyRef → Any
  106. def head: Short

    Returns the first element of this chunk.

    Returns the first element of this chunk. Note that this method is partial in that it will throw an exception if the chunk is empty. Consider using headOption to explicitly handle the possibility that the chunk is empty or iterating over the elements of the chunk in lower level, performance sensitive code unless you really only need the first element of the chunk.

    Definition Classes
    Chunk → IndexedSeqOps → IterableOps
  107. final def headOption: Option[Short]

    Returns the first element of this chunk if it exists.

    Returns the first element of this chunk if it exists.

    Definition Classes
    Chunk → IndexedSeqOps → IterableOps
  108. def indexOf[B >: Short](elem: B): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding()
  109. def indexOf[B >: Short](elem: B, from: Int): Int
    Definition Classes
    SeqOps
  110. def indexOfSlice[B >: Short](that: Seq[B]): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding()
  111. def indexOfSlice[B >: Short](that: Seq[B], from: Int): Int
    Definition Classes
    SeqOps
  112. final def indexWhere(f: (Short) => Boolean, from: Int): Int

    Returns the first index for which the given predicate is satisfied after or at some given index.

    Returns the first index for which the given predicate is satisfied after or at some given index.

    Definition Classes
    Chunk → SeqOps
  113. def indexWhere(p: (Short) => Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding()
  114. def indices: Range
    Definition Classes
    SeqOps
  115. def init: Chunk[Short]
    Definition Classes
    IterableOps
  116. def inits: Iterator[Chunk[Short]]
    Definition Classes
    IterableOps
  117. def int(index: Int)(implicit ev: <:<[Short, Int]): Int

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  118. def intersect[B >: Short](that: Seq[B]): Chunk[Short]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  119. def isDefinedAt(idx: Int): Boolean
    Definition Classes
    SeqOps
  120. final def isEmpty: Boolean

    Determines if the chunk is empty.

    Determines if the chunk is empty.

    Definition Classes
    Chunk → SeqOps → IterableOnceOps
  121. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  122. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  123. val iterableFactory: SeqFactory[Chunk]

    Returns a SeqFactory that can construct Chunk values.

    Returns a SeqFactory that can construct Chunk values. The SeqFactory exposes a newBuilder method that is not referentially transparent because it allocates mutable state.

    Definition Classes
    ChunkLike → IndexedSeq → IndexedSeq → Seq → Seq → Iterable → Iterable → IterableOps
  124. def iterator: Iterator[Short]
    Definition Classes
    Arr → IndexedSeqOps → IterableOnce
  125. def knownSize: Int
    Definition Classes
    IndexedSeqOps → IterableOnce
  126. def last: Short
    Definition Classes
    IndexedSeqOps → IterableOps
  127. def lastIndexOf[B >: Short](elem: B, end: Int): Int
    Definition Classes
    SeqOps
  128. def lastIndexOfSlice[B >: Short](that: Seq[B]): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding()
  129. def lastIndexOfSlice[B >: Short](that: Seq[B], end: Int): Int
    Definition Classes
    SeqOps
  130. def lastIndexWhere(p: (Short) => Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding()
  131. def lastIndexWhere(p: (Short) => Boolean, end: Int): Int
    Definition Classes
    SeqOps
  132. final def lastOption: Option[Short]

    Returns the last element of this chunk if it exists.

    Returns the last element of this chunk if it exists.

    Definition Classes
    Chunk → IterableOps
  133. def lazyZip[B](that: Iterable[B]): LazyZip2[Short, B, ShortArray.this.type]
    Definition Classes
    Iterable
  134. def left: Chunk[Short]
    Attributes
    protected
    Definition Classes
    Chunk
  135. val length: Int

    The length of the iterator.

    The length of the iterator.

    Definition Classes
    ShortArrayChunkIterator → SeqOps
  136. final def lengthCompare(that: Iterable[_]): Int
    Definition Classes
    IndexedSeqOps → SeqOps
  137. final def lengthCompare(len: Int): Int
    Definition Classes
    IndexedSeqOps → SeqOps
  138. final def lengthIs: SizeCompareOps
    Definition Classes
    SeqOps
    Annotations
    @inline()
  139. def lift: (Int) => Option[Short]
    Definition Classes
    PartialFunction
  140. def long(index: Int)(implicit ev: <:<[Short, Long]): Long

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  141. final def map[B](f: (Short) => B): Chunk[B]

    Returns a chunk with the elements mapped by the specified function.

    Returns a chunk with the elements mapped by the specified function.

    Definition Classes
    ChunkLike → StrictOptimizedIterableOps → IndexedSeqOps → IterableOps → IterableOnceOps
  142. final def mapAccum[S1, B](s1: S1)(f1: (S1, Short) => (S1, B)): (S1, Chunk[B])

    Statefully maps over the chunk, producing new elements of type B.

    Statefully maps over the chunk, producing new elements of type B.

    Definition Classes
    Chunk
  143. final def mapAccumZIO[R, E, S1, B](s1: S1)(f1: (S1, Short) => ZIO[R, E, (S1, B)])(implicit trace: Trace): ZIO[R, E, (S1, Chunk[B])]

    Statefully and effectfully maps over the elements of this chunk to produce new elements.

    Statefully and effectfully maps over the elements of this chunk to produce new elements.

    Definition Classes
    Chunk
  144. def mapChunk[B](f: (Short) => B): Chunk[B]

    Returns a chunk with the elements mapped by the specified function.

    Returns a chunk with the elements mapped by the specified function.

    Attributes
    protected
    Definition Classes
    ShortArray → Arr → Chunk
  145. final def mapZIO[R, E, B](f: (Short) => ZIO[R, E, B])(implicit trace: Trace): ZIO[R, E, Chunk[B]]

    Effectfully maps the elements of this chunk.

    Effectfully maps the elements of this chunk.

    Definition Classes
    Chunk
  146. final def mapZIODiscard[R, E](f: (Short) => ZIO[R, E, Any])(implicit trace: Trace): ZIO[R, E, Unit]

    Effectfully maps the elements of this chunk purely for the effects.

    Effectfully maps the elements of this chunk purely for the effects.

    Definition Classes
    Chunk
  147. final def mapZIOPar[R, E, B](f: (Short) => ZIO[R, E, B])(implicit trace: Trace): ZIO[R, E, Chunk[B]]

    Effectfully maps the elements of this chunk in parallel.

    Effectfully maps the elements of this chunk in parallel.

    Definition Classes
    Chunk
  148. final def mapZIOParDiscard[R, E](f: (Short) => ZIO[R, E, Any])(implicit trace: Trace): ZIO[R, E, Unit]

    Effectfully maps the elements of this chunk in parallel purely for the effects.

    Effectfully maps the elements of this chunk in parallel purely for the effects.

    Definition Classes
    Chunk
  149. def materialize[A1 >: Short]: Chunk[A1]

    Materializes a chunk into a chunk backed by an array.

    Materializes a chunk into a chunk backed by an array. This method can improve the performance of bulk operations.

    Definition Classes
    Arr → Chunk
  150. def max[B >: Short](implicit ord: Ordering[B]): Short
    Definition Classes
    IterableOnceOps
  151. def maxBy[B](f: (Short) => B)(implicit ord: Ordering[B]): Short
    Definition Classes
    IterableOnceOps
  152. def maxByOption[B](f: (Short) => B)(implicit ord: Ordering[B]): Option[Short]
    Definition Classes
    IterableOnceOps
  153. def maxOption[B >: Short](implicit ord: Ordering[B]): Option[Short]
    Definition Classes
    IterableOnceOps
  154. def min[B >: Short](implicit ord: Ordering[B]): Short
    Definition Classes
    IterableOnceOps
  155. def minBy[B](f: (Short) => B)(implicit ord: Ordering[B]): Short
    Definition Classes
    IterableOnceOps
  156. def minByOption[B](f: (Short) => B)(implicit ord: Ordering[B]): Option[Short]
    Definition Classes
    IterableOnceOps
  157. def minOption[B >: Short](implicit ord: Ordering[B]): Option[Short]
    Definition Classes
    IterableOnceOps
  158. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  159. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  160. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  161. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  162. def negate(implicit ev: <:<[Short, Boolean]): BitChunkByte

    Returns the bitwise NOT of this chunk.

    Returns the bitwise NOT of this chunk.

    Definition Classes
    Chunk
  163. def newSpecificBuilder: Builder[Short, Chunk[Short]]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  164. def nextAt(index: Int): Short

    Gets the next element from the chunk iterator.

    Gets the next element from the chunk iterator.

    Definition Classes
    ShortArrayChunkIterator
  165. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  166. def nonEmptyOrElse[B](ifEmpty: => B)(fn: (NonEmptyChunk[Short]) => B): B

    Runs fn if a chunk is not empty or returns default value

    Runs fn if a chunk is not empty or returns default value

    Definition Classes
    Chunk
  167. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  168. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  169. def occCounts[B](sq: Seq[B]): Map[B, Int]
    Attributes
    protected[collection]
    Definition Classes
    SeqOps
  170. val offset: Int
  171. def orElse[A1 <: Int, B1 >: Short](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
    Definition Classes
    PartialFunction
  172. def padTo[B >: Short](len: Int, elem: B): Chunk[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  173. def partition(p: (Short) => Boolean): (Chunk[Short], Chunk[Short])
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  174. final def partitionMap[B, C](f: (Short) => Either[B, C]): (Chunk[B], Chunk[C])

    Partitions the elements of this chunk into two chunks using the specified function.

    Partitions the elements of this chunk into two chunks using the specified function.

    Definition Classes
    Chunk → StrictOptimizedIterableOps → IterableOps
  175. def patch[B >: Short](from: Int, other: IterableOnce[B], replaced: Int): Chunk[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  176. def permutations: Iterator[Chunk[Short]]
    Definition Classes
    SeqOps
  177. def prepend[A1 >: Short](a1: A1): Chunk[A1]

    Prepends an element to the chunk.

    Prepends an element to the chunk.

    Attributes
    protected
    Definition Classes
    Chunk
  178. final def prepended[A1 >: Short](a1: A1): Chunk[A1]
    Definition Classes
    ChunkLike → StrictOptimizedSeqOps → IndexedSeqOps → SeqOps
  179. def prependedAll[B >: Short](prefix: IterableOnce[B]): Chunk[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  180. def product[B >: Short](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  181. def productElementNames: Iterator[String]
    Definition Classes
    Product
  182. def reduce[B >: Short](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  183. def reduceLeft[B >: Short](op: (B, Short) => B): B
    Definition Classes
    IterableOnceOps
  184. def reduceLeftOption[B >: Short](op: (B, Short) => B): Option[B]
    Definition Classes
    IterableOnceOps
  185. def reduceOption[B >: Short](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  186. def reduceRight[B >: Short](op: (Short, B) => B): B
    Definition Classes
    IterableOnceOps
  187. def reduceRightOption[B >: Short](op: (Short, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  188. def reverse: Chunk[Short]
    Definition Classes
    IndexedSeqOps → SeqOps
  189. def reverseIterator: Iterator[Short]
    Definition Classes
    IndexedSeqOps → SeqOps
  190. def reversed: Iterable[Short]
    Attributes
    protected
    Definition Classes
    IndexedSeqOps → IterableOnceOps
  191. def right: Chunk[Short]
    Attributes
    protected
    Definition Classes
    Chunk
  192. def runWith[U](action: (Short) => U): (Int) => Boolean
    Definition Classes
    PartialFunction
  193. def sameElements[B >: Short](o: IterableOnce[B]): Boolean
    Definition Classes
    IndexedSeq → SeqOps
  194. def scan[B >: Short](z: B)(op: (B, B) => B): Chunk[B]
    Definition Classes
    IterableOps
  195. def scanLeft[B](z: B)(op: (B, Short) => B): Chunk[B]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  196. def scanRight[B](z: B)(op: (Short, B) => B): Chunk[B]
    Definition Classes
    IterableOps
  197. def search[B >: Short](elem: B, from: Int, to: Int)(implicit ord: Ordering[B]): SearchResult
    Definition Classes
    IndexedSeqOps → SeqOps
  198. def search[B >: Short](elem: B)(implicit ord: Ordering[B]): SearchResult
    Definition Classes
    IndexedSeqOps → SeqOps
  199. def segmentLength(p: (Short) => Boolean, from: Int): Int
    Definition Classes
    SeqOps
  200. final def segmentLength(p: (Short) => Boolean): Int
    Definition Classes
    SeqOps
  201. def short(index: Int)(implicit ev: <:<[Short, Short]): Short

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    ShortArrayChunk
  202. final def size: Int
    Definition Classes
    SeqOps → IterableOnceOps
  203. final def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    SeqOps → IterableOps
  204. final def sizeCompare(otherSize: Int): Int
    Definition Classes
    SeqOps → IterableOps
  205. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  206. def slice(from: Int, until: Int): Chunk[Short]
    Definition Classes
    Chunk → IndexedSeqOps → IndexedSeqOps → IterableOps → IterableOnceOps
  207. def sliceIterator(offset: Int, length: Int): ChunkIterator[Short]

    Returns a new iterator that is a slice of this iterator.

    Returns a new iterator that is a slice of this iterator.

    Definition Classes
    ShortArrayChunkIterator
  208. def sliding(size: Int, step: Int): Iterator[Chunk[Short]]
    Definition Classes
    IterableOps
  209. def sliding(size: Int): Iterator[Chunk[Short]]
    Definition Classes
    IterableOps
  210. def sortBy[B](f: (Short) => B)(implicit ord: Ordering[B]): Chunk[Short]
    Definition Classes
    SeqOps
  211. def sortWith(lt: (Short, Short) => Boolean): Chunk[Short]
    Definition Classes
    SeqOps
  212. def sorted[A1 >: Short](implicit ord: Ordering[A1]): Chunk[Short]
    Definition Classes
    ChunkLike → StrictOptimizedSeqOps → SeqOps
  213. def span(f: (Short) => Boolean): (Chunk[Short], Chunk[Short])
    Definition Classes
    Chunk → StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  214. final def split(n: Int): Chunk[Chunk[Short]]

    Splits this chunk into n equally sized chunks.

    Splits this chunk into n equally sized chunks.

    Definition Classes
    Chunk
  215. final def splitAt(n: Int): (Chunk[Short], Chunk[Short])

    Returns two splits of this chunk at the specified index.

    Returns two splits of this chunk at the specified index.

    Definition Classes
    Chunk → IterableOps → IterableOnceOps
  216. final def splitWhere(f: (Short) => Boolean): (Chunk[Short], Chunk[Short])

    Splits this chunk on the first element that matches this predicate.

    Splits this chunk on the first element that matches this predicate.

    Definition Classes
    Chunk
  217. def startsWith[B >: Short](that: IterableOnce[B], offset: Int): Boolean
    Definition Classes
    SeqOps
  218. def stepper[S <: Stepper[_]](implicit shape: StepperShape[Short, S]): S with EfficientSplit
    Definition Classes
    IndexedSeqOps → IterableOnce
  219. final def strictOptimizedCollect[B, C2](b: Builder[B, C2], pf: PartialFunction[Short, B]): C2
    Attributes
    protected[this]
    Definition Classes
    StrictOptimizedIterableOps
    Annotations
    @inline()
  220. final def strictOptimizedConcat[B >: Short, C2](that: IterableOnce[B], b: Builder[B, C2]): C2
    Attributes
    protected[this]
    Definition Classes
    StrictOptimizedIterableOps
    Annotations
    @inline()
  221. final def strictOptimizedFlatMap[B, C2](b: Builder[B, C2], f: (Short) => IterableOnce[B]): C2
    Attributes
    protected[this]
    Definition Classes
    StrictOptimizedIterableOps
    Annotations
    @inline()
  222. final def strictOptimizedFlatten[B, C2](b: Builder[B, C2])(implicit toIterableOnce: (Short) => IterableOnce[B]): C2
    Attributes
    protected[this]
    Definition Classes
    StrictOptimizedIterableOps
    Annotations
    @inline()
  223. final def strictOptimizedMap[B, C2](b: Builder[B, C2], f: (Short) => B): C2
    Attributes
    protected[this]
    Definition Classes
    StrictOptimizedIterableOps
    Annotations
    @inline()
  224. final def strictOptimizedZip[B, C2](that: IterableOnce[B], b: Builder[(Short, B), C2]): C2
    Attributes
    protected[this]
    Definition Classes
    StrictOptimizedIterableOps
    Annotations
    @inline()
  225. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    IndexedSeq → Seq → Iterable
  226. def sum[B >: Short](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  227. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  228. def tail: Chunk[Short]
    Definition Classes
    IterableOps
  229. def tails: Iterator[Chunk[Short]]
    Definition Classes
    IterableOps
  230. def take(n: Int): Chunk[Short]

    Takes the first n elements of the chunk.

    Takes the first n elements of the chunk.

    Definition Classes
    Chunk → IndexedSeqOps → IterableOps → IterableOnceOps
  231. def takeRight(n: Int): Chunk[Short]

    Takes the last n elements of the chunk.

    Takes the last n elements of the chunk.

    Definition Classes
    Chunk → StrictOptimizedIterableOps → IndexedSeqOps → IterableOps
  232. def takeWhile(f: (Short) => Boolean): Chunk[Short]

    Takes all elements so long as the predicate returns true.

    Takes all elements so long as the predicate returns true.

    Definition Classes
    ShortArray → Arr → Chunk → IterableOps → IterableOnceOps
  233. def takeWhileZIO[R, E](p: (Short) => ZIO[R, E, Boolean])(implicit trace: Trace): ZIO[R, E, Chunk[Short]]

    Takes all elements so long as the effectual predicate returns true.

    Takes all elements so long as the effectual predicate returns true.

    Definition Classes
    Chunk
  234. def tapEach[U](f: (Short) => U): Chunk[Short]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  235. def to[C1](factory: Factory[Short, C1]): C1
    Definition Classes
    IterableOnceOps
  236. def toArray[A1 >: Short](srcPos: Int, dest: Array[A1], destPos: Int, length: Int): Unit
    Attributes
    protected[zio]
    Definition Classes
    Arr → Chunk
  237. final def toArray[A1 >: Short](n: Int, dest: Array[A1]): Unit
    Attributes
    protected[zio]
    Definition Classes
    Chunk
  238. def toArray[A1 >: Short](implicit arg0: ClassTag[A1]): Array[A1]

    Converts the chunk into an array.

    Converts the chunk into an array.

    Definition Classes
    Chunk → IterableOnceOps
  239. final def toBinaryString(implicit ev: <:<[Short, Boolean]): String

    Renders this chunk of bits as a binary string.

    Renders this chunk of bits as a binary string.

    Definition Classes
    Chunk
  240. final def toBuffer[B >: Short]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  241. final def toIndexedSeq: IndexedSeq[Short]
    Definition Classes
    IndexedSeq → IterableOnceOps
  242. final def toList: List[Short]
    Definition Classes
    Chunk → IterableOnceOps
  243. def toMap[K, V](implicit ev: <:<[Short, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  244. def toPackedByte(implicit ev: <:<[Short, Boolean]): Chunk[Byte]
    Definition Classes
    Chunk
  245. def toPackedInt(endianness: Endianness)(implicit ev: <:<[Short, Boolean]): Chunk[Int]
    Definition Classes
    Chunk
  246. def toPackedLong(endianness: Endianness)(implicit ev: <:<[Short, Boolean]): Chunk[Long]
    Definition Classes
    Chunk
  247. final def toSeq: ShortArray.this.type
    Definition Classes
    Seq → IterableOnceOps
  248. def toSet[B >: Short]: Set[B]
    Definition Classes
    IterableOnceOps
  249. final def toString(): String
    Definition Classes
    Chunk → Seq → Function1 → Iterable → AnyRef → Any
  250. final def toVector: Vector[Short]
    Definition Classes
    Chunk → IterableOnceOps
  251. def transpose[B](implicit asIterable: (Short) => Iterable[B]): Chunk[Chunk[B]]
    Definition Classes
    IterableOps
  252. def unapply(a: Int): Option[Short]
    Definition Classes
    PartialFunction
  253. def unzip[A1, A2](implicit asPair: (Short) => (A1, A2)): (Chunk[A1], Chunk[A2])
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  254. def unzip3[A1, A2, A3](implicit asTriple: (Short) => (A1, A2, A3)): (Chunk[A1], Chunk[A2], Chunk[A3])
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  255. def update[A1 >: Short](index: Int, a1: A1): Chunk[A1]

    Updates an element at the specified index of the chunk.

    Updates an element at the specified index of the chunk.

    Attributes
    protected
    Definition Classes
    Chunk
  256. final def updated[A1 >: Short](index: Int, elem: A1): Chunk[A1]
    Definition Classes
    ChunkLike → StrictOptimizedSeqOps → SeqOps
  257. def view: IndexedSeqView[Short]
    Definition Classes
    IndexedSeqOps → SeqOps → IterableOps
  258. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  259. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  260. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  261. def withFilter(p: (Short) => Boolean): WithFilter[Short, [_]Chunk[_]]
    Definition Classes
    IterableOps
  262. final def zip[B](that: Chunk[B])(implicit zippable: Zippable[Short, B]): Chunk[Out]

    Zips this chunk with the specified chunk to produce a new chunk with pairs of elements from each chunk.

    Zips this chunk with the specified chunk to produce a new chunk with pairs of elements from each chunk. The returned chunk will have the length of the shorter chunk.

    Definition Classes
    Chunk
  263. def zip[B](that: IterableOnce[B]): Chunk[(Short, B)]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  264. final def zipAll[B](that: Chunk[B]): Chunk[(Option[Short], Option[B])]

    Zips this chunk with the specified chunk to produce a new chunk with pairs of elements from each chunk, filling in missing values from the shorter chunk with None.

    Zips this chunk with the specified chunk to produce a new chunk with pairs of elements from each chunk, filling in missing values from the shorter chunk with None. The returned chunk will have the length of the longer chunk.

    Definition Classes
    Chunk
  265. def zipAll[A1 >: Short, B](that: Iterable[B], thisElem: A1, thatElem: B): Chunk[(A1, B)]
    Definition Classes
    IterableOps
  266. final def zipAllWith[B, C](that: Chunk[B])(left: (Short) => C, right: (B) => C)(both: (Short, B) => C): Chunk[C]

    Zips with chunk with the specified chunk to produce a new chunk with pairs of elements from each chunk combined using the specified function both.

    Zips with chunk with the specified chunk to produce a new chunk with pairs of elements from each chunk combined using the specified function both. If one chunk is shorter than the other uses the specified function left or right to map the element that does exist to the result type.

    Definition Classes
    Chunk
  267. final def zipWith[B, C](that: Chunk[B])(f: (Short, B) => C): Chunk[C]

    Zips this chunk with the specified chunk using the specified combiner.

    Zips this chunk with the specified chunk using the specified combiner.

    Definition Classes
    Chunk
  268. final def zipWithIndex: Chunk[(Short, Int)]

    Zips this chunk with the index of every element.

    Zips this chunk with the index of every element.

    Definition Classes
    ChunkLike → StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  269. final def zipWithIndexFrom(indexOffset: Int): Chunk[(Short, Int)]

    Zips this chunk with the index of every element, starting from the initial index value.

    Zips this chunk with the index of every element, starting from the initial index value.

    Definition Classes
    Chunk
  270. def |(that: Chunk[Boolean])(implicit ev: <:<[Short, Boolean]): BitChunkByte

    Returns the bitwise OR of this chunk and the specified chunk.

    Returns the bitwise OR of this chunk and the specified chunk.

    Definition Classes
    Chunk

Deprecated Value Members

  1. final def /:[B](z: B)(op: (B, Short) => 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: (Short, 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, Short) => 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[[_]Chunk[_]]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding() @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

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

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

  6. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

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

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

    (Since version 2.13.0) Use segmentLength instead of prefixLength

  9. final def repr: Chunk[Short]
    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 reverseMap[B](f: (Short) => B): Chunk[B]
    Definition Classes
    SeqOps
    Annotations
    @deprecated
    Deprecated

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

  11. def seq: ShortArray.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

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

  12. final def toIterable: ShortArray.this.type
    Definition Classes
    Iterable → IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.7) toIterable is internal and will be made protected; its name is similar to toList or toSeq, but it doesn't copy non-immutable collections

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

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

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

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

  15. final def toTraversable: Traversable[Short]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) toTraversable is internal and will be made protected; its name is similar to toList or toSeq, but it doesn't copy non-immutable collections

  16. final def union[B >: Short](that: Seq[B]): Chunk[B]
    Definition Classes
    SeqOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use concat instead

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

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

Inherited from Product

Inherited from ChunkIterator[Short]

Inherited from Arr[Short]

Inherited from Chunk[Short]

Inherited from Serializable

Inherited from ChunkLike[Short]

Inherited from IndexedSeq[Short]

Inherited from IndexedSeqOps[Short, [_]Chunk[_], Chunk[Short]]

Inherited from IndexedSeq[Short]

Inherited from IndexedSeqOps[Short, [_]Chunk[_], Chunk[Short]]

Inherited from Seq[Short]

Inherited from SeqOps[Short, [_]Chunk[_], Chunk[Short]]

Inherited from Seq[Short]

Inherited from Equals

Inherited from SeqOps[Short, [_]Chunk[_], Chunk[Short]]

Inherited from PartialFunction[Int, Short]

Inherited from (Int) => Short

Inherited from Iterable[Short]

Inherited from Iterable[Short]

Inherited from IterableFactoryDefaults[Short, [x]Chunk[x]]

Inherited from IterableOps[Short, [_]Chunk[_], Chunk[Short]]

Inherited from IterableOnceOps[Short, [_]Chunk[_], Chunk[Short]]

Inherited from IterableOnce[Short]

Inherited from AnyRef

Inherited from Any

Ungrouped