Class

zio.Chunk

ShortArray

Related Doc: package Chunk

Permalink

final case class ShortArray(array: Array[Short]) extends Arr[Short] with Product with Serializable

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ShortArray
  2. Product
  3. Arr
  4. Serializable
  5. Serializable
  6. Chunk
  7. ChunkLike
  8. IndexedSeq
  9. IndexedSeq
  10. IndexedSeqLike
  11. Seq
  12. Seq
  13. SeqLike
  14. GenSeq
  15. GenSeqLike
  16. PartialFunction
  17. Function1
  18. Iterable
  19. Iterable
  20. IterableLike
  21. Equals
  22. GenIterable
  23. GenIterableLike
  24. Traversable
  25. Immutable
  26. Traversable
  27. GenTraversable
  28. GenericTraversableTemplate
  29. TraversableLike
  30. GenTraversableLike
  31. Parallelizable
  32. TraversableOnce
  33. GenTraversableOnce
  34. FilterMonadic
  35. HasNewBuilder
  36. AnyRef
  37. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ShortArray(array: Array[Short])

    Permalink

Type Members

  1. class Elements extends AbstractIterator[A] with BufferedIterator[A] with Serializable

    Permalink
    Attributes
    protected
    Definition Classes
    IndexedSeqLike
    Annotations
    @SerialVersionUID()
  2. type Self = Chunk[Short]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  3. class WithFilter extends FilterMonadic[A, Repr]

    Permalink
    Definition Classes
    TraversableLike

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ++[A1 >: Short](that: NonEmptyChunk[A1]): NonEmptyChunk[A1]

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

    Permalink

    Returns the concatenation of this chunk with the specified chunk.

    Returns the concatenation of this chunk with the specified chunk.

    Definition Classes
    Chunk
  5. def ++[B >: Short, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Chunk[Short], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  6. def ++:[B >: Short, That](that: Traversable[B])(implicit bf: CanBuildFrom[Chunk[Short], B, That]): That

    Permalink
    Definition Classes
    TraversableLike
  7. def ++:[B >: Short, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Chunk[Short], B, That]): That

    Permalink
    Definition Classes
    TraversableLike
  8. final def +:[A1 >: Short, That](a1: A1)(implicit bf: CanBuildFrom[Chunk[Short], A1, That]): That

    Permalink
    Definition Classes
    ChunkLike → SeqLike → GenSeqLike
  9. def /:[B](z: B)(op: (B, Short) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  10. final def :+[A1 >: Short, That](a1: A1)(implicit bf: CanBuildFrom[Chunk[Short], A1, That]): That

    Permalink
    Definition Classes
    ChunkLike → SeqLike → GenSeqLike
  11. def :\[B](z: B)(op: (Short, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  12. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  13. def addString(b: StringBuilder): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  14. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  15. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  16. def aggregate[B](z: ⇒ B)(seqop: (B, Short) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  17. def andThen[C](k: (Short) ⇒ C): PartialFunction[Int, C]

    Permalink
    Definition Classes
    PartialFunction → Function1
  18. def append[A1 >: Short](a1: A1): Chunk[A1]

    Permalink

    Appends an element to the chunk.

    Appends an element to the chunk.

    Attributes
    protected
    Definition Classes
    Chunk
  19. def apply(n: Int): Short

    Permalink
    Definition Classes
    Arr → SeqLike → GenSeqLike → Function1
  20. def applyOrElse[A1 <: Int, B1 >: Short](x: A1, default: (A1) ⇒ B1): B1

    Permalink
    Definition Classes
    PartialFunction
  21. val array: Array[Short]

    Permalink
    Definition Classes
    ShortArray → Arr
  22. final def asBits(implicit ev: <:<[Short, Byte]): Chunk[Boolean]

    Permalink

    Converts a chunk of bytes to a chunk of bits.

    Converts a chunk of bytes to a chunk of bits.

    Definition Classes
    Chunk
  23. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  24. def boolean(index: Int)(implicit ev: <:<[Short, Boolean]): Boolean

    Permalink

    Get the element at the specified index.

    Get the element at the specified index.

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

    Permalink

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  26. def canEqual(that: Any): Boolean

    Permalink
    Definition Classes
    IterableLike → Equals
  27. def char(index: Int)(implicit ev: <:<[Short, Char]): Char

    Permalink

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  28. implicit val classTag: ClassTag[Short]

    Permalink
    Definition Classes
    Arr
  29. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def collect[B, That](pf: PartialFunction[Short, B])(implicit bf: CanBuildFrom[Chunk[Short], B, That]): That

    Permalink

    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
  31. def collectChunk[B](pf: PartialFunction[Short, B]): Chunk[B]

    Permalink

    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
  32. def collectFirst[B](pf: PartialFunction[Short, B]): Option[B]

    Permalink
    Definition Classes
    TraversableOnce
  33. def collectWhile[B](pf: PartialFunction[Short, B]): Chunk[B]

    Permalink

    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
  34. def collectWhileZIO[R, E, B](pf: PartialFunction[Short, ZIO[R, E, B]]): ZIO[R, E, Chunk[B]]

    Permalink
    Definition Classes
    Arr → Chunk
  35. def collectZIO[R, E, B](pf: PartialFunction[Short, ZIO[R, E, B]]): ZIO[R, E, Chunk[B]]

    Permalink

    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
  36. def combinations(n: Int): Iterator[Chunk[Short]]

    Permalink
    Definition Classes
    SeqLike
  37. def companion: GenericCompanion[Chunk]

    Permalink
    Definition Classes
    ChunkLike → IndexedSeq → IndexedSeq → Seq → Seq → GenSeq → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → GenericTraversableTemplate
  38. def compose[A](g: (A) ⇒ Int): (A) ⇒ Short

    Permalink
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  39. def contains[A1 >: Short](elem: A1): Boolean

    Permalink
    Definition Classes
    SeqLike
  40. def containsSlice[B](that: GenSeq[B]): Boolean

    Permalink
    Definition Classes
    SeqLike
  41. def copyToArray[B >: Short](xs: Array[B], start: Int, len: Int): Unit

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  42. def copyToArray[B >: Short](xs: Array[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  43. def copyToArray[B >: Short](xs: Array[B], start: Int): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  44. def copyToBuffer[B >: Short](dest: Buffer[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce
  45. final def corresponds[B](that: Chunk[B])(f: (Short, B) ⇒ Boolean): Boolean

    Permalink

    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
  46. def corresponds[B](that: GenSeq[B])(p: (Short, B) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  47. def count(p: (Short) ⇒ Boolean): Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  48. def depth: Int

    Permalink
    Attributes
    protected
    Definition Classes
    Chunk
  49. def diff[B >: Short](that: GenSeq[B]): Chunk[Short]

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  50. def distinct: Chunk[Short]

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  51. def double(index: Int)(implicit ev: <:<[Short, Double]): Double

    Permalink

    Get the element at the specified index.

    Get the element at the specified index.

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

    Permalink

    Drops the first n elements of the chunk.

    Drops the first n elements of the chunk.

    Definition Classes
    Chunk → IterableLike → TraversableLike → GenTraversableLike
  53. def dropRight(n: Int): Chunk[Short]

    Permalink
    Definition Classes
    IterableLike
  54. def dropWhile(f: (Short) ⇒ Boolean): Chunk[Short]

    Permalink

    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
  55. def dropWhileZIO[R, E](p: (Short) ⇒ ZIO[R, E, Boolean]): ZIO[R, E, Chunk[Short]]

    Permalink
    Definition Classes
    Chunk
  56. def endsWith[B](that: GenSeq[B]): Boolean

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  57. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  58. final def equals(that: Any): Boolean

    Permalink
    Definition Classes
    Chunk → GenSeqLike → Equals → AnyRef → Any
  59. final def exists(f: (Short) ⇒ Boolean): Boolean

    Permalink

    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
  60. def filter(f: (Short) ⇒ Boolean): Chunk[Short]

    Permalink

    Returns a filtered subset of this chunk.

    Returns a filtered subset of this chunk.

    Definition Classes
    Arr → Chunk → TraversableLike → GenTraversableLike
  61. def filterNot(p: (Short) ⇒ Boolean): Chunk[Short]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  62. final def filterZIO[R, E](f: (Short) ⇒ ZIO[R, E, Boolean]): ZIO[R, E, Chunk[Short]]

    Permalink

    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
  63. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  64. final def find(f: (Short) ⇒ Boolean): Option[Short]

    Permalink

    Returns the first element that satisfies the predicate.

    Returns the first element that satisfies the predicate.

    Definition Classes
    Chunk → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  65. final def findZIO[R, E](f: (Short) ⇒ ZIO[R, E, Boolean]): ZIO[R, E, Option[Short]]

    Permalink

    Returns the first element that satisfies the effectful predicate.

    Returns the first element that satisfies the effectful predicate.

    Definition Classes
    Chunk
  66. final def flatMap[B, That](f: (Short) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Chunk[Short], B, That]): That

    Permalink

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

    Permalink

    The implementation of flatMap for Chunk.

    The implementation of flatMap for Chunk.

    Attributes
    protected
    Definition Classes
    ChunkLike
  68. final def flatten[B](implicit ev: <:<[Short, Chunk[B]]): Chunk[B]

    Permalink

    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
    Chunk
  69. def flatten[B](implicit asTraversable: (Short) ⇒ GenTraversableOnce[B]): Chunk[B]

    Permalink
    Definition Classes
    GenericTraversableTemplate
  70. def float(index: Int)(implicit ev: <:<[Short, Float]): Float

    Permalink

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  71. def fold[A1 >: Short](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  72. def foldLeft[S](s0: S)(f: (S, Short) ⇒ S): S

    Permalink

    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
  73. def foldRight[S](s0: S)(f: (Short, S) ⇒ S): S

    Permalink

    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
  74. final def foldWhile[S](s0: S)(pred: (S) ⇒ Boolean)(f: (S, Short) ⇒ S): S

    Permalink

    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
  75. final def foldWhileZIO[R, E, S](z: S)(pred: (S) ⇒ Boolean)(f: (S, Short) ⇒ ZIO[R, E, S]): ZIO[R, E, S]

    Permalink
    Definition Classes
    Chunk
  76. final def foldZIO[R, E, S](s: S)(f: (S, Short) ⇒ ZIO[R, E, S]): ZIO[R, E, S]

    Permalink

    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
  77. final def forall(f: (Short) ⇒ Boolean): Boolean

    Permalink

    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
  78. def foreach[B](f: (Short) ⇒ B): Unit

    Permalink
    Definition Classes
    Arr → IterableLike → GenericTraversableTemplate → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  79. def genericBuilder[B]: Builder[B, Chunk[B]]

    Permalink
    Definition Classes
    GenericTraversableTemplate
  80. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  81. def groupBy[K](f: (Short) ⇒ K): Map[K, Chunk[Short]]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  82. def grouped(size: Int): Iterator[Chunk[Short]]

    Permalink
    Definition Classes
    IterableLike
  83. def hasDefiniteSize: Boolean

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  84. final def hashCode(): Int

    Permalink
    Definition Classes
    Chunk → IndexedSeqLike → GenSeqLike → AnyRef → Any
  85. def head: Short

    Permalink

    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
  86. final def headOption: Option[Short]

    Permalink

    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
  87. def indexOf[B >: Short](elem: B, from: Int): Int

    Permalink
    Definition Classes
    GenSeqLike
  88. def indexOf[B >: Short](elem: B): Int

    Permalink
    Definition Classes
    GenSeqLike
  89. def indexOfSlice[B >: Short](that: GenSeq[B], from: Int): Int

    Permalink
    Definition Classes
    SeqLike
  90. def indexOfSlice[B >: Short](that: GenSeq[B]): Int

    Permalink
    Definition Classes
    SeqLike
  91. final def indexWhere(f: (Short) ⇒ Boolean, from: Int): Int

    Permalink

    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
  92. final def indexWhere(f: (Short) ⇒ Boolean): Int

    Permalink

    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
  93. def indices: Range

    Permalink
    Definition Classes
    SeqLike
  94. def init: Chunk[Short]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  95. def inits: Iterator[Chunk[Short]]

    Permalink
    Definition Classes
    TraversableLike
  96. def int(index: Int)(implicit ev: <:<[Short, Int]): Int

    Permalink

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  97. def intersect[B >: Short](that: GenSeq[B]): Chunk[Short]

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  98. def isDefinedAt(idx: Int): Boolean

    Permalink
    Definition Classes
    GenSeqLike
  99. final def isEmpty: Boolean

    Permalink

    Determines if the chunk is empty.

    Determines if the chunk is empty.

    Definition Classes
    Chunk → SeqLike → IterableLike → GenericTraversableTemplate → TraversableLike → TraversableOnce → GenTraversableOnce
  100. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  101. final def isTraversableAgain: Boolean

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  102. def iterator: Iterator[Short]

    Permalink
    Definition Classes
    IndexedSeqLike → IterableLike → GenIterableLike
  103. def last: Short

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  104. def lastIndexOf[B >: Short](elem: B, end: Int): Int

    Permalink
    Definition Classes
    GenSeqLike
  105. def lastIndexOf[B >: Short](elem: B): Int

    Permalink
    Definition Classes
    GenSeqLike
  106. def lastIndexOfSlice[B >: Short](that: GenSeq[B], end: Int): Int

    Permalink
    Definition Classes
    SeqLike
  107. def lastIndexOfSlice[B >: Short](that: GenSeq[B]): Int

    Permalink
    Definition Classes
    SeqLike
  108. def lastIndexWhere(p: (Short) ⇒ Boolean, end: Int): Int

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  109. def lastIndexWhere(p: (Short) ⇒ Boolean): Int

    Permalink
    Definition Classes
    GenSeqLike
  110. final def lastOption: Option[Short]

    Permalink

    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
  111. def left: Chunk[Short]

    Permalink
    Attributes
    protected
    Definition Classes
    Chunk
  112. val length: Int

    Permalink
    Definition Classes
    Arr → SeqLike → GenSeqLike
  113. def lengthCompare(len: Int): Int

    Permalink
    Definition Classes
    SeqLike
  114. def lift: (Int) ⇒ Option[Short]

    Permalink
    Definition Classes
    PartialFunction
  115. def long(index: Int)(implicit ev: <:<[Short, Long]): Long

    Permalink

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  116. final def map[B, That](f: (Short) ⇒ B)(implicit bf: CanBuildFrom[Chunk[Short], B, That]): That

    Permalink

    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
  117. final def mapAccum[S1, B](s1: S1)(f1: (S1, Short) ⇒ (S1, B)): (S1, Chunk[B])

    Permalink

    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
  118. final def mapAccumZIO[R, E, S1, B](s1: S1)(f1: (S1, Short) ⇒ ZIO[R, E, (S1, B)]): ZIO[R, E, (S1, Chunk[B])]

    Permalink

    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
  119. def mapChunk[B](f: (Short) ⇒ B): Chunk[B]

    Permalink

    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
    Arr → Chunk
  120. final def mapZIO[R, E, B](f: (Short) ⇒ ZIO[R, E, B]): ZIO[R, E, Chunk[B]]

    Permalink

    Effectfully maps the elements of this chunk.

    Effectfully maps the elements of this chunk.

    Definition Classes
    Chunk
  121. final def mapZIODiscard[R, E](f: (Short) ⇒ ZIO[R, E, Any]): ZIO[R, E, Unit]

    Permalink

    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
  122. final def mapZIOPar[R, E, B](f: (Short) ⇒ ZIO[R, E, B]): ZIO[R, E, Chunk[B]]

    Permalink

    Effectfully maps the elements of this chunk in parallel.

    Effectfully maps the elements of this chunk in parallel.

    Definition Classes
    Chunk
  123. final def mapZIOParDiscard[R, E](f: (Short) ⇒ ZIO[R, E, Any]): ZIO[R, E, Unit]

    Permalink

    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
  124. def materialize[A1 >: Short]: Chunk[A1]

    Permalink

    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
  125. def max[B >: Short](implicit cmp: Ordering[B]): Short

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  126. def maxBy[B](f: (Short) ⇒ B)(implicit cmp: Ordering[B]): Short

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  127. def min[B >: Short](implicit cmp: Ordering[B]): Short

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  128. def minBy[B](f: (Short) ⇒ B)(implicit cmp: Ordering[B]): Short

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  129. final def mkString: String

    Permalink

    Generates a readable string representation of this chunk.

    Generates a readable string representation of this chunk.

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

    Permalink

    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
  131. final def mkString(start: String, sep: String, end: String): String

    Permalink

    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
  132. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  133. def newBuilder: ChunkBuilder[Short]

    Permalink

    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
  134. final def nonEmpty: Boolean

    Permalink

    Determines if the chunk is not empty.

    Determines if the chunk is not empty.

    Definition Classes
    ChunkLike → TraversableOnce → GenTraversableOnce
  135. def nonEmptyOrElse[B](ifEmpty: ⇒ B)(fn: (NonEmptyChunk[Short]) ⇒ B): B

    Permalink

    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
  136. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  137. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  138. def orElse[A1 <: Int, B1 >: Short](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]

    Permalink
    Definition Classes
    PartialFunction
  139. def padTo[B >: Short, That](len: Int, elem: B)(implicit bf: CanBuildFrom[Chunk[Short], B, That]): That

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  140. def par: ParSeq[Short]

    Permalink
    Definition Classes
    Parallelizable
  141. def parCombiner: Combiner[Short, ParSeq[Short]]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Seq → SeqLike → Iterable → TraversableLike → Parallelizable
  142. def partition(p: (Short) ⇒ Boolean): (Chunk[Short], Chunk[Short])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  143. final def partitionMap[B, C](f: (Short) ⇒ Either[B, C]): (Chunk[B], Chunk[C])

    Permalink

    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
  144. def patch[B >: Short, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[Chunk[Short], B, That]): That

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  145. def permutations: Iterator[Chunk[Short]]

    Permalink
    Definition Classes
    SeqLike
  146. def prefixLength(p: (Short) ⇒ Boolean): Int

    Permalink
    Definition Classes
    GenSeqLike
  147. def prepend[A1 >: Short](a1: A1): Chunk[A1]

    Permalink

    Prepends an element to the chunk.

    Prepends an element to the chunk.

    Attributes
    protected
    Definition Classes
    Chunk
  148. def product[B >: Short](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  149. def reduce[A1 >: Short](op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  150. def reduceLeft[B >: Short](op: (B, Short) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce
  151. def reduceLeftOption[B >: Short](op: (B, Short) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  152. def reduceOption[A1 >: Short](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  153. def reduceRight[B >: Short](op: (Short, B) ⇒ B): B

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  154. def reduceRightOption[B >: Short](op: (Short, B) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  155. def repr: Chunk[Short]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  156. def reverse: Chunk[Short]

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  157. def reverseIterator: Iterator[Short]

    Permalink
    Definition Classes
    SeqLike
  158. def reverseMap[B, That](f: (Short) ⇒ B)(implicit bf: CanBuildFrom[Chunk[Short], B, That]): That

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  159. def reversed: List[Short]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  160. def right: Chunk[Short]

    Permalink
    Attributes
    protected
    Definition Classes
    Chunk
  161. def runWith[U](action: (Short) ⇒ U): (Int) ⇒ Boolean

    Permalink
    Definition Classes
    PartialFunction
  162. def sameElements[B >: Short](that: GenIterable[B]): Boolean

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  163. def scan[B >: Short, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Chunk[Short], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  164. def scanLeft[B, That](z: B)(op: (B, Short) ⇒ B)(implicit bf: CanBuildFrom[Chunk[Short], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  165. def scanRight[B, That](z: B)(op: (Short, B) ⇒ B)(implicit bf: CanBuildFrom[Chunk[Short], B, That]): That

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

  166. def segmentLength(p: (Short) ⇒ Boolean, from: Int): Int

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  167. def seq: IndexedSeq[Short]

    Permalink
    Definition Classes
    IndexedSeq → IndexedSeq → IndexedSeqLike → Seq → Seq → GenSeq → GenSeqLike → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  168. def short(index: Int)(implicit ev: <:<[Short, Short]): Short

    Permalink

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    ShortArrayChunk
  169. final def size: Int

    Permalink

    The number of elements in the chunk.

    The number of elements in the chunk.

    Definition Classes
    ChunkLike → SeqLike → GenTraversableLike → TraversableOnce → GenTraversableOnce
  170. def slice(from: Int, until: Int): Chunk[Short]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  171. def sliding(size: Int, step: Int): Iterator[Chunk[Short]]

    Permalink
    Definition Classes
    IterableLike
  172. def sliding(size: Int): Iterator[Chunk[Short]]

    Permalink
    Definition Classes
    IterableLike
  173. def sortBy[B](f: (Short) ⇒ B)(implicit ord: Ordering[B]): Chunk[Short]

    Permalink
    Definition Classes
    SeqLike
  174. def sortWith(lt: (Short, Short) ⇒ Boolean): Chunk[Short]

    Permalink
    Definition Classes
    SeqLike
  175. def sorted[B >: Short](implicit ord: Ordering[B]): Chunk[Short]

    Permalink
    Definition Classes
    SeqLike
  176. def span(p: (Short) ⇒ Boolean): (Chunk[Short], Chunk[Short])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  177. final def split(n: Int): Chunk[Chunk[Short]]

    Permalink

    Splits this chunk into n equally sized chunks.

    Splits this chunk into n equally sized chunks.

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

    Permalink

    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
  179. final def splitWhere(f: (Short) ⇒ Boolean): (Chunk[Short], Chunk[Short])

    Permalink

    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
  180. def startsWith[B](that: GenSeq[B], offset: Int): Boolean

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  181. def startsWith[B](that: GenSeq[B]): Boolean

    Permalink
    Definition Classes
    GenSeqLike
  182. def stringPrefix: String

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  183. def sum[B >: Short](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  184. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  185. def tail: Chunk[Short]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  186. def tails: Iterator[Chunk[Short]]

    Permalink
    Definition Classes
    TraversableLike
  187. def take(n: Int): Chunk[Short]

    Permalink

    Takes the first n elements of the chunk.

    Takes the first n elements of the chunk.

    Definition Classes
    Chunk → IterableLike → TraversableLike → GenTraversableLike
  188. def takeRight(n: Int): Chunk[Short]

    Permalink
    Definition Classes
    IterableLike
  189. def takeWhile(f: (Short) ⇒ Boolean): Chunk[Short]

    Permalink

    Takes all elements so long as the predicate returns true.

    Takes all elements so long as the predicate returns true.

    Definition Classes
    Arr → Chunk → IterableLike → TraversableLike → GenTraversableLike
  190. def takeWhileZIO[R, E](p: (Short) ⇒ ZIO[R, E, Boolean]): ZIO[R, E, Chunk[Short]]

    Permalink

    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
  191. def thisCollection: IndexedSeq[Short]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  192. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Short, Col[Short]]): Col[Short]

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  193. def toArray[A1 >: Short](n: Int, dest: Array[A1]): Unit

    Permalink
    Attributes
    protected[zio]
    Definition Classes
    Arr → Chunk
  194. def toArray[A1 >: Short](implicit arg0: ClassTag[A1]): Array[A1]

    Permalink

    Converts the chunk into an array.

    Converts the chunk into an array.

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

    Permalink

    Renders this chunk of bits as a binary string.

    Renders this chunk of bits as a binary string.

    Definition Classes
    Chunk
  196. def toBuffer[A1 >: Short]: Buffer[A1]

    Permalink
    Definition Classes
    IndexedSeqLike → TraversableOnce → GenTraversableOnce
  197. def toCollection(repr: Chunk[Short]): IndexedSeq[Short]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  198. def toIndexedSeq: IndexedSeq[Short]

    Permalink
    Definition Classes
    IndexedSeq → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  199. def toIterable: Iterable[Short]

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  200. def toIterator: Iterator[Short]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  201. final def toList: List[Short]

    Permalink
    Definition Classes
    Chunk → TraversableOnce → GenTraversableOnce
  202. def toMap[T, U](implicit ev: <:<[Short, (T, U)]): Map[T, U]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  203. def toSeq: Seq[Short]

    Permalink
    Definition Classes
    Seq → SeqLike → GenSeqLike → TraversableOnce → GenTraversableOnce
  204. def toSet[B >: Short]: Set[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  205. def toStream: Stream[Short]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  206. final def toString(): String

    Permalink
    Definition Classes
    Chunk → SeqLike → Function1 → TraversableLike → AnyRef → Any
  207. def toTraversable: Traversable[Short]

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  208. final def toVector: Vector[Short]

    Permalink
    Definition Classes
    Chunk → TraversableOnce → GenTraversableOnce
  209. def transpose[B](implicit asTraversable: (Short) ⇒ GenTraversableOnce[B]): Chunk[Chunk[B]]

    Permalink
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

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

  210. def union[B >: Short, That](that: GenSeq[B])(implicit bf: CanBuildFrom[Chunk[Short], B, That]): That

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  211. def unzip[A1, A2](implicit asPair: (Short) ⇒ (A1, A2)): (Chunk[A1], Chunk[A2])

    Permalink
    Definition Classes
    GenericTraversableTemplate
  212. def unzip3[A1, A2, A3](implicit asTriple: (Short) ⇒ (A1, A2, A3)): (Chunk[A1], Chunk[A2], Chunk[A3])

    Permalink
    Definition Classes
    GenericTraversableTemplate
  213. def updated[B >: Short, That](index: Int, elem: B)(implicit bf: CanBuildFrom[Chunk[Short], B, That]): That

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  214. def view(from: Int, until: Int): SeqView[Short, Chunk[Short]]

    Permalink
    Definition Classes
    SeqLike → IterableLike → TraversableLike
  215. def view: SeqView[Short, Chunk[Short]]

    Permalink
    Definition Classes
    SeqLike → IterableLike → TraversableLike
  216. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  217. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  218. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  219. def withFilter(p: (Short) ⇒ Boolean): FilterMonadic[Short, Chunk[Short]]

    Permalink
    Definition Classes
    TraversableLike → FilterMonadic
  220. final def zip[B](that: Chunk[B])(implicit zippable: Zippable[Short, B]): Chunk[Out]

    Permalink

    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
  221. def zip[A1 >: Short, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Chunk[Short], (A1, B), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  222. final def zipAll[B](that: Chunk[B]): Chunk[(Option[Short], Option[B])]

    Permalink

    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
  223. def zipAll[B, A1 >: Short, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Chunk[Short], (A1, B), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  224. final def zipAllWith[B, C](that: Chunk[B])(left: (Short) ⇒ C, right: (B) ⇒ C)(both: (Short, B) ⇒ C): Chunk[C]

    Permalink

    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
  225. final def zipWith[B, C](that: Chunk[B])(f: (Short, B) ⇒ C): Chunk[C]

    Permalink

    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
  226. final def zipWithIndex: Chunk[(Short, Int)]

    Permalink

    Zips this chunk with the index of every element.

    Zips this chunk with the index of every element.

    Definition Classes
    ChunkLike
  227. def zipWithIndex[A1 >: Short, That](implicit bf: CanBuildFrom[Chunk[Short], (A1, Int), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  228. final def zipWithIndexFrom(indexOffset: Int): Chunk[(Short, Int)]

    Permalink

    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

Deprecated Value Members

  1. def collectM[R, E, B](pf: PartialFunction[Short, ZIO[R, E, B]]): ZIO[R, E, Chunk[B]]

    Permalink

    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
    Chunk
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use collectZIO

  2. def collectWhileM[R, E, B](pf: PartialFunction[Short, ZIO[R, E, B]]): ZIO[R, E, Chunk[B]]

    Permalink
    Definition Classes
    Chunk
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use collectWhileZIO

  3. def dropWhileM[R, E](p: (Short) ⇒ ZIO[R, E, Boolean]): ZIO[R, E, Chunk[Short]]

    Permalink
    Definition Classes
    Chunk
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use dropWhileZIO

  4. final def filterM[R, E](f: (Short) ⇒ ZIO[R, E, Boolean]): ZIO[R, E, Chunk[Short]]

    Permalink

    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
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use filterZIO

  5. final def findM[R, E](f: (Short) ⇒ ZIO[R, E, Boolean]): ZIO[R, E, Option[Short]]

    Permalink

    Returns the first element that satisfies the effectful predicate.

    Returns the first element that satisfies the effectful predicate.

    Definition Classes
    Chunk
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use findZIO

  6. final def foldM[R, E, S](s: S)(f: (S, Short) ⇒ ZIO[R, E, S]): ZIO[R, E, S]

    Permalink

    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
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use foldZIO

  7. final def foldWhileM[R, E, S](z: S)(pred: (S) ⇒ Boolean)(f: (S, Short) ⇒ ZIO[R, E, S]): ZIO[R, E, S]

    Permalink
    Definition Classes
    Chunk
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use foldWhileZIO

  8. final def mapAccumM[R, E, S1, B](s1: S1)(f1: (S1, Short) ⇒ ZIO[R, E, (S1, B)]): ZIO[R, E, (S1, Chunk[B])]

    Permalink

    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
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use mapAccumZIO

  9. final def mapM[R, E, B](f: (Short) ⇒ ZIO[R, E, B]): ZIO[R, E, Chunk[B]]

    Permalink

    Effectfully maps the elements of this chunk.

    Effectfully maps the elements of this chunk.

    Definition Classes
    Chunk
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use mapZIO

  10. final def mapMPar[R, E, B](f: (Short) ⇒ ZIO[R, E, B]): ZIO[R, E, Chunk[B]]

    Permalink

    Effectfully maps the elements of this chunk in parallel.

    Effectfully maps the elements of this chunk in parallel.

    Definition Classes
    Chunk
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use mapZIOPar

  11. final def mapMPar_[R, E](f: (Short) ⇒ ZIO[R, E, Any]): ZIO[R, E, Unit]

    Permalink

    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
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use mapZIOParDiscard

  12. final def mapM_[R, E](f: (Short) ⇒ ZIO[R, E, Any]): ZIO[R, E, Unit]

    Permalink

    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
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use mapZIODiscard

  13. def takeWhileM[R, E](p: (Short) ⇒ ZIO[R, E, Boolean]): ZIO[R, E, Chunk[Short]]

    Permalink

    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
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use takeWhileZIO

Inherited from Product

Inherited from Arr[Short]

Inherited from Serializable

Inherited from Serializable

Inherited from Chunk[Short]

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