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. Serializable
  8. ChunkLike
  9. IndexedSeq
  10. IndexedSeq
  11. IndexedSeqLike
  12. Seq
  13. Seq
  14. SeqLike
  15. GenSeq
  16. GenSeqLike
  17. PartialFunction
  18. Function1
  19. Iterable
  20. Iterable
  21. IterableLike
  22. Equals
  23. GenIterable
  24. GenIterableLike
  25. Traversable
  26. Immutable
  27. Traversable
  28. GenTraversable
  29. GenericTraversableTemplate
  30. TraversableLike
  31. GenTraversableLike
  32. Parallelizable
  33. TraversableOnce
  34. GenTraversableOnce
  35. FilterMonadic
  36. HasNewBuilder
  37. AnyRef
  38. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

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

Type Members

  1. class Elements extends AbstractIterator[A] with BufferedIterator[A] with Serializable
    Attributes
    protected
    Definition Classes
    IndexedSeqLike
    Annotations
    @SerialVersionUID()
  2. type Self = Chunk[Short]
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  3. class WithFilter extends FilterMonadic[A, Repr]
    Definition Classes
    TraversableLike

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. def ++[B >: Short, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Chunk[Short], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  8. def ++:[B >: Short, That](that: Traversable[B])(implicit bf: CanBuildFrom[Chunk[Short], B, That]): That
    Definition Classes
    TraversableLike
  9. def ++:[B >: Short, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Chunk[Short], B, That]): That
    Definition Classes
    TraversableLike
  10. final def +:[A1 >: Short, That](a1: A1)(implicit bf: CanBuildFrom[Chunk[Short], A1, That]): That
    Definition Classes
    ChunkLike → SeqLike → GenSeqLike
  11. final def :+[A1 >: Short, That](a1: A1)(implicit bf: CanBuildFrom[Chunk[Short], A1, That]): That
    Definition Classes
    ChunkLike → SeqLike → GenSeqLike
  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. def addString(b: StringBuilder): StringBuilder
    Definition Classes
    TraversableOnce
  15. def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    TraversableOnce
  16. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    TraversableOnce
  17. def aggregate[B](z: ⇒ B)(seqop: (B, Short) ⇒ B, combop: (B, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  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. def apply(index: Int): Short
    Definition Classes
    ShortArray → SeqLike → GenSeqLike → Function1
  21. def applyOrElse[A1 <: Int, B1 >: Short](x: A1, default: (A1) ⇒ B1): B1
    Definition Classes
    PartialFunction
  22. val array: Array[Short]
    Definition Classes
    ShortArray → Arr
  23. 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
  24. 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
  25. 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
  26. 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
  27. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  28. 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
  29. 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
  30. 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
  31. 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
  32. def canEqual(that: Any): Boolean
    Definition Classes
    IterableLike → Equals
  33. 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
  34. def chunkIterator: ChunkIterator[Short]
    Definition Classes
    ShortArrayChunk
  35. implicit val classTag: ClassTag[Short]
    Definition Classes
    Arr
  36. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  37. final def collect[B, That](pf: PartialFunction[Short, B])(implicit bf: CanBuildFrom[Chunk[Short], B, That]): That

    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 → TraversableLike → GenTraversableLike
  38. 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
  39. def collectFirst[B](pf: PartialFunction[Short, B]): Option[B]
    Definition Classes
    TraversableOnce
  40. 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
  41. def collectWhileZIO[R, E, B](pf: PartialFunction[Short, ZIO[R, E, B]])(implicit trace: Trace): ZIO[R, E, Chunk[B]]
    Definition Classes
    Arr → Chunk
  42. 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
  43. def combinations(n: Int): Iterator[Chunk[Short]]
    Definition Classes
    SeqLike
  44. def companion: GenericCompanion[Chunk]
    Definition Classes
    ChunkLike → IndexedSeq → IndexedSeq → Seq → Seq → GenSeq → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → GenericTraversableTemplate
  45. def compose[A](g: (A) ⇒ Int): (A) ⇒ Short
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  46. def concatDepth: Int
    Attributes
    protected
    Definition Classes
    Chunk
  47. def contains[A1 >: Short](elem: A1): Boolean
    Definition Classes
    SeqLike
  48. def containsSlice[B](that: GenSeq[B]): Boolean
    Definition Classes
    SeqLike
  49. def copyToArray[A1 >: Short](dest: Array[A1], destPos: Int, length: Int): Unit
    Definition Classes
    ChunkLike → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  50. def copyToArray[B >: Short](xs: Array[B]): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  51. def copyToArray[B >: Short](xs: Array[B], start: Int): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  52. def copyToBuffer[B >: Short](dest: Buffer[B]): Unit
    Definition Classes
    TraversableOnce
  53. 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
  54. def corresponds[B](that: GenSeq[B])(p: (Short, B) ⇒ Boolean): Boolean
    Definition Classes
    SeqLike → GenSeqLike
  55. def count(p: (Short) ⇒ Boolean): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  56. def dedupe: Chunk[Short]

    Deduplicates adjacent elements that are identical.

    Deduplicates adjacent elements that are identical.

    Definition Classes
    Chunk
  57. def depth: Int
    Attributes
    protected
    Definition Classes
    Chunk
  58. def diff[B >: Short](that: GenSeq[B]): Chunk[Short]
    Definition Classes
    SeqLike → GenSeqLike
  59. def distinct: Chunk[Short]
    Definition Classes
    SeqLike → GenSeqLike
  60. 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
  61. 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 → IterableLike → TraversableLike → GenTraversableLike
  62. 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 → IterableLike
  63. 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
  64. 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
  65. 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 → TraversableLike → GenTraversableLike
  66. 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
  67. def endsWith[B](that: GenSeq[B]): Boolean
    Definition Classes
    SeqLike → GenSeqLike
  68. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  69. def equals(that: Any): Boolean
    Definition Classes
    Chunk → GenSeqLike → Equals → AnyRef → Any
  70. 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 → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  71. 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 → TraversableLike → GenTraversableLike
  72. def filterNot(p: (Short) ⇒ Boolean): Chunk[Short]
    Definition Classes
    TraversableLike → GenTraversableLike
  73. 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
  74. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  75. 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 → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  76. 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
  77. final def flatMap[B, That](f: (Short) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Chunk[Short], B, That]): That

    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 → TraversableLike → GenTraversableLike → FilterMonadic
  78. final def flatMapChunk[B, That](f: (Short) ⇒ GenTraversableOnce[B]): Chunk[B]

    The implementation of flatMap for Chunk.

    The implementation of flatMap for Chunk.

    Attributes
    protected
    Definition Classes
    ChunkLike
  79. def flatten[B](implicit ev: (Short) ⇒ GenTraversableOnce[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 → GenericTraversableTemplate
  80. 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
  81. def fold[A1 >: Short](z: A1)(op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  82. 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 → TraversableOnce → GenTraversableOnce
  83. 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 → IterableLike → TraversableOnce → GenTraversableOnce
  84. 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
  85. 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
  86. 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
  87. 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 → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  88. def foreach[B](f: (Short) ⇒ B): Unit
    Definition Classes
    Arr → IterableLike → GenericTraversableTemplate → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  89. def genericBuilder[B]: Builder[B, Chunk[B]]
    Definition Classes
    GenericTraversableTemplate
  90. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  91. def groupBy[K](f: (Short) ⇒ K): Map[K, Chunk[Short]]
    Definition Classes
    TraversableLike → GenTraversableLike
  92. def grouped(size: Int): Iterator[Chunk[Short]]
    Definition Classes
    IterableLike
  93. def hasDefiniteSize: Boolean
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  94. def hasNextAt(index: Int): Boolean

    Checks if the chunk iterator has another element.

    Checks if the chunk iterator has another element.

    Definition Classes
    ShortArrayChunkIterator
  95. final def hashCode(): Int
    Definition Classes
    Chunk → IndexedSeqLike → GenSeqLike → AnyRef → Any
  96. 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 → IterableLike → GenericTraversableTemplate → TraversableLike → GenTraversableLike
  97. 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 → TraversableLike → GenTraversableLike
  98. def indexOf[B >: Short](elem: B, from: Int): Int
    Definition Classes
    GenSeqLike
  99. def indexOf[B >: Short](elem: B): Int
    Definition Classes
    GenSeqLike
  100. def indexOfSlice[B >: Short](that: GenSeq[B], from: Int): Int
    Definition Classes
    SeqLike
  101. def indexOfSlice[B >: Short](that: GenSeq[B]): Int
    Definition Classes
    SeqLike
  102. 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 → SeqLike → GenSeqLike
  103. final def indexWhere(f: (Short) ⇒ Boolean): Int

    Returns the first index for which the given predicate is satisfied.

    Returns the first index for which the given predicate is satisfied.

    Definition Classes
    ChunkLike → GenSeqLike
  104. def indices: Range
    Definition Classes
    SeqLike
  105. def init: Chunk[Short]
    Definition Classes
    TraversableLike → GenTraversableLike
  106. def inits: Iterator[Chunk[Short]]
    Definition Classes
    TraversableLike
  107. 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
  108. def intersect[B >: Short](that: GenSeq[B]): Chunk[Short]
    Definition Classes
    SeqLike → GenSeqLike
  109. def isDefinedAt(idx: Int): Boolean
    Definition Classes
    GenSeqLike
  110. final def isEmpty: Boolean

    Determines if the chunk is empty.

    Determines if the chunk is empty.

    Definition Classes
    Chunk → SeqLike → IterableLike → GenericTraversableTemplate → TraversableLike → TraversableOnce → GenTraversableOnce
  111. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  112. final def isTraversableAgain: Boolean
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  113. def iterator: Iterator[Short]
    Definition Classes
    Arr → IndexedSeqLike → IterableLike → GenIterableLike
  114. def last: Short
    Definition Classes
    TraversableLike → GenTraversableLike
  115. def lastIndexOf[B >: Short](elem: B, end: Int): Int
    Definition Classes
    GenSeqLike
  116. def lastIndexOf[B >: Short](elem: B): Int
    Definition Classes
    GenSeqLike
  117. def lastIndexOfSlice[B >: Short](that: GenSeq[B], end: Int): Int
    Definition Classes
    SeqLike
  118. def lastIndexOfSlice[B >: Short](that: GenSeq[B]): Int
    Definition Classes
    SeqLike
  119. def lastIndexWhere(p: (Short) ⇒ Boolean, end: Int): Int
    Definition Classes
    SeqLike → GenSeqLike
  120. def lastIndexWhere(p: (Short) ⇒ Boolean): Int
    Definition Classes
    GenSeqLike
  121. 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 → TraversableLike → GenTraversableLike
  122. def left: Chunk[Short]
    Attributes
    protected
    Definition Classes
    Chunk
  123. val length: Int

    The length of the iterator.

    The length of the iterator.

    Definition Classes
    ShortArrayChunkIterator → SeqLike → GenSeqLike
  124. def lengthCompare(len: Int): Int
    Definition Classes
    SeqLike
  125. def lift: (Int) ⇒ Option[Short]
    Definition Classes
    PartialFunction
  126. 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
  127. final def map[B, That](f: (Short) ⇒ B)(implicit bf: CanBuildFrom[Chunk[Short], B, That]): That

    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 → TraversableLike → GenTraversableLike → FilterMonadic
  128. 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
  129. 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
  130. 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
  131. 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
  132. 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
  133. 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
  134. 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
  135. 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
  136. def max[B >: Short](implicit cmp: Ordering[B]): Short
    Definition Classes
    TraversableOnce → GenTraversableOnce
  137. def maxBy[B](f: (Short) ⇒ B)(implicit cmp: Ordering[B]): Short
    Definition Classes
    TraversableOnce → GenTraversableOnce
  138. def min[B >: Short](implicit cmp: Ordering[B]): Short
    Definition Classes
    TraversableOnce → GenTraversableOnce
  139. def minBy[B](f: (Short) ⇒ B)(implicit cmp: Ordering[B]): Short
    Definition Classes
    TraversableOnce → GenTraversableOnce
  140. final def mkString: String

    Generates a readable string representation of this chunk.

    Generates a readable string representation of this chunk.

    Definition Classes
    ChunkLike → TraversableOnce → GenTraversableOnce
  141. final def mkString(sep: String): String

    Generates a readable string representation of this chunk using the specified separator string.

    Generates a readable string representation of this chunk using the specified separator string.

    Definition Classes
    ChunkLike → TraversableOnce → GenTraversableOnce
  142. final def mkString(start: String, sep: String, end: String): String

    Generates a readable string representation of this chunk using the specified start, separator, and end strings.

    Generates a readable string representation of this chunk using the specified start, separator, and end strings.

    Definition Classes
    ChunkLike → TraversableOnce → GenTraversableOnce
  143. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  144. def negate(implicit ev: <:<[Short, Boolean]): BitChunkByte

    Returns the bitwise NOT of this chunk.

    Returns the bitwise NOT of this chunk.

    Definition Classes
    Chunk
  145. def newBuilder: ChunkBuilder[Short]

    Constructs a new ChunkBuilder.

    Constructs a new ChunkBuilder. This operation allocates mutable state and is not referentially transparent. It is provided for compatibility with Scala's collection library and should not be used for other purposes.

    Attributes
    protected[this]
    Definition Classes
    ChunkLike → GenericTraversableTemplate → TraversableLike → HasNewBuilder
  146. def nextAt(index: Int): Short

    Gets the next element from the chunk iterator.

    Gets the next element from the chunk iterator.

    Definition Classes
    ShortArrayChunkIterator
  147. final def nonEmpty: Boolean

    Determines if the chunk is not empty.

    Determines if the chunk is not empty.

    Definition Classes
    ChunkLike → TraversableOnce → GenTraversableOnce
  148. 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
  149. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  150. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  151. val offset: Int
  152. def orElse[A1 <: Int, B1 >: Short](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
    Definition Classes
    PartialFunction
  153. def padTo[B >: Short, That](len: Int, elem: B)(implicit bf: CanBuildFrom[Chunk[Short], B, That]): That
    Definition Classes
    SeqLike → GenSeqLike
  154. def par: ParSeq[Short]
    Definition Classes
    Parallelizable
  155. def parCombiner: Combiner[Short, ParSeq[Short]]
    Attributes
    protected[this]
    Definition Classes
    Seq → SeqLike → Iterable → TraversableLike → Parallelizable
  156. def partition(p: (Short) ⇒ Boolean): (Chunk[Short], Chunk[Short])
    Definition Classes
    TraversableLike → GenTraversableLike
  157. 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 → ChunkLike
  158. def patch[B >: Short, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[Chunk[Short], B, That]): That
    Definition Classes
    SeqLike → GenSeqLike
  159. def permutations: Iterator[Chunk[Short]]
    Definition Classes
    SeqLike
  160. def prefixLength(p: (Short) ⇒ Boolean): Int
    Definition Classes
    GenSeqLike
  161. 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
  162. def product[B >: Short](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  163. def reduce[A1 >: Short](op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  164. def reduceLeft[B >: Short](op: (B, Short) ⇒ B): B
    Definition Classes
    TraversableOnce
  165. def reduceLeftOption[B >: Short](op: (B, Short) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  166. def reduceOption[A1 >: Short](op: (A1, A1) ⇒ A1): Option[A1]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  167. def reduceRight[B >: Short](op: (Short, B) ⇒ B): B
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  168. def reduceRightOption[B >: Short](op: (Short, B) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  169. def repr: Chunk[Short]
    Definition Classes
    TraversableLike → GenTraversableLike
  170. def reverse: Chunk[Short]
    Definition Classes
    SeqLike → GenSeqLike
  171. def reverseIterator: Iterator[Short]
    Definition Classes
    SeqLike
  172. def reverseMap[B, That](f: (Short) ⇒ B)(implicit bf: CanBuildFrom[Chunk[Short], B, That]): That
    Definition Classes
    SeqLike → GenSeqLike
  173. def reversed: List[Short]
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  174. def right: Chunk[Short]
    Attributes
    protected
    Definition Classes
    Chunk
  175. def runWith[U](action: (Short) ⇒ U): (Int) ⇒ Boolean
    Definition Classes
    PartialFunction
  176. def sameElements[B >: Short](that: GenIterable[B]): Boolean
    Definition Classes
    IterableLike → GenIterableLike
  177. def scan[B >: Short, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Chunk[Short], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  178. def scanLeft[B, That](z: B)(op: (B, Short) ⇒ B)(implicit bf: CanBuildFrom[Chunk[Short], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  179. def scanRight[B, That](z: B)(op: (Short, B) ⇒ B)(implicit bf: CanBuildFrom[Chunk[Short], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

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

  180. def segmentLength(p: (Short) ⇒ Boolean, from: Int): Int
    Definition Classes
    SeqLike → GenSeqLike
  181. def seq: IndexedSeq[Short]
    Definition Classes
    IndexedSeq → IndexedSeq → IndexedSeqLike → Seq → Seq → GenSeq → GenSeqLike → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  182. 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
  183. final def size: Int

    The number of elements in the chunk.

    The number of elements in the chunk.

    Definition Classes
    ChunkLike → SeqLike → GenTraversableLike → TraversableOnce → GenTraversableOnce
  184. def sizeHintIfCheap: Int
    Attributes
    protected[collection]
    Definition Classes
    IndexedSeqLike → GenTraversableOnce
  185. def slice(from: Int, until: Int): Chunk[Short]
    Definition Classes
    Chunk → IterableLike → TraversableLike → GenTraversableLike
  186. 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
  187. def sliding(size: Int, step: Int): Iterator[Chunk[Short]]
    Definition Classes
    IterableLike
  188. def sliding(size: Int): Iterator[Chunk[Short]]
    Definition Classes
    IterableLike
  189. def sortBy[B](f: (Short) ⇒ B)(implicit ord: Ordering[B]): Chunk[Short]
    Definition Classes
    SeqLike
  190. def sortWith(lt: (Short, Short) ⇒ Boolean): Chunk[Short]
    Definition Classes
    SeqLike
  191. def sorted[A1 >: Short](implicit ord: Ordering[A1]): Chunk[Short]
    Definition Classes
    ChunkLike → SeqLike
  192. def span(f: (Short) ⇒ Boolean): (Chunk[Short], Chunk[Short])
    Definition Classes
    Chunk → TraversableLike → GenTraversableLike
  193. 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
  194. 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 → TraversableLike → GenTraversableLike
  195. 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
  196. def startsWith[B](that: GenSeq[B], offset: Int): Boolean
    Definition Classes
    SeqLike → GenSeqLike
  197. def startsWith[B](that: GenSeq[B]): Boolean
    Definition Classes
    GenSeqLike
  198. def stringPrefix: String
    Definition Classes
    TraversableLike → GenTraversableLike
  199. def sum[B >: Short](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  200. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  201. def tail: Chunk[Short]
    Definition Classes
    TraversableLike → GenTraversableLike
  202. def tails: Iterator[Chunk[Short]]
    Definition Classes
    TraversableLike
  203. 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 → IterableLike → TraversableLike → GenTraversableLike
  204. 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 → IterableLike
  205. 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 → IterableLike → TraversableLike → GenTraversableLike
  206. 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
  207. def thisCollection: IndexedSeq[Short]
    Attributes
    protected[this]
    Definition Classes
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  208. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Short, Col[Short]]): Col[Short]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  209. def toArray[A1 >: Short](srcPos: Int, dest: Array[A1], destPos: Int, length: Int): Unit
    Attributes
    protected[zio]
    Definition Classes
    Arr → Chunk
  210. final def toArray[A1 >: Short](n: Int, dest: Array[A1]): Unit
    Attributes
    protected[zio]
    Definition Classes
    Chunk
  211. 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 → TraversableOnce → GenTraversableOnce
  212. 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
  213. def toBuffer[A1 >: Short]: Buffer[A1]
    Definition Classes
    IndexedSeqLike → TraversableOnce → GenTraversableOnce
  214. def toCollection(repr: Chunk[Short]): IndexedSeq[Short]
    Attributes
    protected[this]
    Definition Classes
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  215. def toIndexedSeq: IndexedSeq[Short]
    Definition Classes
    IndexedSeq → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  216. def toIterable: Iterable[Short]
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  217. def toIterator: Iterator[Short]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  218. final def toList: List[Short]
    Definition Classes
    Chunk → TraversableOnce → GenTraversableOnce
  219. def toMap[T, U](implicit ev: <:<[Short, (T, U)]): Map[T, U]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  220. def toPackedByte(implicit ev: <:<[Short, Boolean]): Chunk[Byte]
    Definition Classes
    Chunk
  221. def toPackedInt(endianness: Endianness)(implicit ev: <:<[Short, Boolean]): Chunk[Int]
    Definition Classes
    Chunk
  222. def toPackedLong(endianness: Endianness)(implicit ev: <:<[Short, Boolean]): Chunk[Long]
    Definition Classes
    Chunk
  223. def toSeq: Seq[Short]
    Definition Classes
    Seq → SeqLike → GenSeqLike → TraversableOnce → GenTraversableOnce
  224. def toSet[B >: Short]: Set[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  225. def toStream: Stream[Short]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  226. final def toString(): String
    Definition Classes
    Chunk → SeqLike → Function1 → TraversableLike → AnyRef → Any
  227. def toTraversable: Traversable[Short]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  228. final def toVector: Vector[Short]
    Definition Classes
    Chunk → TraversableOnce → GenTraversableOnce
  229. def transpose[B](implicit asTraversable: (Short) ⇒ GenTraversableOnce[B]): Chunk[Chunk[B]]
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

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

  230. def union[B >: Short, That](that: GenSeq[B])(implicit bf: CanBuildFrom[Chunk[Short], B, That]): That
    Definition Classes
    SeqLike → GenSeqLike
  231. def unzip[A1, A2](implicit asPair: (Short) ⇒ (A1, A2)): (Chunk[A1], Chunk[A2])
    Definition Classes
    GenericTraversableTemplate
  232. def unzip3[A1, A2, A3](implicit asTriple: (Short) ⇒ (A1, A2, A3)): (Chunk[A1], Chunk[A2], Chunk[A3])
    Definition Classes
    GenericTraversableTemplate
  233. 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
  234. final def updated[B >: Short, That](index: Int, elem: B)(implicit bf: CanBuildFrom[Chunk[Short], B, That]): That
    Definition Classes
    ChunkLike → SeqLike → GenSeqLike
  235. def view(from: Int, until: Int): SeqView[Short, Chunk[Short]]
    Definition Classes
    SeqLike → IterableLike → TraversableLike
  236. def view: SeqView[Short, Chunk[Short]]
    Definition Classes
    SeqLike → IterableLike → TraversableLike
  237. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  238. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  239. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  240. def withFilter(p: (Short) ⇒ Boolean): FilterMonadic[Short, Chunk[Short]]
    Definition Classes
    TraversableLike → FilterMonadic
  241. 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
  242. def zip[A1 >: Short, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Chunk[Short], (A1, B), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  243. 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
  244. def zipAll[B, A1 >: Short, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Chunk[Short], (A1, B), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  245. 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
  246. 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
  247. 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
  248. def zipWithIndex[A1 >: Short, That](implicit bf: CanBuildFrom[Chunk[Short], (A1, Int), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  249. 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
  250. 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. def /:[B](z: B)(op: (B, Short) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldLeft instead of /:

  2. def :\[B](z: B)(op: (Short, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldRight instead of :\

Inherited from Product

Inherited from ChunkIterator[Short]

Inherited from Arr[Short]

Inherited from Chunk[Short]

Inherited from Serializable

Inherited from Serializable

Inherited from ChunkLike[Short]

Inherited from IndexedSeq[Short]

Inherited from IndexedSeq[Short]

Inherited from IndexedSeqLike[Short, Chunk[Short]]

Inherited from Seq[Short]

Inherited from Seq[Short]

Inherited from SeqLike[Short, Chunk[Short]]

Inherited from GenSeq[Short]

Inherited from GenSeqLike[Short, Chunk[Short]]

Inherited from PartialFunction[Int, Short]

Inherited from (Int) ⇒ Short

Inherited from Iterable[Short]

Inherited from Iterable[Short]

Inherited from IterableLike[Short, Chunk[Short]]

Inherited from Equals

Inherited from GenIterable[Short]

Inherited from GenIterableLike[Short, Chunk[Short]]

Inherited from Traversable[Short]

Inherited from Immutable

Inherited from Traversable[Short]

Inherited from GenTraversable[Short]

Inherited from TraversableLike[Short, Chunk[Short]]

Inherited from GenTraversableLike[Short, Chunk[Short]]

Inherited from Parallelizable[Short, ParSeq[Short]]

Inherited from TraversableOnce[Short]

Inherited from GenTraversableOnce[Short]

Inherited from FilterMonadic[Short, Chunk[Short]]

Inherited from HasNewBuilder[Short, Chunk[Short]]

Inherited from AnyRef

Inherited from Any

Ungrouped