Packages

c

zio.Chunk

IntArray

final case class IntArray(array: Array[Int]) extends Arr[Int] with Product with Serializable

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

Instance Constructors

  1. new IntArray(array: Array[Int])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ++[A1 >: Int](that: NonEmptyChunk[A1]): NonEmptyChunk[A1]
    Definition Classes
    Chunk
  4. final def ++[A1 >: Int](that: Chunk[A1]): Chunk[A1]

    Returns the concatenation of this chunk with the specified chunk.

    Returns the concatenation of this chunk with the specified chunk.

    Definition Classes
    Chunk
  5. final def ++[B >: Int](suffix: IterableOnce[B]): Chunk[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  6. final def ++:[B >: Int](prefix: IterableOnce[B]): Chunk[B]
    Definition Classes
    SeqOps → IterableOps
    Annotations
    @inline()
  7. final def +:[B >: Int](elem: B): Chunk[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  8. final def :+[B >: Int](elem: B): Chunk[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  9. final def :++[B >: Int](suffix: IterableOnce[B]): Chunk[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  10. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. final def addString(b: StringBuilder): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  12. final def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  13. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    IterableOnceOps
  14. def andThen[C](k: PartialFunction[Int, C]): PartialFunction[Int, C]
    Definition Classes
    PartialFunction
  15. def andThen[C](k: (Int) => C): PartialFunction[Int, C]
    Definition Classes
    PartialFunction → Function1
  16. def append[A1 >: Int](a1: A1): Chunk[A1]

    Appends an element to the chunk.

    Appends an element to the chunk.

    Attributes
    protected
    Definition Classes
    Chunk
  17. final def appended[A1 >: Int](a1: A1): Chunk[A1]
    Definition Classes
    ChunkLike → StrictOptimizedSeqOps → SeqOps
  18. def appendedAll[B >: Int](suffix: IterableOnce[B]): Chunk[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  19. def apply(n: Int): Int
    Definition Classes
    Arr → SeqOps → Function1
  20. def applyOrElse[A1 <: Int, B1 >: Int](x: A1, default: (A1) => B1): B1
    Definition Classes
    PartialFunction
  21. def applyPreferredMaxLength: Int
    Attributes
    protected
    Definition Classes
    IndexedSeq
  22. val array: Array[Int]
    Definition Classes
    IntArray → Arr
  23. final def asBits(implicit ev: <:<[Int, Byte]): Chunk[Boolean]

    Converts a chunk of bytes to a chunk of bits.

    Converts a chunk of bytes to a chunk of bits.

    Definition Classes
    Chunk
  24. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  25. def boolean(index: Int)(implicit ev: <:<[Int, Boolean]): Boolean

    Get the element at the specified index.

    Get the element at the specified index.

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

    Get the element at the specified index.

    Get the element at the specified index.

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

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  29. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  30. implicit val classTag: ClassTag[Int]
    Definition Classes
    Arr
  31. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  32. final def coll: IntArray.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  33. def collect[B](pf: PartialFunction[Int, B]): Chunk[B]

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

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

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

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

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

    Attributes
    protected
    Definition Classes
    Arr → Chunk
  35. def collectFirst[B](pf: PartialFunction[Int, B]): Option[B]
    Definition Classes
    IterableOnceOps
  36. def collectM[R, E, B](pf: PartialFunction[Int, ZIO[R, E, B]]): ZIO[R, E, Chunk[B]]

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

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

    Definition Classes
    Arr → Chunk
  37. def collectWhile[B](pf: PartialFunction[Int, B]): Chunk[B]

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

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

    Definition Classes
    Arr → Chunk
  38. def collectWhileM[R, E, B](pf: PartialFunction[Int, ZIO[R, E, B]]): ZIO[R, E, Chunk[B]]
    Definition Classes
    Arr → Chunk
  39. def combinations(n: Int): Iterator[Chunk[Int]]
    Definition Classes
    SeqOps
  40. def compose[R](k: PartialFunction[R, Int]): PartialFunction[R, Int]
    Definition Classes
    PartialFunction
  41. def compose[A](g: (A) => Int): (A) => Int
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  42. final def concat[B >: Int](suffix: IterableOnce[B]): Chunk[B]
    Definition Classes
    SeqOps → IterableOps
    Annotations
    @inline()
  43. def contains[A1 >: Int](elem: A1): Boolean
    Definition Classes
    SeqOps
  44. def containsSlice[B](that: Seq[B]): Boolean
    Definition Classes
    SeqOps
  45. def copyToArray[B >: Int](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  46. def copyToArray[B >: Int](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
  47. def copyToArray[B >: Int](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
  48. final def corresponds[B](that: Chunk[B])(f: (Int, B) => Boolean): Boolean

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

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

    Definition Classes
    Chunk
  49. def corresponds[B](that: Seq[B])(p: (Int, B) => Boolean): Boolean
    Definition Classes
    SeqOps
  50. def corresponds[B](that: IterableOnce[B])(p: (Int, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  51. def count(p: (Int) => Boolean): Int
    Definition Classes
    IterableOnceOps
  52. def depth: Int
    Attributes
    protected
    Definition Classes
    Chunk
  53. def diff[B >: Int](that: Seq[B]): Chunk[Int]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  54. def distinct: Chunk[Int]
    Definition Classes
    SeqOps
  55. def distinctBy[B](f: (Int) => B): Chunk[Int]
    Definition Classes
    StrictOptimizedSeqOps → StrictOptimizedSeqOps → SeqOps
  56. def double(index: Int)(implicit ev: <:<[Int, Double]): Double

    Get the element at the specified index.

    Get the element at the specified index.

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

    Drops the first n elements of the chunk.

    Drops the first n elements of the chunk.

    Definition Classes
    Chunk → IndexedSeqOps → IterableOps → IterableOnceOps
  58. def dropRight(n: Int): Chunk[Int]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  59. def dropWhile(f: (Int) => Boolean): Chunk[Int]

    Drops all elements so long as the predicate returns true.

    Drops all elements so long as the predicate returns true.

    Definition Classes
    Arr → Chunk → IterableOps → IterableOnceOps
  60. def dropWhileM[R, E](p: (Int) => ZIO[R, E, Boolean]): ZIO[R, E, Chunk[Int]]
    Definition Classes
    Chunk
  61. def elementWise: ElementWiseExtractor[Int, Int]
    Definition Classes
    PartialFunction
  62. def empty: Chunk[Int]
    Definition Classes
    IterableFactoryDefaults → IterableOps
  63. def endsWith[B >: Int](that: Iterable[B]): Boolean
    Definition Classes
    SeqOps
  64. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  65. final def equals(that: Any): Boolean
    Definition Classes
    Chunk → Seq → Equals → AnyRef → Any
  66. final def exists(f: (Int) => Boolean): Boolean

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

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

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

    Returns a filtered subset of this chunk.

    Returns a filtered subset of this chunk.

    Definition Classes
    Arr → Chunk → StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  68. def filterImpl(pred: (Int) => Boolean, isFlipped: Boolean): Chunk[Int]
    Attributes
    protected[collection]
    Definition Classes
    StrictOptimizedIterableOps
  69. final def filterM[R, E](f: (Int) => ZIO[R, E, Boolean]): ZIO[R, E, Chunk[Int]]

    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
  70. def filterNot(pred: (Int) => Boolean): Chunk[Int]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  71. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  72. final def find(f: (Int) => Boolean): Option[Int]

    Returns the first element that satisfies the predicate.

    Returns the first element that satisfies the predicate.

    Definition Classes
    Chunk → IterableOnceOps
  73. def findLast(p: (Int) => Boolean): Option[Int]
    Definition Classes
    SeqOps
  74. final def flatMap[B](f: (Int) => IterableOnce[B]): Chunk[B]

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

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

    Definition Classes
    ChunkLike → StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  75. final def flatten[B](implicit ev: <:<[Int, Chunk[B]]): Chunk[B]

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

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

    Definition Classes
    Chunk
  76. def flatten[B](implicit toIterableOnce: (Int) => IterableOnce[B]): Chunk[B]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  77. def float(index: Int)(implicit ev: <:<[Int, Float]): Float

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  78. def fold[A1 >: Int](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  79. def foldLeft[S](s0: S)(f: (S, Int) => S): S

    Folds over the elements in this chunk from the left.

    Folds over the elements in this chunk from the left.

    Definition Classes
    Arr → Chunk → IterableOnceOps
  80. final def foldM[R, E, S](s: S)(f: (S, Int) => ZIO[R, E, S]): ZIO[R, E, S]

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

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

    Definition Classes
    Chunk
  81. def foldRight[S](s0: S)(f: (Int, S) => S): S

    Folds over the elements in this chunk from the right.

    Folds over the elements in this chunk from the right.

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

    Folds over the elements in this chunk from the left.

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

    Definition Classes
    Chunk
  83. final def foldWhileM[R, E, S](z: S)(pred: (S) => Boolean)(f: (S, Int) => ZIO[R, E, S]): ZIO[R, E, S]
    Definition Classes
    Chunk
  84. final def forall(f: (Int) => Boolean): Boolean

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

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

    Definition Classes
    Chunk → IterableOnceOps
  85. def foreach[B](f: (Int) => B): Unit
    Definition Classes
    Arr → IterableOnceOps
  86. def fromSpecific(coll: IterableOnce[Int]): Chunk[Int]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  87. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  88. def groupBy[K](f: (Int) => K): Map[K, Chunk[Int]]
    Definition Classes
    IterableOps
  89. def groupMap[K, B](key: (Int) => K)(f: (Int) => B): Map[K, Chunk[B]]
    Definition Classes
    IterableOps
  90. def groupMapReduce[K, B](key: (Int) => K)(f: (Int) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  91. def grouped(size: Int): Iterator[Chunk[Int]]
    Definition Classes
    IterableOps
  92. final def hashCode(): Int
    Definition Classes
    Chunk → Seq → AnyRef → Any
  93. def head: Int
    Definition Classes
    IndexedSeqOps → IterableOps
  94. final def headOption: Option[Int]

    Returns the first element of this chunk if it exists.

    Returns the first element of this chunk if it exists.

    Definition Classes
    Chunk → IndexedSeqOps → IterableOps
  95. def indexOf[B >: Int](elem: B): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override indexOf(elem, from) instead - indexOf(elem) calls indexOf(elem, 0)", "2.13.0")
  96. def indexOf[B >: Int](elem: B, from: Int): Int
    Definition Classes
    SeqOps
  97. def indexOfSlice[B >: Int](that: Seq[B]): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override indexOfSlice(that, from) instead - indexOfSlice(that) calls indexOfSlice(that, 0)", "2.13.0")
  98. def indexOfSlice[B >: Int](that: Seq[B], from: Int): Int
    Definition Classes
    SeqOps
  99. final def indexWhere(f: (Int) => Boolean, from: Int): Int

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

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

    Definition Classes
    Chunk → SeqOps
  100. def indexWhere(p: (Int) => Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override indexWhere(p, from) instead - indexWhere(p) calls indexWhere(p, 0)", "2.13.0")
  101. def indices: Range
    Definition Classes
    SeqOps
  102. def init: Chunk[Int]
    Definition Classes
    IterableOps
  103. def inits: Iterator[Chunk[Int]]
    Definition Classes
    IterableOps
  104. def int(index: Int)(implicit ev: <:<[Int, Int]): Int

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    IntArrayChunk
  105. def intersect[B >: Int](that: Seq[B]): Chunk[Int]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  106. def isDefinedAt(idx: Int): Boolean
    Definition Classes
    SeqOps
  107. final def isEmpty: Boolean

    Determines if the chunk is empty.

    Determines if the chunk is empty.

    Definition Classes
    Chunk → SeqOps → IterableOnceOps
  108. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  109. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  110. val iterableFactory: SeqFactory[Chunk]

    Returns a SeqFactory that can construct Chunk values.

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

    Definition Classes
    ChunkLike → IndexedSeq → IndexedSeq → Seq → Seq → Iterable → Iterable → IterableOps
  111. def iterator: Iterator[Int]
    Definition Classes
    IndexedSeqOps → IterableOnce
  112. def knownSize: Int
    Definition Classes
    IndexedSeqOps → IterableOnce
  113. def last: Int
    Definition Classes
    IndexedSeqOps → IterableOps
  114. def lastIndexOf[B >: Int](elem: B, end: Int): Int
    Definition Classes
    SeqOps
  115. def lastIndexOfSlice[B >: Int](that: Seq[B]): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override lastIndexOfSlice(that, end) instead - lastIndexOfSlice(that) calls lastIndexOfSlice(that, Int.MaxValue)", "2.13.0")
  116. def lastIndexOfSlice[B >: Int](that: Seq[B], end: Int): Int
    Definition Classes
    SeqOps
  117. def lastIndexWhere(p: (Int) => Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override lastIndexWhere(p, end) instead - lastIndexWhere(p) calls lastIndexWhere(p, Int.MaxValue)", "2.13.0")
  118. def lastIndexWhere(p: (Int) => Boolean, end: Int): Int
    Definition Classes
    SeqOps
  119. final def lastOption: Option[Int]

    Returns the last element of this chunk if it exists.

    Returns the last element of this chunk if it exists.

    Definition Classes
    Chunk → IterableOps
  120. def lazyZip[B](that: Iterable[B]): LazyZip2[Int, B, IntArray.this.type]
    Definition Classes
    Iterable
  121. def left: Chunk[Int]
    Attributes
    protected
    Definition Classes
    Chunk
  122. val length: Int
    Definition Classes
    Arr → SeqOps
  123. final def lengthCompare(that: Iterable[_]): Int
    Definition Classes
    IndexedSeqOps → SeqOps
  124. final def lengthCompare(len: Int): Int
    Definition Classes
    IndexedSeqOps → SeqOps
  125. final def lengthIs: SizeCompareOps
    Definition Classes
    SeqOps
    Annotations
    @inline()
  126. def lift: (Int) => Option[Int]
    Definition Classes
    PartialFunction
  127. def long(index: Int)(implicit ev: <:<[Int, Long]): Long

    Get the element at the specified index.

    Get the element at the specified index.

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

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

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

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

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

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

    Definition Classes
    Chunk
  130. final def mapAccumM[R, E, S1, B](s1: S1)(f1: (S1, Int) => ZIO[R, E, (S1, B)]): ZIO[R, E, (S1, Chunk[B])]

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

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

    Definition Classes
    Chunk
  131. def mapChunk[B](f: (Int) => B): Chunk[B]

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

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

    Attributes
    protected
    Definition Classes
    Arr → Chunk
  132. final def mapM[R, E, B](f: (Int) => ZIO[R, E, B]): ZIO[R, E, Chunk[B]]

    Effectfully maps the elements of this chunk.

    Effectfully maps the elements of this chunk.

    Definition Classes
    Chunk
  133. final def mapMPar[R, E, B](f: (Int) => ZIO[R, E, B]): ZIO[R, E, Chunk[B]]

    Effectfully maps the elements of this chunk in parallel.

    Effectfully maps the elements of this chunk in parallel.

    Definition Classes
    Chunk
  134. final def mapMPar_[R, E](f: (Int) => ZIO[R, E, Any]): ZIO[R, E, Unit]

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

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

    Definition Classes
    Chunk
  135. final def mapM_[R, E](f: (Int) => ZIO[R, E, Any]): ZIO[R, E, Unit]

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

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

    Definition Classes
    Chunk
  136. def materialize[A1 >: Int]: Chunk[A1]

    Materializes a chunk into a chunk backed by an array.

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

    Definition Classes
    Arr → Chunk
  137. def max[B >: Int](implicit ord: Ordering[B]): Int
    Definition Classes
    IterableOnceOps
  138. def maxBy[B](f: (Int) => B)(implicit cmp: Ordering[B]): Int
    Definition Classes
    IterableOnceOps
  139. def maxByOption[B](f: (Int) => B)(implicit cmp: Ordering[B]): Option[Int]
    Definition Classes
    IterableOnceOps
  140. def maxOption[B >: Int](implicit ord: Ordering[B]): Option[Int]
    Definition Classes
    IterableOnceOps
  141. def min[B >: Int](implicit ord: Ordering[B]): Int
    Definition Classes
    IterableOnceOps
  142. def minBy[B](f: (Int) => B)(implicit cmp: Ordering[B]): Int
    Definition Classes
    IterableOnceOps
  143. def minByOption[B](f: (Int) => B)(implicit cmp: Ordering[B]): Option[Int]
    Definition Classes
    IterableOnceOps
  144. def minOption[B >: Int](implicit ord: Ordering[B]): Option[Int]
    Definition Classes
    IterableOnceOps
  145. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  146. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  147. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  148. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  149. def newSpecificBuilder: Builder[Int, Chunk[Int]]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  150. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  151. def nonEmptyOrElse[B](ifEmpty: => B)(fn: (NonEmptyChunk[Int]) => B): B

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

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

    Definition Classes
    Chunk
  152. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  153. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  154. def occCounts[B](sq: Seq[B]): Map[B, Int]
    Attributes
    protected[collection]
    Definition Classes
    SeqOps
  155. def orElse[A1 <: Int, B1 >: Int](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
    Definition Classes
    PartialFunction
  156. def padTo[B >: Int](len: Int, elem: B): Chunk[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  157. def partition(p: (Int) => Boolean): (Chunk[Int], Chunk[Int])
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  158. final def partitionMap[B, C](f: (Int) => Either[B, C]): (Chunk[B], Chunk[C])

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

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

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

    Prepends an element to the chunk.

    Prepends an element to the chunk.

    Attributes
    protected
    Definition Classes
    Chunk
  162. final def prepended[A1 >: Int](a1: A1): Chunk[A1]
    Definition Classes
    ChunkLike → StrictOptimizedSeqOps → IndexedSeqOps → SeqOps
  163. def prependedAll[B >: Int](prefix: IterableOnce[B]): Chunk[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  164. def product[B >: Int](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  165. def productElementNames: Iterator[String]
    Definition Classes
    Product
  166. def reduce[B >: Int](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  167. def reduceLeft[B >: Int](op: (B, Int) => B): B
    Definition Classes
    IterableOnceOps
  168. def reduceLeftOption[B >: Int](op: (B, Int) => B): Option[B]
    Definition Classes
    IterableOnceOps
  169. def reduceOption[B >: Int](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  170. def reduceRight[B >: Int](op: (Int, B) => B): B
    Definition Classes
    IterableOnceOps
  171. def reduceRightOption[B >: Int](op: (Int, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  172. def reverse: Chunk[Int]
    Definition Classes
    IndexedSeqOps → SeqOps
  173. def reverseIterator: Iterator[Int]
    Definition Classes
    IndexedSeqOps → SeqOps
  174. def reversed: Iterable[Int]
    Attributes
    protected
    Definition Classes
    IndexedSeqOps → IterableOnceOps
  175. def right: Chunk[Int]
    Attributes
    protected
    Definition Classes
    Chunk
  176. def runWith[U](action: (Int) => U): (Int) => Boolean
    Definition Classes
    PartialFunction
  177. def sameElements[B >: Int](o: IterableOnce[B]): Boolean
    Definition Classes
    IndexedSeq → SeqOps
  178. def scan[B >: Int](z: B)(op: (B, B) => B): Chunk[B]
    Definition Classes
    IterableOps
  179. def scanLeft[B](z: B)(op: (B, Int) => B): Chunk[B]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  180. def scanRight[B](z: B)(op: (Int, B) => B): Chunk[B]
    Definition Classes
    IterableOps
  181. def search[B >: Int](elem: B, from: Int, to: Int)(implicit ord: Ordering[B]): SearchResult
    Definition Classes
    IndexedSeqOps → SeqOps
  182. def search[B >: Int](elem: B)(implicit ord: Ordering[B]): SearchResult
    Definition Classes
    IndexedSeqOps → SeqOps
  183. def segmentLength(p: (Int) => Boolean, from: Int): Int
    Definition Classes
    SeqOps
  184. final def segmentLength(p: (Int) => Boolean): Int
    Definition Classes
    SeqOps
  185. def short(index: Int)(implicit ev: <:<[Int, Short]): Short

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  186. final def size: Int
    Definition Classes
    SeqOps → IterableOnceOps
  187. final def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    SeqOps → IterableOps
  188. final def sizeCompare(otherSize: Int): Int
    Definition Classes
    SeqOps → IterableOps
  189. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  190. def slice(from: Int, until: Int): Chunk[Int]
    Definition Classes
    IndexedSeqOps → IndexedSeqOps → IterableOps → IterableOnceOps
  191. def sliding(size: Int, step: Int): Iterator[Chunk[Int]]
    Definition Classes
    IterableOps
  192. def sliding(size: Int): Iterator[Chunk[Int]]
    Definition Classes
    IterableOps
  193. def sortBy[B](f: (Int) => B)(implicit ord: Ordering[B]): Chunk[Int]
    Definition Classes
    SeqOps
  194. def sortWith(lt: (Int, Int) => Boolean): Chunk[Int]
    Definition Classes
    SeqOps
  195. def sorted[B >: Int](implicit ord: Ordering[B]): Chunk[Int]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  196. def span(p: (Int) => Boolean): (Chunk[Int], Chunk[Int])
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  197. final def splitAt(n: Int): (Chunk[Int], Chunk[Int])

    Returns two splits of this chunk at the specified index.

    Returns two splits of this chunk at the specified index.

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

    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
  199. def startsWith[B >: Int](that: IterableOnce[B], offset: Int): Boolean
    Definition Classes
    SeqOps
  200. def stepper[S <: Stepper[_]](implicit shape: StepperShape[Int, S]): S with EfficientSplit
    Definition Classes
    IndexedSeqOps → IterableOnce
  201. final def strictOptimizedCollect[B, C2](b: Builder[B, C2], pf: PartialFunction[Int, B]): C2
    Attributes
    protected[this]
    Definition Classes
    StrictOptimizedIterableOps
    Annotations
    @inline()
  202. final def strictOptimizedConcat[B >: Int, C2](that: IterableOnce[B], b: Builder[B, C2]): C2
    Attributes
    protected[this]
    Definition Classes
    StrictOptimizedIterableOps
    Annotations
    @inline()
  203. final def strictOptimizedFlatMap[B, C2](b: Builder[B, C2], f: (Int) => IterableOnce[B]): C2
    Attributes
    protected[this]
    Definition Classes
    StrictOptimizedIterableOps
    Annotations
    @inline()
  204. final def strictOptimizedFlatten[B, C2](b: Builder[B, C2])(implicit toIterableOnce: (Int) => IterableOnce[B]): C2
    Attributes
    protected[this]
    Definition Classes
    StrictOptimizedIterableOps
    Annotations
    @inline()
  205. final def strictOptimizedMap[B, C2](b: Builder[B, C2], f: (Int) => B): C2
    Attributes
    protected[this]
    Definition Classes
    StrictOptimizedIterableOps
    Annotations
    @inline()
  206. final def strictOptimizedZip[B, C2](that: IterableOnce[B], b: Builder[(Int, B), C2]): C2
    Attributes
    protected[this]
    Definition Classes
    StrictOptimizedIterableOps
    Annotations
    @inline()
  207. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    IndexedSeq → Seq → Iterable
  208. def sum[B >: Int](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  209. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  210. def tail: Chunk[Int]
    Definition Classes
    IterableOps
  211. def tails: Iterator[Chunk[Int]]
    Definition Classes
    IterableOps
  212. def take(n: Int): Chunk[Int]

    Takes the first n elements of the chunk.

    Takes the first n elements of the chunk.

    Definition Classes
    Chunk → IndexedSeqOps → IterableOps → IterableOnceOps
  213. def takeRight(n: Int): Chunk[Int]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  214. def takeWhile(f: (Int) => Boolean): Chunk[Int]

    Takes all elements so long as the predicate returns true.

    Takes all elements so long as the predicate returns true.

    Definition Classes
    Arr → Chunk → IterableOps → IterableOnceOps
  215. def takeWhileM[R, E](p: (Int) => ZIO[R, E, Boolean]): ZIO[R, E, Chunk[Int]]

    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
  216. def tapEach[U](f: (Int) => U): Chunk[Int]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  217. def to[C1](factory: Factory[Int, C1]): C1
    Definition Classes
    IterableOnceOps
  218. def toArray[A1 >: Int](n: Int, dest: Array[A1]): Unit
    Attributes
    protected[zio]
    Definition Classes
    Arr → Chunk
  219. def toArray[A1 >: Int](implicit arg0: ClassTag[A1]): Array[A1]

    Converts the chunk into an array.

    Converts the chunk into an array.

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

    Renders this chunk of bits as a binary string.

    Renders this chunk of bits as a binary string.

    Definition Classes
    Chunk
  221. final def toBuffer[B >: Int]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  222. final def toIndexedSeq: IndexedSeq[Int]
    Definition Classes
    IndexedSeq → IterableOnceOps
  223. final def toIterable: IntArray.this.type
    Definition Classes
    Iterable → IterableOps
  224. final def toList: List[Int]
    Definition Classes
    Chunk → IterableOnceOps
  225. def toMap[K, V](implicit ev: <:<[Int, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  226. final def toSeq: IntArray.this.type
    Definition Classes
    Seq → IterableOnceOps
  227. def toSet[B >: Int]: Set[B]
    Definition Classes
    IterableOnceOps
  228. final def toString(): String
    Definition Classes
    Chunk → Seq → Function1 → Iterable → AnyRef → Any
  229. final def toVector: Vector[Int]
    Definition Classes
    Chunk → IterableOnceOps
  230. def transpose[B](implicit asIterable: (Int) => Iterable[B]): Chunk[Chunk[B]]
    Definition Classes
    IterableOps
  231. def unapply(a: Int): Option[Int]
    Definition Classes
    PartialFunction
  232. def unzip[A1, A2](implicit asPair: (Int) => (A1, A2)): (Chunk[A1], Chunk[A2])
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  233. def unzip3[A1, A2, A3](implicit asTriple: (Int) => (A1, A2, A3)): (Chunk[A1], Chunk[A2], Chunk[A3])
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  234. def updated[B >: Int](index: Int, elem: B): Chunk[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  235. def view: IndexedSeqView[Int]
    Definition Classes
    IndexedSeqOps → SeqOps → IterableOps
  236. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  237. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  238. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  239. def withFilter(p: (Int) => Boolean): WithFilter[Int, [_]Chunk[_]]
    Definition Classes
    IterableOps
  240. final def zip[B](that: Chunk[B]): Chunk[(Int, B)]

    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
  241. def zip[B](that: IterableOnce[B]): Chunk[(Int, B)]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  242. final def zipAll[B](that: Chunk[B]): Chunk[(Option[Int], Option[B])]

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

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

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

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

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

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

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

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

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

    Zips this chunk with the index of every element.

    Zips this chunk with the index of every element.

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

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

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

    Definition Classes
    Chunk

Deprecated Value Members

  1. final def +[A1 >: Int](a: A1): Chunk[A1]

    Appends an element to the chunk

    Appends an element to the chunk

    Definition Classes
    Chunk
    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) use :+

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

    (Since version 2.13.0) Use foldLeft instead of /:

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

    (Since version 2.13.0) Use foldRight instead of :\

  4. def aggregate[B](z: => B)(seqop: (B, Int) => B, combop: (B, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

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

    (Since version 2.13.0) Use iterableFactory instead

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

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

  7. def hasDefiniteSize: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)

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

    (Since version 2.13.0) Use segmentLength instead of prefixLength

  9. final def repr: Chunk[Int]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside

  10. def reverseMap[B](f: (Int) => B): Chunk[B]
    Definition Classes
    SeqOps
    Annotations
    @deprecated
    Deprecated

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

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

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

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

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

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

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

  14. final def toTraversable: Traversable[Int]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

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

    (Since version 2.13.0) Use concat instead

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

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

Inherited from Product

Inherited from Arr[Int]

Inherited from Serializable

Inherited from Chunk[Int]

Inherited from ChunkLike[Int]

Inherited from IndexedSeq[Int]

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

Inherited from IndexedSeq[Int]

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

Inherited from Seq[Int]

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

Inherited from Seq[Int]

Inherited from Equals

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

Inherited from PartialFunction[Int, Int]

Inherited from (Int) => Int

Inherited from Iterable[Int]

Inherited from Iterable[Int]

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

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

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

Inherited from IterableOnce[Int]

Inherited from AnyRef

Inherited from Any

Ungrouped