Class

zio.Chunk

AnyRefArray

Related Doc: package Chunk

Permalink

final case class AnyRefArray[A <: AnyRef](array: Array[A], offset: Int, length: Int) extends Arr[A] with ChunkIterator[A] with Product with Serializable

Self Type
AnyRefArray[A]
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AnyRefArray
  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 AnyRefArray(array: Array[A], offset: Int, length: Int)

    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[A]

    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 >: A](that: ChunkIterator[A1]): ChunkIterator[A1]

    Permalink

    Concatenates this chunk iterator with the specified chunk iterator.

    Concatenates this chunk iterator with the specified chunk iterator.

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

    Permalink
    Definition Classes
    Chunk
  5. final def ++[A1 >: A](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
  6. def ++[B >: A, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Chunk[A], B, That]): That

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink

    Appends an element to the chunk.

    Appends an element to the chunk.

    Attributes
    protected
    Definition Classes
    Chunk
  20. def apply(index: Int): A

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

    Permalink
    Definition Classes
    PartialFunction
  22. val array: Array[A]

    Permalink
    Definition Classes
    AnyRefArray → Arr
  23. final def asBits(implicit ev: <:<[A, 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
  24. final def asInstanceOf[T0]: T0

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

    Permalink

    Get the element at the specified index.

    Get the element at the specified index.

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

    Permalink

    Get the element at the specified index.

    Get the element at the specified index.

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

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

    Permalink

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  29. def chunkIterator: ChunkIterator[A]

    Permalink
    Definition Classes
    AnyRefArrayChunk
  30. implicit val classTag: ClassTag[A]

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def collect[B, That](pf: PartialFunction[A, B])(implicit bf: CanBuildFrom[Chunk[A], 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
  33. def collectChunk[B](pf: PartialFunction[A, 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
  34. def collectFirst[B](pf: PartialFunction[A, B]): Option[B]

    Permalink
    Definition Classes
    TraversableOnce
  35. def collectWhile[B](pf: PartialFunction[A, 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
  36. def collectWhileZIO[R, E, B](pf: PartialFunction[A, ZIO[R, E, B]])(implicit trace: ZTraceElement): ZIO[R, E, Chunk[B]]

    Permalink
    Definition Classes
    Arr → Chunk
  37. def collectZIO[R, E, B](pf: PartialFunction[A, ZIO[R, E, B]])(implicit trace: ZTraceElement): 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
  38. def combinations(n: Int): Iterator[Chunk[A]]

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    TraversableOnce
  47. final def corresponds[B](that: Chunk[B])(f: (A, 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
  48. def corresponds[B](that: GenSeq[B])(p: (A, B) ⇒ Boolean): Boolean

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

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  50. def dedupe: Chunk[A]

    Permalink

    Deduplicates adjacent elements that are identical.

    Deduplicates adjacent elements that are identical.

    Definition Classes
    Chunk
  51. def depth: Int

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

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  53. def distinct: Chunk[A]

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

    Permalink

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  55. def drop(n: Int): Chunk[A]

    Permalink

    Drops the first n elements of the chunk.

    Drops the first n elements of the chunk.

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

    Permalink

    Drops the last n elements of the chunk.

    Drops the last n elements of the chunk.

    Definition Classes
    Chunk → IterableLike
  57. def dropWhile(f: (A) ⇒ Boolean): Chunk[A]

    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
  58. def dropWhileZIO[R, E](p: (A) ⇒ ZIO[R, E, Boolean])(implicit trace: ZTraceElement): ZIO[R, E, Chunk[A]]

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

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

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

    Permalink
    Definition Classes
    Chunk → GenSeqLike → Equals → AnyRef → Any
  62. final def exists(f: (A) ⇒ 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
  63. def filter(f: (A) ⇒ Boolean): Chunk[A]

    Permalink

    Returns a filtered subset of this chunk.

    Returns a filtered subset of this chunk.

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

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  65. final def filterZIO[R, E](f: (A) ⇒ ZIO[R, E, Boolean])(implicit trace: ZTraceElement): ZIO[R, E, Chunk[A]]

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

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

    Permalink

    Returns the first element that satisfies the predicate.

    Returns the first element that satisfies the predicate.

    Definition Classes
    Chunk → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  68. final def findZIO[R, E](f: (A) ⇒ ZIO[R, E, Boolean])(implicit trace: ZTraceElement): ZIO[R, E, Option[A]]

    Permalink

    Returns the first element that satisfies the effectful predicate.

    Returns the first element that satisfies the effectful predicate.

    Definition Classes
    Chunk
  69. final def flatMap[B, That](f: (A) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Chunk[A], 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
  70. final def flatMapChunk[B, That](f: (A) ⇒ GenTraversableOnce[B]): Chunk[B]

    Permalink

    The implementation of flatMap for Chunk.

    The implementation of flatMap for Chunk.

    Attributes
    protected
    Definition Classes
    ChunkLike
  71. def flatten[B](implicit ev: (A) ⇒ GenTraversableOnce[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
    ChunkLike → GenericTraversableTemplate
  72. def float(index: Int)(implicit ev: <:<[A, Float]): Float

    Permalink

    Get the element at the specified index.

    Get the element at the specified index.

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

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  74. def foldLeft[S](s0: S)(f: (S, A) ⇒ 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
  75. def foldRight[S](s0: S)(f: (A, 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
  76. final def foldWhile[S](s0: S)(pred: (S) ⇒ Boolean)(f: (S, A) ⇒ 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
  77. final def foldWhileZIO[R, E, S](z: S)(pred: (S) ⇒ Boolean)(f: (S, A) ⇒ ZIO[R, E, S])(implicit trace: ZTraceElement): ZIO[R, E, S]

    Permalink
    Definition Classes
    Chunk
  78. final def foldZIO[R, E, S](s: S)(f: (S, A) ⇒ ZIO[R, E, S])(implicit trace: ZTraceElement): 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
  79. final def forall(f: (A) ⇒ 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
  80. def foreach[B](f: (A) ⇒ B): Unit

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

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

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

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

    Permalink
    Definition Classes
    IterableLike
  85. def hasDefiniteSize: Boolean

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  86. def hasNextAt(index: Int): Boolean

    Permalink

    Checks if the chunk iterator has another element.

    Checks if the chunk iterator has another element.

    Definition Classes
    AnyRefArrayChunkIterator
  87. final def hashCode(): Int

    Permalink
    Definition Classes
    Chunk → IndexedSeqLike → GenSeqLike → AnyRef → Any
  88. def head: A

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

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

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

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

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

    Permalink
    Definition Classes
    SeqLike
  94. final def indexWhere(f: (A) ⇒ 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
  95. final def indexWhere(f: (A) ⇒ 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
  96. def indices: Range

    Permalink
    Definition Classes
    SeqLike
  97. def init: Chunk[A]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  98. def inits: Iterator[Chunk[A]]

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

    Permalink

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  100. def intersect[B >: A](that: GenSeq[B]): Chunk[A]

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

    Permalink
    Definition Classes
    GenSeqLike
  102. 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
  103. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  104. final def isTraversableAgain: Boolean

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  105. def iterator: Iterator[A]

    Permalink
    Definition Classes
    Arr → IndexedSeqLike → IterableLike → GenIterableLike
  106. def last: A

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

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

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

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

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

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

    Permalink
    Definition Classes
    GenSeqLike
  113. final def lastOption: Option[A]

    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
  114. def left: Chunk[A]

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

    Permalink

    The length of the iterator.

    The length of the iterator.

    Definition Classes
    AnyRefArrayChunkIterator → SeqLike → GenSeqLike
  116. def lengthCompare(len: Int): Int

    Permalink
    Definition Classes
    SeqLike
  117. def lift: (Int) ⇒ Option[A]

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

    Permalink

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  119. final def map[B, That](f: (A) ⇒ B)(implicit bf: CanBuildFrom[Chunk[A], 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
  120. final def mapAccum[S1, B](s1: S1)(f1: (S1, A) ⇒ (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
  121. final def mapAccumM[R, E, S1, B](s1: S1)(f1: (S1, A) ⇒ ZIO[R, E, (S1, B)])(implicit trace: ZTraceElement): 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
  122. final def mapAccumZIO[R, E, S1, B](s1: S1)(f1: (S1, A) ⇒ ZIO[R, E, (S1, B)])(implicit trace: ZTraceElement): 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
  123. def mapChunk[B](f: (A) ⇒ 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
  124. final def mapZIO[R, E, B](f: (A) ⇒ ZIO[R, E, B])(implicit trace: ZTraceElement): ZIO[R, E, Chunk[B]]

    Permalink

    Effectfully maps the elements of this chunk.

    Effectfully maps the elements of this chunk.

    Definition Classes
    Chunk
  125. final def mapZIODiscard[R, E](f: (A) ⇒ ZIO[R, E, Any])(implicit trace: ZTraceElement): 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
  126. final def mapZIOPar[R, E, B](f: (A) ⇒ ZIO[R, E, B])(implicit trace: ZTraceElement): 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
  127. final def mapZIOParDiscard[R, E](f: (A) ⇒ ZIO[R, E, Any])(implicit trace: ZTraceElement): 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
  128. def materialize[A1 >: A]: 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
  129. def max[B >: A](implicit cmp: Ordering[B]): A

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

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

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

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  133. 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
  134. 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
  135. 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
  136. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  137. def newBuilder: ChunkBuilder[A]

    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
  138. def nextAt(index: Int): A

    Permalink

    Gets the next element from the chunk iterator.

    Gets the next element from the chunk iterator.

    Definition Classes
    AnyRefArrayChunkIterator
  139. final def nonEmpty: Boolean

    Permalink

    Determines if the chunk is not empty.

    Determines if the chunk is not empty.

    Definition Classes
    ChunkLike → TraversableOnce → GenTraversableOnce
  140. def nonEmptyOrElse[B](ifEmpty: ⇒ B)(fn: (NonEmptyChunk[A]) ⇒ 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
  141. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  143. val offset: Int

    Permalink
  144. def orElse[A1 <: Int, B1 >: A](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]

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

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  146. def par: ParSeq[A]

    Permalink
    Definition Classes
    Parallelizable
  147. def parCombiner: Combiner[A, ParSeq[A]]

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

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  149. final def partitionMap[B, C](f: (A) ⇒ 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
  150. def patch[B >: A, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[Chunk[A], B, That]): That

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  151. def permutations: Iterator[Chunk[A]]

    Permalink
    Definition Classes
    SeqLike
  152. def prefixLength(p: (A) ⇒ Boolean): Int

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

    Permalink

    Prepends an element to the chunk.

    Prepends an element to the chunk.

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  161. def repr: Chunk[A]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  162. def reverse: Chunk[A]

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  163. def reverseIterator: Iterator[A]

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

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  165. def reversed: List[A]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  166. def right: Chunk[A]

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

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

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

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

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  171. def scanRight[B, That](z: B)(op: (A, B) ⇒ B)(implicit bf: CanBuildFrom[Chunk[A], 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.

  172. def segmentLength(p: (A) ⇒ Boolean, from: Int): Int

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  173. def seq: IndexedSeq[A]

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

    Permalink

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  175. 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
  176. def slice(from: Int, until: Int): Chunk[A]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  177. def sliceIterator(offset: Int, length: Int): ChunkIterator[A]

    Permalink

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

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

    Definition Classes
    AnyRefArrayChunkIterator
  178. def sliding(size: Int, step: Int): Iterator[Chunk[A]]

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

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

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

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

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

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

    Permalink

    Splits this chunk into n equally sized chunks.

    Splits this chunk into n equally sized chunks.

    Definition Classes
    Chunk
  185. final def splitAt(n: Int): (Chunk[A], Chunk[A])

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

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

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

    Permalink
    Definition Classes
    GenSeqLike
  189. def stringPrefix: String

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

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

    Permalink
    Definition Classes
    AnyRef
  192. def tail: Chunk[A]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  193. def tails: Iterator[Chunk[A]]

    Permalink
    Definition Classes
    TraversableLike
  194. def take(n: Int): Chunk[A]

    Permalink

    Takes the first n elements of the chunk.

    Takes the first n elements of the chunk.

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

    Permalink

    Takes the last n elements of the chunk.

    Takes the last n elements of the chunk.

    Definition Classes
    Chunk → IterableLike
  196. def takeWhile(f: (A) ⇒ Boolean): Chunk[A]

    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
  197. def takeWhileZIO[R, E](p: (A) ⇒ ZIO[R, E, Boolean])(implicit trace: ZTraceElement): ZIO[R, E, Chunk[A]]

    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
  198. def thisCollection: IndexedSeq[A]

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

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

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

    Permalink

    Converts the chunk into an array.

    Converts the chunk into an array.

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

    Permalink

    Renders this chunk of bits as a binary string.

    Renders this chunk of bits as a binary string.

    Definition Classes
    Chunk
  203. def toBuffer[A1 >: A]: Buffer[A1]

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

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

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

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  207. def toIterator: Iterator[A]

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

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

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  210. def toSeq: Seq[A]

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

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  212. def toStream: Stream[A]

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

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

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

    Permalink
    Definition Classes
    Chunk → TraversableOnce → GenTraversableOnce
  216. def transpose[B](implicit asTraversable: (A) ⇒ 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.

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

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

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

    Permalink
    Definition Classes
    GenericTraversableTemplate
  220. def update[A1 >: A](index: Int, a1: A1): Chunk[A1]

    Permalink

    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
  221. final def updated[B >: A, That](index: Int, elem: B)(implicit bf: CanBuildFrom[Chunk[A], B, That]): That

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

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

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

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

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

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

    Permalink
    Definition Classes
    TraversableLike → FilterMonadic
  228. final def zip[B](that: Chunk[B])(implicit zippable: Zippable[A, 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
  229. def zip[A1 >: A, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Chunk[A], (A1, B), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  230. final def zipAll[B](that: Chunk[B]): Chunk[(Option[A], 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
  231. def zipAll[B, A1 >: A, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Chunk[A], (A1, B), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  232. final def zipAllWith[B, C](that: Chunk[B])(left: (A) ⇒ C, right: (B) ⇒ C)(both: (A, 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
  233. final def zipWith[B, C](that: Chunk[B])(f: (A, 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
  234. final def zipWithIndex: Chunk[(A, Int)]

    Permalink

    Zips this chunk with the index of every element.

    Zips this chunk with the index of every element.

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

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  236. final def zipWithIndexFrom(indexOffset: Int): Chunk[(A, 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[A, ZIO[R, E, B]])(implicit trace: ZTraceElement): 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[A, ZIO[R, E, B]])(implicit trace: ZTraceElement): 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: (A) ⇒ ZIO[R, E, Boolean])(implicit trace: ZTraceElement): ZIO[R, E, Chunk[A]]

    Permalink
    Definition Classes
    Chunk
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use dropWhileZIO

  4. final def filterM[R, E](f: (A) ⇒ ZIO[R, E, Boolean])(implicit trace: ZTraceElement): ZIO[R, E, Chunk[A]]

    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: (A) ⇒ ZIO[R, E, Boolean])(implicit trace: ZTraceElement): ZIO[R, E, Option[A]]

    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, A) ⇒ ZIO[R, E, S])(implicit trace: ZTraceElement): 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, A) ⇒ ZIO[R, E, S])(implicit trace: ZTraceElement): ZIO[R, E, S]

    Permalink
    Definition Classes
    Chunk
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use foldWhileZIO

  8. final def mapM[R, E, B](f: (A) ⇒ ZIO[R, E, B])(implicit trace: ZTraceElement): 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

  9. final def mapMPar[R, E, B](f: (A) ⇒ ZIO[R, E, B])(implicit trace: ZTraceElement): 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

  10. final def mapMPar_[R, E](f: (A) ⇒ ZIO[R, E, Any])(implicit trace: ZTraceElement): 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

  11. final def mapM_[R, E](f: (A) ⇒ ZIO[R, E, Any])(implicit trace: ZTraceElement): 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

  12. def takeWhileM[R, E](p: (A) ⇒ ZIO[R, E, Boolean])(implicit trace: ZTraceElement): ZIO[R, E, Chunk[A]]

    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 ChunkIterator[A]

Inherited from Arr[A]

Inherited from Chunk[A]

Inherited from Serializable

Inherited from Serializable

Inherited from ChunkLike[A]

Inherited from IndexedSeq[A]

Inherited from IndexedSeq[A]

Inherited from IndexedSeqLike[A, Chunk[A]]

Inherited from Seq[A]

Inherited from Seq[A]

Inherited from SeqLike[A, Chunk[A]]

Inherited from GenSeq[A]

Inherited from GenSeqLike[A, Chunk[A]]

Inherited from PartialFunction[Int, A]

Inherited from (Int) ⇒ A

Inherited from Iterable[A]

Inherited from Iterable[A]

Inherited from IterableLike[A, Chunk[A]]

Inherited from Equals

Inherited from GenIterable[A]

Inherited from GenIterableLike[A, Chunk[A]]

Inherited from Traversable[A]

Inherited from Immutable

Inherited from Traversable[A]

Inherited from GenTraversable[A]

Inherited from GenericTraversableTemplate[A, Chunk]

Inherited from TraversableLike[A, Chunk[A]]

Inherited from GenTraversableLike[A, Chunk[A]]

Inherited from Parallelizable[A, ParSeq[A]]

Inherited from TraversableOnce[A]

Inherited from GenTraversableOnce[A]

Inherited from FilterMonadic[A, Chunk[A]]

Inherited from HasNewBuilder[A, Chunk[A]]

Inherited from AnyRef

Inherited from Any

Ungrouped