Packages

c

zio.Chunk

LongArray

final case class LongArray(array: Array[Long], offset: Int, length: Int) extends Arr[Long] with ChunkIterator[Long] with Product with Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LongArray
  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 LongArray(array: Array[Long], offset: Int, length: Int)

Type Members

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

Value Members

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

    Concatenates this chunk iterator with the specified chunk iterator.

    Concatenates this chunk iterator with the specified chunk iterator.

    Definition Classes
    ChunkIterator
  4. final def ++[A1 >: Long](that: NonEmptyChunk[A1]): NonEmptyChunk[A1]
    Definition Classes
    Chunk
  5. final def ++[A1 >: Long](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. def ++[B >: Long, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Chunk[Long], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  7. def ++:[B >: Long, That](that: Traversable[B])(implicit bf: CanBuildFrom[Chunk[Long], B, That]): That
    Definition Classes
    TraversableLike
  8. def ++:[B >: Long, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Chunk[Long], B, That]): That
    Definition Classes
    TraversableLike
  9. final def +:[A1 >: Long, That](a1: A1)(implicit bf: CanBuildFrom[Chunk[Long], A1, That]): That
    Definition Classes
    ChunkLike → SeqLike → GenSeqLike
  10. final def :+[A1 >: Long, That](a1: A1)(implicit bf: CanBuildFrom[Chunk[Long], A1, That]): That
    Definition Classes
    ChunkLike → SeqLike → GenSeqLike
  11. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. def addString(b: StringBuilder): StringBuilder
    Definition Classes
    TraversableOnce
  13. def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    TraversableOnce
  14. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    TraversableOnce
  15. def aggregate[B](z: ⇒ B)(seqop: (B, Long) ⇒ B, combop: (B, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  16. def andThen[C](k: (Long) ⇒ C): PartialFunction[Int, C]
    Definition Classes
    PartialFunction → Function1
  17. def append[A1 >: Long](a1: A1): Chunk[A1]

    Appends an element to the chunk.

    Appends an element to the chunk.

    Attributes
    protected
    Definition Classes
    Chunk
  18. def apply(index: Int): Long
    Definition Classes
    LongArray → SeqLike → GenSeqLike → Function1
  19. def applyOrElse[A1 <: Int, B1 >: Long](x: A1, default: (A1) ⇒ B1): B1
    Definition Classes
    PartialFunction
  20. val array: Array[Long]
    Definition Classes
    LongArray → Arr
  21. final def asBits(implicit ev: <:<[Long, 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
  22. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  23. def boolean(index: Int)(implicit ev: <:<[Long, Boolean]): Boolean

    Get the element at the specified index.

    Get the element at the specified index.

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

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  25. def canEqual(that: Any): Boolean
    Definition Classes
    IterableLike → Equals
  26. def char(index: Int)(implicit ev: <:<[Long, Char]): Char

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  27. def chunkIterator: ChunkIterator[Long]
    Definition Classes
    LongArrayChunk
  28. implicit val classTag: ClassTag[Long]
    Definition Classes
    Arr
  29. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  30. final def collect[B, That](pf: PartialFunction[Long, B])(implicit bf: CanBuildFrom[Chunk[Long], B, That]): That

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

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

    Definition Classes
    ChunkLike → TraversableLike → GenTraversableLike
  31. def collectChunk[B](pf: PartialFunction[Long, 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
  32. def collectFirst[B](pf: PartialFunction[Long, B]): Option[B]
    Definition Classes
    TraversableOnce
  33. def collectWhile[B](pf: PartialFunction[Long, 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
  34. def collectWhileZIO[R, E, B](pf: PartialFunction[Long, ZIO[R, E, B]])(implicit trace: Trace): ZIO[R, E, Chunk[B]]
    Definition Classes
    Arr → Chunk
  35. def collectZIO[R, E, B](pf: PartialFunction[Long, ZIO[R, E, B]])(implicit trace: Trace): ZIO[R, E, Chunk[B]]

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

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

    Definition Classes
    Arr → Chunk
  36. def combinations(n: Int): Iterator[Chunk[Long]]
    Definition Classes
    SeqLike
  37. def companion: GenericCompanion[Chunk]
    Definition Classes
    ChunkLike → IndexedSeq → IndexedSeq → Seq → Seq → GenSeq → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → GenericTraversableTemplate
  38. def compose[A](g: (A) ⇒ Int): (A) ⇒ Long
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  39. def contains[A1 >: Long](elem: A1): Boolean
    Definition Classes
    SeqLike
  40. def containsSlice[B](that: GenSeq[B]): Boolean
    Definition Classes
    SeqLike
  41. def copyToArray[B >: Long](xs: Array[B], start: Int, len: Int): Unit
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  42. def copyToArray[B >: Long](xs: Array[B]): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  43. def copyToArray[B >: Long](xs: Array[B], start: Int): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  44. def copyToBuffer[B >: Long](dest: Buffer[B]): Unit
    Definition Classes
    TraversableOnce
  45. final def corresponds[B](that: Chunk[B])(f: (Long, 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
  46. def corresponds[B](that: GenSeq[B])(p: (Long, B) ⇒ Boolean): Boolean
    Definition Classes
    SeqLike → GenSeqLike
  47. def count(p: (Long) ⇒ Boolean): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  48. def dedupe: Chunk[Long]

    Deduplicates adjacent elements that are identical.

    Deduplicates adjacent elements that are identical.

    Definition Classes
    Chunk
  49. def depth: Int
    Attributes
    protected
    Definition Classes
    Chunk
  50. def diff[B >: Long](that: GenSeq[B]): Chunk[Long]
    Definition Classes
    SeqLike → GenSeqLike
  51. def distinct: Chunk[Long]
    Definition Classes
    SeqLike → GenSeqLike
  52. def double(index: Int)(implicit ev: <:<[Long, Double]): Double

    Get the element at the specified index.

    Get the element at the specified index.

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

    Drops the first n elements of the chunk.

    Drops the first n elements of the chunk.

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

    Drops the last n elements of the chunk.

    Drops the last n elements of the chunk.

    Definition Classes
    Chunk → IterableLike
  55. def dropUntil(f: (Long) ⇒ Boolean): Chunk[Long]

    Drops all elements until the predicate returns true.

    Drops all elements until the predicate returns true.

    Definition Classes
    Chunk
  56. def dropUntilZIO[R, E](p: (Long) ⇒ ZIO[R, E, Boolean])(implicit trace: Trace): ZIO[R, E, Chunk[Long]]

    Drops all elements until the effectful predicate returns true.

    Drops all elements until the effectful predicate returns true.

    Definition Classes
    Chunk
  57. def dropWhile(f: (Long) ⇒ Boolean): Chunk[Long]

    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: (Long) ⇒ ZIO[R, E, Boolean])(implicit trace: Trace): ZIO[R, E, Chunk[Long]]

    Drops all elements so long as the effectful predicate returns true.

    Drops all elements so long as the effectful predicate returns true.

    Definition Classes
    Chunk
  59. def endsWith[B](that: GenSeq[B]): Boolean
    Definition Classes
    SeqLike → GenSeqLike
  60. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  61. final def equals(that: Any): Boolean
    Definition Classes
    Chunk → GenSeqLike → Equals → AnyRef → Any
  62. final def exists(f: (Long) ⇒ Boolean): Boolean

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

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

    Definition Classes
    Chunk → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  63. def filter(f: (Long) ⇒ Boolean): Chunk[Long]

    Returns a filtered subset of this chunk.

    Returns a filtered subset of this chunk.

    Definition Classes
    Arr → Chunk → TraversableLike → GenTraversableLike
  64. def filterNot(p: (Long) ⇒ Boolean): Chunk[Long]
    Definition Classes
    TraversableLike → GenTraversableLike
  65. final def filterZIO[R, E](f: (Long) ⇒ ZIO[R, E, Boolean])(implicit trace: Trace): ZIO[R, E, Chunk[Long]]

    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
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  67. final def find(f: (Long) ⇒ Boolean): Option[Long]

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

    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: (Long) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Chunk[Long], B, That]): That

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

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

    Definition Classes
    ChunkLike → TraversableLike → GenTraversableLike → FilterMonadic
  70. final def flatMapChunk[B, That](f: (Long) ⇒ GenTraversableOnce[B]): Chunk[B]

    The implementation of flatMap for Chunk.

    The implementation of flatMap for Chunk.

    Attributes
    protected
    Definition Classes
    ChunkLike
  71. def flatten[B](implicit ev: (Long) ⇒ GenTraversableOnce[B]): Chunk[B]

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

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

    Definition Classes
    ChunkLike → GenericTraversableTemplate
  72. def float(index: Int)(implicit ev: <:<[Long, Float]): Float

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  73. def fold[A1 >: Long](z: A1)(op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  74. def foldLeft[S](s0: S)(f: (S, Long) ⇒ S): S

    Folds over the elements in this chunk from the left.

    Folds over the elements in this chunk from the left.

    Definition Classes
    Arr → Chunk → TraversableOnce → GenTraversableOnce
  75. def foldRight[S](s0: S)(f: (Long, S) ⇒ S): S

    Folds over the elements in this chunk from the right.

    Folds over the elements in this chunk from the right.

    Definition Classes
    Arr → Chunk → IterableLike → TraversableOnce → GenTraversableOnce
  76. final def foldWhile[S](s0: S)(pred: (S) ⇒ Boolean)(f: (S, Long) ⇒ 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
  77. final def foldWhileZIO[R, E, S](z: S)(pred: (S) ⇒ Boolean)(f: (S, Long) ⇒ ZIO[R, E, S])(implicit trace: Trace): ZIO[R, E, S]
    Definition Classes
    Chunk
  78. final def foldZIO[R, E, S](s: S)(f: (S, Long) ⇒ ZIO[R, E, S])(implicit trace: Trace): ZIO[R, E, S]

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

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

    Definition Classes
    Chunk
  79. final def forall(f: (Long) ⇒ Boolean): Boolean

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

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

    Definition Classes
    Chunk → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  80. def foreach[B](f: (Long) ⇒ B): Unit
    Definition Classes
    Arr → IterableLike → GenericTraversableTemplate → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  81. def genericBuilder[B]: Builder[B, Chunk[B]]
    Definition Classes
    GenericTraversableTemplate
  82. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  83. def groupBy[K](f: (Long) ⇒ K): Map[K, Chunk[Long]]
    Definition Classes
    TraversableLike → GenTraversableLike
  84. def grouped(size: Int): Iterator[Chunk[Long]]
    Definition Classes
    IterableLike
  85. def hasDefiniteSize: Boolean
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  86. def hasNextAt(index: Int): Boolean

    Checks if the chunk iterator has another element.

    Checks if the chunk iterator has another element.

    Definition Classes
    LongArrayChunkIterator
  87. final def hashCode(): Int
    Definition Classes
    Chunk → IndexedSeqLike → GenSeqLike → AnyRef → Any
  88. def head: Long

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

    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 >: Long](elem: B, from: Int): Int
    Definition Classes
    GenSeqLike
  91. def indexOf[B >: Long](elem: B): Int
    Definition Classes
    GenSeqLike
  92. def indexOfSlice[B >: Long](that: GenSeq[B], from: Int): Int
    Definition Classes
    SeqLike
  93. def indexOfSlice[B >: Long](that: GenSeq[B]): Int
    Definition Classes
    SeqLike
  94. final def indexWhere(f: (Long) ⇒ Boolean, from: Int): Int

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

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

    Definition Classes
    Chunk → SeqLike → GenSeqLike
  95. final def indexWhere(f: (Long) ⇒ Boolean): Int

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

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

    Definition Classes
    ChunkLike → GenSeqLike
  96. def indices: Range
    Definition Classes
    SeqLike
  97. def init: Chunk[Long]
    Definition Classes
    TraversableLike → GenTraversableLike
  98. def inits: Iterator[Chunk[Long]]
    Definition Classes
    TraversableLike
  99. def int(index: Int)(implicit ev: <:<[Long, Int]): Int

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  100. def intersect[B >: Long](that: GenSeq[B]): Chunk[Long]
    Definition Classes
    SeqLike → GenSeqLike
  101. def isDefinedAt(idx: Int): Boolean
    Definition Classes
    GenSeqLike
  102. final def isEmpty: Boolean

    Determines if the chunk is empty.

    Determines if the chunk is empty.

    Definition Classes
    Chunk → SeqLike → IterableLike → GenericTraversableTemplate → TraversableLike → TraversableOnce → GenTraversableOnce
  103. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  104. final def isTraversableAgain: Boolean
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  105. def iterator: Iterator[Long]
    Definition Classes
    Arr → IndexedSeqLike → IterableLike → GenIterableLike
  106. def last: Long
    Definition Classes
    TraversableLike → GenTraversableLike
  107. def lastIndexOf[B >: Long](elem: B, end: Int): Int
    Definition Classes
    GenSeqLike
  108. def lastIndexOf[B >: Long](elem: B): Int
    Definition Classes
    GenSeqLike
  109. def lastIndexOfSlice[B >: Long](that: GenSeq[B], end: Int): Int
    Definition Classes
    SeqLike
  110. def lastIndexOfSlice[B >: Long](that: GenSeq[B]): Int
    Definition Classes
    SeqLike
  111. def lastIndexWhere(p: (Long) ⇒ Boolean, end: Int): Int
    Definition Classes
    SeqLike → GenSeqLike
  112. def lastIndexWhere(p: (Long) ⇒ Boolean): Int
    Definition Classes
    GenSeqLike
  113. final def lastOption: Option[Long]

    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[Long]
    Attributes
    protected
    Definition Classes
    Chunk
  115. val length: Int

    The length of the iterator.

    The length of the iterator.

    Definition Classes
    LongArrayChunkIterator → SeqLike → GenSeqLike
  116. def lengthCompare(len: Int): Int
    Definition Classes
    SeqLike
  117. def lift: (Int) ⇒ Option[Long]
    Definition Classes
    PartialFunction
  118. def long(index: Int)(implicit ev: <:<[Long, Long]): Long

    Get the element at the specified index.

    Get the element at the specified index.

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

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

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

    Definition Classes
    ChunkLike → TraversableLike → GenTraversableLike → FilterMonadic
  120. final def mapAccum[S1, B](s1: S1)(f1: (S1, Long) ⇒ (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
  121. final def mapAccumZIO[R, E, S1, B](s1: S1)(f1: (S1, Long) ⇒ ZIO[R, E, (S1, B)])(implicit trace: Trace): ZIO[R, E, (S1, Chunk[B])]

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

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

    Definition Classes
    Chunk
  122. def mapChunk[B](f: (Long) ⇒ 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
  123. final def mapZIO[R, E, B](f: (Long) ⇒ ZIO[R, E, B])(implicit trace: Trace): ZIO[R, E, Chunk[B]]

    Effectfully maps the elements of this chunk.

    Effectfully maps the elements of this chunk.

    Definition Classes
    Chunk
  124. final def mapZIODiscard[R, E](f: (Long) ⇒ ZIO[R, E, Any])(implicit trace: Trace): ZIO[R, E, Unit]

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

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

    Definition Classes
    Chunk
  125. final def mapZIOPar[R, E, B](f: (Long) ⇒ ZIO[R, E, B])(implicit trace: Trace): ZIO[R, E, Chunk[B]]

    Effectfully maps the elements of this chunk in parallel.

    Effectfully maps the elements of this chunk in parallel.

    Definition Classes
    Chunk
  126. final def mapZIOParDiscard[R, E](f: (Long) ⇒ ZIO[R, E, Any])(implicit trace: Trace): ZIO[R, E, Unit]

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

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

    Definition Classes
    Chunk
  127. def materialize[A1 >: Long]: 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
  128. def max[B >: Long](implicit cmp: Ordering[B]): Long
    Definition Classes
    TraversableOnce → GenTraversableOnce
  129. def maxBy[B](f: (Long) ⇒ B)(implicit cmp: Ordering[B]): Long
    Definition Classes
    TraversableOnce → GenTraversableOnce
  130. def min[B >: Long](implicit cmp: Ordering[B]): Long
    Definition Classes
    TraversableOnce → GenTraversableOnce
  131. def minBy[B](f: (Long) ⇒ B)(implicit cmp: Ordering[B]): Long
    Definition Classes
    TraversableOnce → GenTraversableOnce
  132. final def mkString: String

    Generates a readable string representation of this chunk.

    Generates a readable string representation of this chunk.

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

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

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

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

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

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

    Definition Classes
    ChunkLike → TraversableOnce → GenTraversableOnce
  135. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  136. def newBuilder: ChunkBuilder[Long]

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

    Gets the next element from the chunk iterator.

    Gets the next element from the chunk iterator.

    Definition Classes
    LongArrayChunkIterator
  138. final def nonEmpty: Boolean

    Determines if the chunk is not empty.

    Determines if the chunk is not empty.

    Definition Classes
    ChunkLike → TraversableOnce → GenTraversableOnce
  139. def nonEmptyOrElse[B](ifEmpty: ⇒ B)(fn: (NonEmptyChunk[Long]) ⇒ 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
  140. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  141. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  142. val offset: Int
  143. def orElse[A1 <: Int, B1 >: Long](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
    Definition Classes
    PartialFunction
  144. def padTo[B >: Long, That](len: Int, elem: B)(implicit bf: CanBuildFrom[Chunk[Long], B, That]): That
    Definition Classes
    SeqLike → GenSeqLike
  145. def par: ParSeq[Long]
    Definition Classes
    Parallelizable
  146. def parCombiner: Combiner[Long, ParSeq[Long]]
    Attributes
    protected[this]
    Definition Classes
    Seq → SeqLike → Iterable → TraversableLike → Parallelizable
  147. def partition(p: (Long) ⇒ Boolean): (Chunk[Long], Chunk[Long])
    Definition Classes
    TraversableLike → GenTraversableLike
  148. final def partitionMap[B, C](f: (Long) ⇒ Either[B, C]): (Chunk[B], Chunk[C])

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

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

    Definition Classes
    Chunk → ChunkLike
  149. def patch[B >: Long, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[Chunk[Long], B, That]): That
    Definition Classes
    SeqLike → GenSeqLike
  150. def permutations: Iterator[Chunk[Long]]
    Definition Classes
    SeqLike
  151. def prefixLength(p: (Long) ⇒ Boolean): Int
    Definition Classes
    GenSeqLike
  152. def prepend[A1 >: Long](a1: A1): Chunk[A1]

    Prepends an element to the chunk.

    Prepends an element to the chunk.

    Attributes
    protected
    Definition Classes
    Chunk
  153. def product[B >: Long](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  154. def reduce[A1 >: Long](op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  155. def reduceLeft[B >: Long](op: (B, Long) ⇒ B): B
    Definition Classes
    TraversableOnce
  156. def reduceLeftOption[B >: Long](op: (B, Long) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  157. def reduceOption[A1 >: Long](op: (A1, A1) ⇒ A1): Option[A1]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  158. def reduceRight[B >: Long](op: (Long, B) ⇒ B): B
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  159. def reduceRightOption[B >: Long](op: (Long, B) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  160. def repr: Chunk[Long]
    Definition Classes
    TraversableLike → GenTraversableLike
  161. def reverse: Chunk[Long]
    Definition Classes
    SeqLike → GenSeqLike
  162. def reverseIterator: Iterator[Long]
    Definition Classes
    SeqLike
  163. def reverseMap[B, That](f: (Long) ⇒ B)(implicit bf: CanBuildFrom[Chunk[Long], B, That]): That
    Definition Classes
    SeqLike → GenSeqLike
  164. def reversed: List[Long]
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  165. def right: Chunk[Long]
    Attributes
    protected
    Definition Classes
    Chunk
  166. def runWith[U](action: (Long) ⇒ U): (Int) ⇒ Boolean
    Definition Classes
    PartialFunction
  167. def sameElements[B >: Long](that: GenIterable[B]): Boolean
    Definition Classes
    IterableLike → GenIterableLike
  168. def scan[B >: Long, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Chunk[Long], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  169. def scanLeft[B, That](z: B)(op: (B, Long) ⇒ B)(implicit bf: CanBuildFrom[Chunk[Long], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  170. def scanRight[B, That](z: B)(op: (Long, B) ⇒ B)(implicit bf: CanBuildFrom[Chunk[Long], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

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

  171. def segmentLength(p: (Long) ⇒ Boolean, from: Int): Int
    Definition Classes
    SeqLike → GenSeqLike
  172. def seq: IndexedSeq[Long]
    Definition Classes
    IndexedSeq → IndexedSeq → IndexedSeqLike → Seq → Seq → GenSeq → GenSeqLike → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  173. def short(index: Int)(implicit ev: <:<[Long, Short]): Short

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  174. final def size: Int

    The number of elements in the chunk.

    The number of elements in the chunk.

    Definition Classes
    ChunkLike → SeqLike → GenTraversableLike → TraversableOnce → GenTraversableOnce
  175. def sizeHintIfCheap: Int
    Attributes
    protected[collection]
    Definition Classes
    IndexedSeqLike → GenTraversableOnce
  176. def slice(from: Int, until: Int): Chunk[Long]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  177. def sliceIterator(offset: Int, length: Int): ChunkIterator[Long]

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

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

    Definition Classes
    LongArrayChunkIterator
  178. def sliding(size: Int, step: Int): Iterator[Chunk[Long]]
    Definition Classes
    IterableLike
  179. def sliding(size: Int): Iterator[Chunk[Long]]
    Definition Classes
    IterableLike
  180. def sortBy[B](f: (Long) ⇒ B)(implicit ord: Ordering[B]): Chunk[Long]
    Definition Classes
    SeqLike
  181. def sortWith(lt: (Long, Long) ⇒ Boolean): Chunk[Long]
    Definition Classes
    SeqLike
  182. def sorted[B >: Long](implicit ord: Ordering[B]): Chunk[Long]
    Definition Classes
    SeqLike
  183. def span(p: (Long) ⇒ Boolean): (Chunk[Long], Chunk[Long])
    Definition Classes
    TraversableLike → GenTraversableLike
  184. final def split(n: Int): Chunk[Chunk[Long]]

    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[Long], Chunk[Long])

    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: (Long) ⇒ Boolean): (Chunk[Long], Chunk[Long])

    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
    Definition Classes
    SeqLike → GenSeqLike
  188. def startsWith[B](that: GenSeq[B]): Boolean
    Definition Classes
    GenSeqLike
  189. def stringPrefix: String
    Definition Classes
    TraversableLike → GenTraversableLike
  190. def sum[B >: Long](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  191. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  192. def tail: Chunk[Long]
    Definition Classes
    TraversableLike → GenTraversableLike
  193. def tails: Iterator[Chunk[Long]]
    Definition Classes
    TraversableLike
  194. def take(n: Int): Chunk[Long]

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

    Takes the last n elements of the chunk.

    Takes the last n elements of the chunk.

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

    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: (Long) ⇒ ZIO[R, E, Boolean])(implicit trace: Trace): ZIO[R, E, Chunk[Long]]

    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[Long]
    Attributes
    protected[this]
    Definition Classes
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  199. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Long, Col[Long]]): Col[Long]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  200. def toArray[A1 >: Long](n: Int, dest: Array[A1]): Unit
    Attributes
    protected[zio]
    Definition Classes
    Arr → Chunk
  201. def toArray[A1 >: Long](implicit arg0: ClassTag[A1]): Array[A1]

    Converts the chunk into an array.

    Converts the chunk into an array.

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

    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 >: Long]: Buffer[A1]
    Definition Classes
    IndexedSeqLike → TraversableOnce → GenTraversableOnce
  204. def toCollection(repr: Chunk[Long]): IndexedSeq[Long]
    Attributes
    protected[this]
    Definition Classes
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  205. def toIndexedSeq: IndexedSeq[Long]
    Definition Classes
    IndexedSeq → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  206. def toIterable: Iterable[Long]
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  207. def toIterator: Iterator[Long]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  208. final def toList: List[Long]
    Definition Classes
    Chunk → TraversableOnce → GenTraversableOnce
  209. def toMap[T, U](implicit ev: <:<[Long, (T, U)]): Map[T, U]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  210. def toSeq: Seq[Long]
    Definition Classes
    Seq → SeqLike → GenSeqLike → TraversableOnce → GenTraversableOnce
  211. def toSet[B >: Long]: Set[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  212. def toStream: Stream[Long]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  213. final def toString(): String
    Definition Classes
    Chunk → SeqLike → Function1 → TraversableLike → AnyRef → Any
  214. def toTraversable: Traversable[Long]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  215. final def toVector: Vector[Long]
    Definition Classes
    Chunk → TraversableOnce → GenTraversableOnce
  216. def transpose[B](implicit asTraversable: (Long) ⇒ GenTraversableOnce[B]): Chunk[Chunk[B]]
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

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

  217. def union[B >: Long, That](that: GenSeq[B])(implicit bf: CanBuildFrom[Chunk[Long], B, That]): That
    Definition Classes
    SeqLike → GenSeqLike
  218. def unzip[A1, A2](implicit asPair: (Long) ⇒ (A1, A2)): (Chunk[A1], Chunk[A2])
    Definition Classes
    GenericTraversableTemplate
  219. def unzip3[A1, A2, A3](implicit asTriple: (Long) ⇒ (A1, A2, A3)): (Chunk[A1], Chunk[A2], Chunk[A3])
    Definition Classes
    GenericTraversableTemplate
  220. def update[A1 >: Long](index: Int, a1: A1): Chunk[A1]

    Updates an element at the specified index of the chunk.

    Updates an element at the specified index of the chunk.

    Attributes
    protected
    Definition Classes
    Chunk
  221. final def updated[B >: Long, That](index: Int, elem: B)(implicit bf: CanBuildFrom[Chunk[Long], B, That]): That
    Definition Classes
    ChunkLike → SeqLike → GenSeqLike
  222. def view(from: Int, until: Int): SeqView[Long, Chunk[Long]]
    Definition Classes
    SeqLike → IterableLike → TraversableLike
  223. def view: SeqView[Long, Chunk[Long]]
    Definition Classes
    SeqLike → IterableLike → TraversableLike
  224. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  225. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  226. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  227. def withFilter(p: (Long) ⇒ Boolean): FilterMonadic[Long, Chunk[Long]]
    Definition Classes
    TraversableLike → FilterMonadic
  228. final def zip[B](that: Chunk[B])(implicit zippable: Zippable[Long, B]): Chunk[Out]

    Zips this chunk with the specified chunk to produce a new chunk with pairs of elements from each chunk.

    Zips this chunk with the specified chunk to produce a new chunk with pairs of elements from each chunk. The returned chunk will have the length of the shorter chunk.

    Definition Classes
    Chunk
  229. def zip[A1 >: Long, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Chunk[Long], (A1, B), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  230. final def zipAll[B](that: Chunk[B]): Chunk[(Option[Long], 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
  231. def zipAll[B, A1 >: Long, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Chunk[Long], (A1, B), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  232. final def zipAllWith[B, C](that: Chunk[B])(left: (Long) ⇒ C, right: (B) ⇒ C)(both: (Long, 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
  233. final def zipWith[B, C](that: Chunk[B])(f: (Long, 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
  234. final def zipWithIndex: Chunk[(Long, Int)]

    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 >: Long, That](implicit bf: CanBuildFrom[Chunk[Long], (A1, Int), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  236. final def zipWithIndexFrom(indexOffset: Int): Chunk[(Long, 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. def /:[B](z: B)(op: (B, Long) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldLeft instead of /:

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

    (Since version 2.12.10) Use foldRight instead of :\

Inherited from Product

Inherited from ChunkIterator[Long]

Inherited from Arr[Long]

Inherited from Chunk[Long]

Inherited from Serializable

Inherited from Serializable

Inherited from ChunkLike[Long]

Inherited from IndexedSeq[Long]

Inherited from IndexedSeq[Long]

Inherited from IndexedSeqLike[Long, Chunk[Long]]

Inherited from Seq[Long]

Inherited from Seq[Long]

Inherited from SeqLike[Long, Chunk[Long]]

Inherited from GenSeq[Long]

Inherited from GenSeqLike[Long, Chunk[Long]]

Inherited from PartialFunction[Int, Long]

Inherited from (Int) ⇒ Long

Inherited from Iterable[Long]

Inherited from Iterable[Long]

Inherited from IterableLike[Long, Chunk[Long]]

Inherited from Equals

Inherited from GenIterable[Long]

Inherited from GenIterableLike[Long, Chunk[Long]]

Inherited from Traversable[Long]

Inherited from Immutable

Inherited from Traversable[Long]

Inherited from GenTraversable[Long]

Inherited from TraversableLike[Long, Chunk[Long]]

Inherited from GenTraversableLike[Long, Chunk[Long]]

Inherited from Parallelizable[Long, ParSeq[Long]]

Inherited from TraversableOnce[Long]

Inherited from GenTraversableOnce[Long]

Inherited from FilterMonadic[Long, Chunk[Long]]

Inherited from HasNewBuilder[Long, Chunk[Long]]

Inherited from AnyRef

Inherited from Any

Ungrouped