Packages

c

zio.Chunk

BooleanArray

final case class BooleanArray(array: Array[Boolean]) extends Arr[Boolean] with Product with Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BooleanArray
  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 BooleanArray(array: Array[Boolean])

Value Members

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

    Appends an element to the chunk

    Appends an element to the chunk

    Definition Classes
    Chunk
  4. final def ++[A1 >: Boolean](that: NonEmptyChunk[A1]): NonEmptyChunk[A1]
    Definition Classes
    Chunk
  5. final def ++[A1 >: Boolean](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
  6. final def ++[B >: Boolean](suffix: IterableOnce[B]): Chunk[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  7. final def ++:[B >: Boolean](prefix: IterableOnce[B]): Chunk[B]
    Definition Classes
    SeqOps → IterableOps
    Annotations
    @inline()
  8. final def +:[B >: Boolean](elem: B): Chunk[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  9. final def :+[B >: Boolean](elem: B): Chunk[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  10. final def :++[B >: Boolean](suffix: IterableOnce[B]): Chunk[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  11. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. final def addString(b: StringBuilder): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  13. final def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  14. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    IterableOnceOps
  15. def andThen[C](k: PartialFunction[Boolean, C]): PartialFunction[Int, C]
    Definition Classes
    PartialFunction
  16. def andThen[C](k: (Boolean) => C): PartialFunction[Int, C]
    Definition Classes
    PartialFunction → Function1
  17. def appended[B >: Boolean](elem: B): Chunk[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  18. def appendedAll[B >: Boolean](suffix: IterableOnce[B]): Chunk[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  19. def apply(n: Int): Boolean
    Definition Classes
    Arr → SeqOps → Function1
  20. def applyOrElse[A1 <: Int, B1 >: Boolean](x: A1, default: (A1) => B1): B1
    Definition Classes
    PartialFunction
  21. def applyPreferredMaxLength: Int
    Attributes
    protected
    Definition Classes
    IndexedSeq
  22. val array: Array[Boolean]
    Definition Classes
    BooleanArray → Arr
  23. final def asBits(implicit ev: <:<[Boolean, 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: <:<[Boolean, Boolean]): Boolean

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    BooleanArrayChunk
  26. def byte(index: Int)(implicit ev: <:<[Boolean, 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: <:<[Boolean, 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[Boolean]
    Definition Classes
    Arr
  31. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  32. final def coll: BooleanArray.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  33. def collect[B](pf: PartialFunction[Boolean, 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[Boolean, 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[Boolean, B]): Option[B]
    Definition Classes
    IterableOnceOps
  36. def collectM[R, E, B](pf: PartialFunction[Boolean, 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[Boolean, 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[Boolean, ZIO[R, E, B]]): ZIO[R, E, Chunk[B]]
    Definition Classes
    Arr → Chunk
  39. def combinations(n: Int): Iterator[Chunk[Boolean]]
    Definition Classes
    SeqOps
  40. def compose[R](k: PartialFunction[R, Int]): PartialFunction[R, Boolean]
    Definition Classes
    PartialFunction
  41. def compose[A](g: (A) => Int): (A) => Boolean
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  42. final def concat[B >: Boolean](suffix: IterableOnce[B]): Chunk[B]
    Definition Classes
    SeqOps → IterableOps
    Annotations
    @inline()
  43. def contains[A1 >: Boolean](elem: A1): Boolean
    Definition Classes
    SeqOps
  44. def containsSlice[B](that: Seq[B]): Boolean
    Definition Classes
    SeqOps
  45. def copyToArray[B >: Boolean](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  46. def copyToArray[B >: Boolean](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
  47. def copyToArray[B >: Boolean](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
  48. final def corresponds[B](that: Chunk[B])(f: (Boolean, 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: (Boolean, B) => Boolean): Boolean
    Definition Classes
    SeqOps
  50. def corresponds[B](that: IterableOnce[B])(p: (Boolean, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  51. def count(p: (Boolean) => Boolean): Int
    Definition Classes
    IterableOnceOps
  52. def diff[B >: Boolean](that: Seq[B]): Chunk[Boolean]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  53. def distinct: Chunk[Boolean]
    Definition Classes
    SeqOps
  54. def distinctBy[B](f: (Boolean) => B): Chunk[Boolean]
    Definition Classes
    StrictOptimizedSeqOps → StrictOptimizedSeqOps → SeqOps
  55. def double(index: Int)(implicit ev: <:<[Boolean, Double]): Double

    Get the element at the specified index.

    Get the element at the specified index.

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

    Drops the first n elements of the chunk.

    Drops the first n elements of the chunk.

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

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

    Returns a filtered subset of this chunk.

    Returns a filtered subset of this chunk.

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

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

    Returns the first element that satisfies the predicate.

    Returns the first element that satisfies the predicate.

    Definition Classes
    Chunk → IterableOnceOps
  72. def findLast(p: (Boolean) => Boolean): Option[Boolean]
    Definition Classes
    SeqOps
  73. final def flatMap[B](f: (Boolean) => 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
  74. final def flatten[B](implicit ev: <:<[Boolean, 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
  75. def flatten[B](implicit toIterableOnce: (Boolean) => IterableOnce[B]): Chunk[B]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  76. def float(index: Int)(implicit ev: <:<[Boolean, Float]): Float

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  77. def fold[A1 >: Boolean](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  78. def foldLeft[S](s0: S)(f: (S, Boolean) => 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
  79. final def foldM[R, E, S](s: S)(f: (S, Boolean) => 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
  80. def foldRight[S](s0: S)(f: (Boolean, 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 → IterableOnceOps
  81. final def foldWhile[S](s0: S)(pred: (S) => Boolean)(f: (S, Boolean) => 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
  82. final def foldWhileM[R, E, S](z: S)(pred: (S) => Boolean)(f: (S, Boolean) => ZIO[R, E, S]): ZIO[R, E, S]
    Definition Classes
    Chunk
  83. final def forall(f: (Boolean) => 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
  84. def foreach[B](f: (Boolean) => B): Unit
    Definition Classes
    Arr → IterableOnceOps
  85. def fromSpecific(coll: IterableOnce[Boolean]): Chunk[Boolean]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  86. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  87. def groupBy[K](f: (Boolean) => K): Map[K, Chunk[Boolean]]
    Definition Classes
    IterableOps
  88. def groupMap[K, B](key: (Boolean) => K)(f: (Boolean) => B): Map[K, Chunk[B]]
    Definition Classes
    IterableOps
  89. def groupMapReduce[K, B](key: (Boolean) => K)(f: (Boolean) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  90. def grouped(size: Int): Iterator[Chunk[Boolean]]
    Definition Classes
    IterableOps
  91. final def hashCode(): Int
    Definition Classes
    Chunk → Seq → AnyRef → Any
  92. def head: Boolean
    Definition Classes
    IterableOps
  93. final def headOption: Option[Boolean]

    Returns the first element of this chunk if it exists.

    Returns the first element of this chunk if it exists.

    Definition Classes
    Chunk → IterableOps
  94. def indexOf[B >: Boolean](elem: B): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override indexOf(elem, from) instead - indexOf(elem) calls indexOf(elem, 0)", "2.13.0")
  95. def indexOf[B >: Boolean](elem: B, from: Int): Int
    Definition Classes
    SeqOps
  96. def indexOfSlice[B >: Boolean](that: Seq[B]): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override indexOfSlice(that, from) instead - indexOfSlice(that) calls indexOfSlice(that, 0)", "2.13.0")
  97. def indexOfSlice[B >: Boolean](that: Seq[B], from: Int): Int
    Definition Classes
    SeqOps
  98. final def indexWhere(f: (Boolean) => 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
  99. def indexWhere(p: (Boolean) => Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override indexWhere(p, from) instead - indexWhere(p) calls indexWhere(p, 0)", "2.13.0")
  100. def indices: Range
    Definition Classes
    SeqOps
  101. def init: Chunk[Boolean]
    Definition Classes
    IterableOps
  102. def inits: Iterator[Chunk[Boolean]]
    Definition Classes
    IterableOps
  103. def int(index: Int)(implicit ev: <:<[Boolean, Int]): Int

    Get the element at the specified index.

    Get the element at the specified index.

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

    Determines if the chunk is empty.

    Determines if the chunk is empty.

    Definition Classes
    Chunk → SeqOps → IterableOnceOps
  107. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  108. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  109. 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 beacuse it allocates mutable state.

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

    Returns the last element of this chunk if it exists.

    Returns the last element of this chunk if it exists.

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

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  126. final def map[B](f: (Boolean) => 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
  127. final def mapAccum[S1, B](s1: S1)(f1: (S1, Boolean) => (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
  128. final def mapAccumM[R, E, S1, B](s1: S1)(f1: (S1, Boolean) => 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
  129. def mapChunk[B](f: (Boolean) => 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
  130. final def mapM[R, E, B](f: (Boolean) => 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
  131. final def mapMPar[R, E, B](f: (Boolean) => 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
  132. final def mapMPar_[R, E](f: (Boolean) => 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
  133. final def mapM_[R, E](f: (Boolean) => 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
  134. def materialize[A1 >: Boolean]: 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
  135. def max[B >: Boolean](implicit ord: Ordering[B]): Boolean
    Definition Classes
    IterableOnceOps
  136. def maxBy[B](f: (Boolean) => B)(implicit cmp: Ordering[B]): Boolean
    Definition Classes
    IterableOnceOps
  137. def maxByOption[B](f: (Boolean) => B)(implicit cmp: Ordering[B]): Option[Boolean]
    Definition Classes
    IterableOnceOps
  138. def maxOption[B >: Boolean](implicit ord: Ordering[B]): Option[Boolean]
    Definition Classes
    IterableOnceOps
  139. def min[B >: Boolean](implicit ord: Ordering[B]): Boolean
    Definition Classes
    IterableOnceOps
  140. def minBy[B](f: (Boolean) => B)(implicit cmp: Ordering[B]): Boolean
    Definition Classes
    IterableOnceOps
  141. def minByOption[B](f: (Boolean) => B)(implicit cmp: Ordering[B]): Option[Boolean]
    Definition Classes
    IterableOnceOps
  142. def minOption[B >: Boolean](implicit ord: Ordering[B]): Option[Boolean]
    Definition Classes
    IterableOnceOps
  143. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  144. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  145. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  146. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  147. def newSpecificBuilder: Builder[Boolean, Chunk[Boolean]]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  148. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  149. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  150. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  151. def occCounts[B](sq: Seq[B]): Map[B, Int]
    Attributes
    protected[collection]
    Definition Classes
    SeqOps
  152. def orElse[A1 <: Int, B1 >: Boolean](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
    Definition Classes
    PartialFunction
  153. def padTo[B >: Boolean](len: Int, elem: B): Chunk[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  154. def partition(p: (Boolean) => Boolean): (Chunk[Boolean], Chunk[Boolean])
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  155. def partitionMap[A1, A2](f: (Boolean) => Either[A1, A2]): (Chunk[A1], Chunk[A2])
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  156. def patch[B >: Boolean](from: Int, other: IterableOnce[B], replaced: Int): Chunk[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  157. def permutations: Iterator[Chunk[Boolean]]
    Definition Classes
    SeqOps
  158. def prepended[B >: Boolean](elem: B): Chunk[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  159. def prependedAll[B >: Boolean](prefix: IterableOnce[B]): Chunk[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  160. def product[B >: Boolean](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  161. def productElementNames: Iterator[String]
    Definition Classes
    Product
  162. def reduce[B >: Boolean](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  163. def reduceLeft[B >: Boolean](op: (B, Boolean) => B): B
    Definition Classes
    IterableOnceOps
  164. def reduceLeftOption[B >: Boolean](op: (B, Boolean) => B): Option[B]
    Definition Classes
    IterableOnceOps
  165. def reduceOption[B >: Boolean](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  166. def reduceRight[B >: Boolean](op: (Boolean, B) => B): B
    Definition Classes
    IterableOnceOps
  167. def reduceRightOption[B >: Boolean](op: (Boolean, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  168. def reverse: Chunk[Boolean]
    Definition Classes
    IndexedSeqOps → SeqOps
  169. def reverseIterator: Iterator[Boolean]
    Definition Classes
    IndexedSeqOps → SeqOps
  170. def reversed: Iterable[Boolean]
    Attributes
    protected
    Definition Classes
    IndexedSeqOps → IterableOnceOps
  171. def runWith[U](action: (Boolean) => U): (Int) => Boolean
    Definition Classes
    PartialFunction
  172. def sameElements[B >: Boolean](o: IterableOnce[B]): Boolean
    Definition Classes
    IndexedSeq → SeqOps
  173. def scan[B >: Boolean](z: B)(op: (B, B) => B): Chunk[B]
    Definition Classes
    IterableOps
  174. def scanLeft[B](z: B)(op: (B, Boolean) => B): Chunk[B]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  175. def scanRight[B](z: B)(op: (Boolean, B) => B): Chunk[B]
    Definition Classes
    IterableOps
  176. def search[B >: Boolean](elem: B, from: Int, to: Int)(implicit ord: Ordering[B]): SearchResult
    Definition Classes
    IndexedSeqOps → SeqOps
  177. def search[B >: Boolean](elem: B)(implicit ord: Ordering[B]): SearchResult
    Definition Classes
    IndexedSeqOps → SeqOps
  178. def segmentLength(p: (Boolean) => Boolean, from: Int): Int
    Definition Classes
    SeqOps
  179. final def segmentLength(p: (Boolean) => Boolean): Int
    Definition Classes
    SeqOps
  180. def short(index: Int)(implicit ev: <:<[Boolean, Short]): Short

    Get the element at the specified index.

    Get the element at the specified index.

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

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

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

    Takes the first n elements of the chunk.

    Takes the first n elements of the chunk.

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

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

    Converts the chunk into an array.

    Converts the chunk into an array.

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

    Renders this chunk of bits as a binary string.

    Renders this chunk of bits as a binary string.

    Definition Classes
    Chunk
  215. final def toBuffer[B >: Boolean]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  216. final def toIndexedSeq: IndexedSeq[Boolean]
    Definition Classes
    IndexedSeq → IterableOnceOps
  217. final def toIterable: BooleanArray.this.type
    Definition Classes
    Iterable → IterableOps
  218. final def toList: List[Boolean]
    Definition Classes
    Chunk → IterableOnceOps
  219. def toMap[K, V](implicit ev: <:<[Boolean, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  220. final def toSeq: BooleanArray.this.type
    Definition Classes
    Seq → IterableOnceOps
  221. def toSet[B >: Boolean]: Set[B]
    Definition Classes
    IterableOnceOps
  222. final def toString(): String
    Definition Classes
    Chunk → Seq → Function1 → Iterable → AnyRef → Any
  223. final def toVector: Vector[Boolean]
    Definition Classes
    Chunk → IterableOnceOps
  224. def transpose[B](implicit asIterable: (Boolean) => Iterable[B]): Chunk[Chunk[B]]
    Definition Classes
    IterableOps
  225. def unapply(a: Int): Option[Boolean]
    Definition Classes
    PartialFunction
  226. def unzip[A1, A2](implicit asPair: (Boolean) => (A1, A2)): (Chunk[A1], Chunk[A2])
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  227. def unzip3[A1, A2, A3](implicit asTriple: (Boolean) => (A1, A2, A3)): (Chunk[A1], Chunk[A2], Chunk[A3])
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  228. def updated[B >: Boolean](index: Int, elem: B): Chunk[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  229. def view: IndexedSeqView[Boolean]
    Definition Classes
    IndexedSeqOps → SeqOps → IterableOps
  230. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  231. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  232. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  233. def withFilter(p: (Boolean) => Boolean): WithFilter[Boolean, [_]Chunk[_]]
    Definition Classes
    IterableOps
  234. def zip[B](that: IterableOnce[B]): Chunk[(Boolean, B)]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  235. def zipAll[A1 >: Boolean, B](that: Iterable[B], thisElem: A1, thatElem: B): Chunk[(A1, B)]
    Definition Classes
    IterableOps
  236. def zipAllWith[B, C](that: Chunk[B])(left: (Boolean) => C, right: (B) => C)(both: (Boolean, B) => C): Chunk[C]
    Definition Classes
    Chunk
  237. final def zipWith[B, C](that: Chunk[B])(f: (Boolean, 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
  238. final def zipWithIndex: Chunk[(Boolean, 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
  239. final def zipWithIndexFrom(indexOffset: Int): Chunk[(Boolean, 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 /:[B](z: B)(op: (B, Boolean) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

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

    (Since version 2.13.0) Use foldRight instead of :\

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

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

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

    (Since version 2.13.0) Use iterableFactory instead

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

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

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

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

    (Since version 2.13.0) Use segmentLength instead of prefixLength

  8. final def repr: Chunk[Boolean]
    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

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

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

  10. def seq: BooleanArray.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

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

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

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

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

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

  13. final def toTraversable: Traversable[Boolean]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

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

    (Since version 2.13.0) Use concat instead

  15. def view(from: Int, until: Int): IndexedSeqView[Boolean]
    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[Boolean]

Inherited from Serializable

Inherited from Chunk[Boolean]

Inherited from ChunkLike[Boolean]

Inherited from IndexedSeq[Boolean]

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

Inherited from IndexedSeq[Boolean]

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

Inherited from Seq[Boolean]

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

Inherited from Seq[Boolean]

Inherited from Equals

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

Inherited from PartialFunction[Int, Boolean]

Inherited from (Int) => Boolean

Inherited from Iterable[Boolean]

Inherited from Iterable[Boolean]

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

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

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

Inherited from IterableOnce[Boolean]

Inherited from AnyRef

Inherited from Any

Ungrouped