DoubleArray

final case class DoubleArray(array: Array[Double], offset: Int, length: Int) extends ChunkIterator[Double]

Value members

Concrete methods

def apply(index: Int): Double
override def double(index: Int)(implicit ev: Double <:< Double): Double
Definition Classes
def hasNextAt(index: Int): Boolean
def nextAt(index: Int): Double
def sliceIterator(offset: Int, length: Int): ChunkIterator[Double]

Inherited methods

def &(that: Chunk[Boolean])(implicit ev: Double <:< Boolean): BitChunkByte

Returns the bitwise AND of this chunk and the specified chunk.

Returns the bitwise AND of this chunk and the specified chunk.

Inherited from:
Chunk
final def ++[A1 >: Double](that: ChunkIterator[A1]): ChunkIterator[A1]

Concatenates this chunk iterator with the specified chunk iterator.

Concatenates this chunk iterator with the specified chunk iterator.

Inherited from:
ChunkIterator
final def ++[A1 >: Double](that: NonEmptyChunk[A1]): NonEmptyChunk[A1]

Returns the concatenation of this chunk with the specified chunk.

Returns the concatenation of this chunk with the specified chunk.

Inherited from:
Chunk
final def ++[A1 >: Double](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.

Inherited from:
Chunk
final def ++[B >: Double](suffix: IterableOnce[B]): Chunk[B]
Inherited from:
IterableOps
final override def ++:[B >: Double](prefix: IterableOnce[B]): Chunk[B]
Definition Classes
Inherited from:
SeqOps
final def +:[B >: Double](elem: B): Chunk[B]
Inherited from:
SeqOps
final def :+[B >: Double](elem: B): Chunk[B]
Inherited from:
SeqOps
final def :++[B >: Double](suffix: IterableOnce[B]): Chunk[B]
Inherited from:
SeqOps
def ^(that: Chunk[Boolean])(implicit ev: Double <:< Boolean): BitChunkByte

Returns the bitwise XOR of this chunk and the specified chunk.

Returns the bitwise XOR of this chunk and the specified chunk.

Inherited from:
Chunk
Inherited from:
IterableOnceOps
override def andThen[C](k: Double => C): PartialFunction[Int, C]
Definition Classes
Inherited from:
PartialFunction
final override def appended[A1 >: Double](a1: A1): Chunk[A1]
Definition Classes
Inherited from:
ChunkLike
override def appendedAll[B >: Double](suffix: IterableOnce[B]): Chunk[B]
Definition Classes
Inherited from:
StrictOptimizedSeqOps
def applyOrElse[A1 <: Int, B1 >: Double](x: A1, default: A1 => B1): B1
Inherited from:
PartialFunction
final def asBitsByte(implicit ev: Double <:< Byte): Chunk[Boolean]

Converts a chunk of bytes to a chunk of bits.

Converts a chunk of bytes to a chunk of bits.

Inherited from:
Chunk
final def asBitsInt(endianness: Endianness)(implicit ev: Double <:< Int): Chunk[Boolean]

Converts a chunk of ints to a chunk of bits.

Converts a chunk of ints to a chunk of bits.

Inherited from:
Chunk
final def asBitsLong(endianness: Endianness)(implicit ev: Double <:< Long): Chunk[Boolean]

Converts a chunk of longs to a chunk of bits.

Converts a chunk of longs to a chunk of bits.

Inherited from:
Chunk
final def asString(charset: Charset)(implicit ev: Double <:< Byte): String

Crates a new String based on this chunk of bytes and using the given charset.

Crates a new String based on this chunk of bytes and using the given charset.

Inherited from:
Chunk
final def asString(implicit ev: IsText[Double]): String

Crates a new String based on this chunks data.

Crates a new String based on this chunks data.

Inherited from:
Chunk
def boolean(index: Int)(implicit ev: Double <:< Boolean): Boolean

Get the element at the specified index.

Get the element at the specified index.

Inherited from:
Chunk
def byte(index: Int)(implicit ev: Double <:< Byte): Byte

Get the element at the specified index.

Get the element at the specified index.

Inherited from:
Chunk
override def canEqual(that: Any): Boolean
Definition Classes
Inherited from:
IndexedSeq
def char(index: Int)(implicit ev: Double <:< Char): Char

Get the element at the specified index.

Get the element at the specified index.

Inherited from:
Chunk
override def collect[B](pf: PartialFunction[Double, 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
Inherited from:
ChunkLike
override protected def collectChunk[B](pf: PartialFunction[Double, B]): Chunk[B]
Definition Classes
Arr -> Chunk
Inherited from:
Arr (hidden)
Inherited from:
IterableOnceOps
override def collectWhile[B](pf: PartialFunction[Double, B]): Chunk[B]
Definition Classes
Arr -> Chunk
Inherited from:
Arr (hidden)
override def collectWhileZIO[R, E, B](pf: PartialFunction[Double, ZIO[R, E, B]])(implicit trace: Trace): ZIO[R, E, Chunk[B]]
Definition Classes
Arr -> Chunk
Inherited from:
Arr (hidden)
override def collectZIO[R, E, B](pf: PartialFunction[Double, ZIO[R, E, B]])(implicit trace: Trace): ZIO[R, E, Chunk[B]]
Definition Classes
Arr -> Chunk
Inherited from:
Arr (hidden)
Inherited from:
SeqOps
def compose[A](g: A => Int): A => Double
Inherited from:
Function1
final override def concat[B >: Double](suffix: IterableOnce[B]): Chunk[B]
Definition Classes
Inherited from:
SeqOps
def contains[A1 >: Double](elem: A1): Boolean
Inherited from:
SeqOps
def containsSlice[B >: Double](that: Seq[B]): Boolean
Inherited from:
SeqOps
def copyToArray[B >: Double](xs: Array[B], start: Int, len: Int): Int
Inherited from:
IterableOnceOps
@deprecatedOverriding(message = "This should always forward to the 3-arg version of this method", since = "2.13.4")
def copyToArray[B >: Double](xs: Array[B], start: Int): Int
Inherited from:
IterableOnceOps
@deprecatedOverriding(message = "This should always forward to the 3-arg version of this method", since = "2.13.4")
def copyToArray[B >: Double](xs: Array[B]): Int
Inherited from:
IterableOnceOps
final def corresponds[B](that: Chunk[B])(f: (Double, 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.

Inherited from:
Chunk
def corresponds[B](that: IterableOnce[B])(p: (Double, B) => Boolean): Boolean
Inherited from:
IterableOnceOps
def corresponds[B](that: Seq[B])(p: (Double, B) => Boolean): Boolean
Inherited from:
SeqOps
def count(p: Double => Boolean): Int
Inherited from:
IterableOnceOps

Deduplicates adjacent elements that are identical.

Deduplicates adjacent elements that are identical.

Inherited from:
Chunk
override def diff[B >: Double](that: Seq[B]): Chunk[Double]
Definition Classes
Inherited from:
StrictOptimizedSeqOps
Inherited from:
SeqOps
override def distinctBy[B](f: Double => B): Chunk[Double]
override def drop(n: Int): Chunk[Double]

Drops the first n elements of the chunk.

Drops the first n elements of the chunk.

Definition Classes
Inherited from:
Chunk
override def dropRight(n: Int): Chunk[Double]

Drops the last n elements of the chunk.

Drops the last n elements of the chunk.

Definition Classes
Inherited from:
Chunk

Drops all elements until the predicate returns true.

Drops all elements until the predicate returns true.

Inherited from:
Chunk
def dropUntilZIO[R, E](p: Double => ZIO[R, E, Boolean])(implicit trace: Trace): ZIO[R, E, Chunk[Double]]

Drops all elements until the effectful predicate returns true.

Drops all elements until the effectful predicate returns true.

Inherited from:
Chunk
override def dropWhile(f: Double => Boolean): Chunk[Double]
Definition Classes
Inherited from:
Arr (hidden)
def dropWhileZIO[R, E](p: Double => ZIO[R, E, Boolean])(implicit trace: Trace): ZIO[R, E, Chunk[Double]]

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

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

Inherited from:
Chunk
override def empty: Chunk[Double]
def endsWith[B >: Double](that: Iterable[B]): Boolean
Inherited from:
SeqOps
final override def equals(that: Any): Boolean
Definition Classes
Chunk -> Seq -> Equals -> Any
Inherited from:
Chunk
final override def exists(f: Double => 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
Inherited from:
Chunk
override def filter(f: Double => Boolean): Chunk[Double]
Definition Classes
Inherited from:
Arr (hidden)
final def filterZIO[R, E](f: Double => ZIO[R, E, Boolean])(implicit trace: Trace): ZIO[R, E, Chunk[Double]]

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.

Inherited from:
Chunk
final override def find(f: Double => Boolean): Option[Double]

Returns the first element that satisfies the predicate.

Returns the first element that satisfies the predicate.

Definition Classes
Inherited from:
Chunk
Inherited from:
SeqOps
final def findZIO[R, E](f: Double => ZIO[R, E, Boolean])(implicit trace: Trace): ZIO[R, E, Option[Double]]

Returns the first element that satisfies the effectful predicate.

Returns the first element that satisfies the effectful predicate.

Inherited from:
Chunk
final override def flatMap[B](f: Double => 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
Inherited from:
ChunkLike
override def flatten[B](implicit ev: Double => IterableOnce[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
Inherited from:
ChunkLike
def float(index: Int)(implicit ev: Double <:< Float): Float

Get the element at the specified index.

Get the element at the specified index.

Inherited from:
Chunk
def fold[A1 >: Double](z: A1)(op: (A1, A1) => A1): A1
Inherited from:
IterableOnceOps
override def foldLeft[S](s0: S)(f: (S, Double) => S): S
Definition Classes
Inherited from:
Arr (hidden)
override def foldRight[S](s0: S)(f: (Double, S) => S): S
Definition Classes
Inherited from:
Arr (hidden)
final def foldWhile[S](s0: S)(pred: S => Boolean)(f: (S, Double) => S): S

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

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

Inherited from:
Chunk
final def foldWhileZIO[R, E, S](z: S)(pred: S => Boolean)(f: (S, Double) => ZIO[R, E, S])(implicit trace: Trace): ZIO[R, E, S]
Inherited from:
Chunk
final def foldZIO[R, E, S](s: S)(f: (S, Double) => 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.

Inherited from:
Chunk
final override def forall(f: Double => 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
Inherited from:
Chunk
override def foreach[B](f: Double => B): Unit
Definition Classes
Inherited from:
Arr (hidden)
protected def fromSpecific(coll: IterableOnce[Double]): Chunk[Double]
def groupBy[K](f: Double => K): Map[K, Chunk[Double]]
Inherited from:
IterableOps
def groupMap[K, B](key: Double => K)(f: Double => B): Map[K, Chunk[B]]
Inherited from:
IterableOps
def groupMapReduce[K, B](key: Double => K)(f: Double => B)(reduce: (B, B) => B): Map[K, B]
Inherited from:
IterableOps
Inherited from:
IterableOps
final override def hashCode: Int
Definition Classes
Chunk -> Seq -> Any
Inherited from:
Chunk
override def head: Double

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.

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
Inherited from:
Chunk
final override def headOption: Option[Double]

Returns the first element of this chunk if it exists.

Returns the first element of this chunk if it exists.

Definition Classes
Inherited from:
Chunk
@deprecatedOverriding(message = "Override indexOf(elem, from) instead - indexOf(elem) calls indexOf(elem, 0)", since = "2.13.0")
def indexOf[B >: Double](elem: B): Int
Inherited from:
SeqOps
def indexOf[B >: Double](elem: B, from: Int): Int
Inherited from:
SeqOps
@deprecatedOverriding(message = "Override indexOfSlice(that, from) instead - indexOfSlice(that) calls indexOfSlice(that, 0)", since = "2.13.0")
def indexOfSlice[B >: Double](that: Seq[B]): Int
Inherited from:
SeqOps
def indexOfSlice[B >: Double](that: Seq[B], from: Int): Int
Inherited from:
SeqOps
final override def indexWhere(f: Double => 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
Inherited from:
Chunk
@deprecatedOverriding(message = "Override indexWhere(p, from) instead - indexWhere(p) calls indexWhere(p, 0)", since = "2.13.0")
Inherited from:
SeqOps
Inherited from:
SeqOps
Inherited from:
IterableOps
Inherited from:
IterableOps
def int(index: Int)(implicit ev: Double <:< Int): Int

Get the element at the specified index.

Get the element at the specified index.

Inherited from:
Chunk
override def intersect[B >: Double](that: Seq[B]): Chunk[Double]
Definition Classes
Inherited from:
StrictOptimizedSeqOps
Inherited from:
SeqOps
final override def isEmpty: Boolean

Determines if the chunk is empty.

Determines if the chunk is empty.

Definition Classes
Inherited from:
Chunk
Definition Classes
Inherited from:
IterableOps
override def iterator: Iterator[Double]
Definition Classes
Inherited from:
Arr (hidden)
override def knownSize: Int
Definition Classes
Inherited from:
IndexedSeqOps
override def last: Double
Definition Classes
Inherited from:
IndexedSeqOps
def lastIndexOf[B >: Double](elem: B, end: Int): Int
Inherited from:
SeqOps
@deprecatedOverriding(message = "Override lastIndexOfSlice(that, end) instead - lastIndexOfSlice(that) calls lastIndexOfSlice(that, Int.MaxValue)", since = "2.13.0")
def lastIndexOfSlice[B >: Double](that: Seq[B]): Int
Inherited from:
SeqOps
def lastIndexOfSlice[B >: Double](that: Seq[B], end: Int): Int
Inherited from:
SeqOps
@deprecatedOverriding(message = "Override lastIndexWhere(p, end) instead - lastIndexWhere(p) calls lastIndexWhere(p, Int.MaxValue)", since = "2.13.0")
Inherited from:
SeqOps
def lastIndexWhere(p: Double => Boolean, end: Int): Int
Inherited from:
SeqOps
final override def lastOption: Option[Double]

Returns the last element of this chunk if it exists.

Returns the last element of this chunk if it exists.

Definition Classes
Inherited from:
Chunk
Inherited from:
Iterable
final override def lengthCompare(that: Iterable[_]): Int
Definition Classes
Inherited from:
IndexedSeqOps
final override def lengthCompare(len: Int): Int
Definition Classes
Inherited from:
IndexedSeqOps
Inherited from:
SeqOps
Inherited from:
PartialFunction
def long(index: Int)(implicit ev: Double <:< Long): Long

Get the element at the specified index.

Get the element at the specified index.

Inherited from:
Chunk
final override def map[B](f: Double => 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
Inherited from:
ChunkLike
final def mapAccum[S1, B](s1: S1)(f1: (S1, Double) => (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.

Inherited from:
Chunk
final def mapAccumZIO[R, E, S1, B](s1: S1)(f1: (S1, Double) => 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.

Inherited from:
Chunk
override protected def mapChunk[B](f: Double => B): Chunk[B]
Definition Classes
Arr -> Chunk
Inherited from:
Arr (hidden)
final def mapZIO[R, E, B](f: Double => 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.

Inherited from:
Chunk
final def mapZIODiscard[R, E](f: Double => 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.

Inherited from:
Chunk
final def mapZIOPar[R, E, B](f: Double => 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.

Inherited from:
Chunk
final def mapZIOParDiscard[R, E](f: Double => 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.

Inherited from:
Chunk
override def materialize[A1 >: Double]: Chunk[A1]
Definition Classes
Arr -> Chunk
Inherited from:
Arr (hidden)
def max[B >: Double](implicit ord: Ordering[B]): Double
Inherited from:
IterableOnceOps
def maxBy[B](f: Double => B)(implicit cmp: Ordering[B]): Double
Inherited from:
IterableOnceOps
def maxByOption[B](f: Double => B)(implicit cmp: Ordering[B]): Option[Double]
Inherited from:
IterableOnceOps
def maxOption[B >: Double](implicit ord: Ordering[B]): Option[Double]
Inherited from:
IterableOnceOps
def min[B >: Double](implicit ord: Ordering[B]): Double
Inherited from:
IterableOnceOps
def minBy[B](f: Double => B)(implicit cmp: Ordering[B]): Double
Inherited from:
IterableOnceOps
def minByOption[B](f: Double => B)(implicit cmp: Ordering[B]): Option[Double]
Inherited from:
IterableOnceOps
def minOption[B >: Double](implicit ord: Ordering[B]): Option[Double]
Inherited from:
IterableOnceOps
final def mkString: String
Inherited from:
IterableOnceOps
final def mkString(sep: String): String
Inherited from:
IterableOnceOps
final def mkString(start: String, sep: String, end: String): String
Inherited from:
IterableOnceOps
def negate(implicit ev: Double <:< Boolean): BitChunkByte

Returns the bitwise NOT of this chunk.

Returns the bitwise NOT of this chunk.

Inherited from:
Chunk
@deprecatedOverriding(message = "nonEmpty is defined as !isEmpty; override isEmpty instead", since = "2.13.0")
Inherited from:
IterableOnceOps
def nonEmptyOrElse[B](ifEmpty: => B)(fn: NonEmptyChunk[Double] => 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

Inherited from:
Chunk
def orElse[A1 <: Int, B1 >: Double](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
Inherited from:
PartialFunction
override def padTo[B >: Double](len: Int, elem: B): Chunk[B]
Definition Classes
Inherited from:
StrictOptimizedSeqOps
final override def partitionMap[B, C](f: Double => 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
Inherited from:
Chunk
override def patch[B >: Double](from: Int, other: IterableOnce[B], replaced: Int): Chunk[B]
Definition Classes
Inherited from:
StrictOptimizedSeqOps
Inherited from:
SeqOps
final override def prepended[A1 >: Double](a1: A1): Chunk[A1]
Definition Classes
Inherited from:
ChunkLike
override def prependedAll[B >: Double](prefix: IterableOnce[B]): Chunk[B]
Definition Classes
Inherited from:
StrictOptimizedSeqOps
def product[B >: Double](implicit num: Numeric[B]): B
Inherited from:
IterableOnceOps
Inherited from:
Product
def reduce[B >: Double](op: (B, B) => B): B
Inherited from:
IterableOnceOps
def reduceLeft[B >: Double](op: (B, Double) => B): B
Inherited from:
IterableOnceOps
def reduceLeftOption[B >: Double](op: (B, Double) => B): Option[B]
Inherited from:
IterableOnceOps
def reduceOption[B >: Double](op: (B, B) => B): Option[B]
Inherited from:
IterableOnceOps
def reduceRight[B >: Double](op: (Double, B) => B): B
Inherited from:
IterableOnceOps
def reduceRightOption[B >: Double](op: (Double, B) => B): Option[B]
Inherited from:
IterableOnceOps
override def reverse: Chunk[Double]
Definition Classes
Inherited from:
IndexedSeqOps
Definition Classes
Inherited from:
IndexedSeqOps
override protected def reversed: Iterable[Double]
Definition Classes
Inherited from:
IndexedSeqOps
def runWith[U](action: Double => U): Int => Boolean
Inherited from:
PartialFunction
override def sameElements[B >: Double](o: IterableOnce[B]): Boolean
Definition Classes
Inherited from:
IndexedSeq
def scan[B >: Double](z: B)(op: (B, B) => B): Chunk[B]
Inherited from:
IterableOps
override def scanLeft[B](z: B)(op: (B, Double) => B): Chunk[B]
def scanRight[B](z: B)(op: (Double, B) => B): Chunk[B]
Inherited from:
IterableOps
override def search[B >: Double](elem: B, from: Int, to: Int)(implicit ord: Ordering[B]): SearchResult
Definition Classes
Inherited from:
IndexedSeqOps
override def search[B >: Double](elem: B)(implicit ord: Ordering[B]): SearchResult
Definition Classes
Inherited from:
IndexedSeqOps
def segmentLength(p: Double => Boolean, from: Int): Int
Inherited from:
SeqOps
final def segmentLength(p: Double => Boolean): Int
Inherited from:
SeqOps
def short(index: Int)(implicit ev: Double <:< Short): Short

Get the element at the specified index.

Get the element at the specified index.

Inherited from:
Chunk
final override def size: Int
Definition Classes
Inherited from:
SeqOps
final override def sizeCompare(that: Iterable[_]): Int
Definition Classes
Inherited from:
SeqOps
final override def sizeCompare(otherSize: Int): Int
Definition Classes
Inherited from:
SeqOps
Inherited from:
IterableOps
override def slice(from: Int, until: Int): Chunk[Double]
Definition Classes
Inherited from:
IndexedSeqOps
def sliding(size: Int, step: Int): Iterator[Chunk[Double]]
Inherited from:
IterableOps
Inherited from:
IterableOps
def sortBy[B](f: Double => B)(implicit ord: Ordering[B]): Chunk[Double]
Inherited from:
SeqOps
Inherited from:
SeqOps
override def sorted[B >: Double](implicit ord: Ordering[B]): Chunk[Double]
Definition Classes
Inherited from:
StrictOptimizedSeqOps
final def split(n: Int): Chunk[Chunk[Double]]

Splits this chunk into n equally sized chunks.

Splits this chunk into n equally sized chunks.

Inherited from:
Chunk
final override def splitAt(n: Int): (Chunk[Double], Chunk[Double])

Returns two splits of this chunk at the specified index.

Returns two splits of this chunk at the specified index.

Definition Classes
Inherited from:
Chunk

Splits this chunk on the first element that matches this predicate.

Splits this chunk on the first element that matches this predicate.

Inherited from:
Chunk
def startsWith[B >: Double](that: IterableOnce[B], offset: Int): Boolean
Inherited from:
SeqOps
override def stepper[S <: Stepper[_]](implicit shape: StepperShape[Double, S]): S & EfficientSplit
Definition Classes
Inherited from:
IndexedSeqOps
def sum[B >: Double](implicit num: Numeric[B]): B
Inherited from:
IterableOnceOps
Inherited from:
IterableOps
Inherited from:
IterableOps
override def take(n: Int): Chunk[Double]

Takes the first n elements of the chunk.

Takes the first n elements of the chunk.

Definition Classes
Inherited from:
Chunk
override def takeRight(n: Int): Chunk[Double]

Takes the last n elements of the chunk.

Takes the last n elements of the chunk.

Definition Classes
Inherited from:
Chunk
override def takeWhile(f: Double => Boolean): Chunk[Double]

Takes all elements so long as the predicate returns true.

Takes all elements so long as the predicate returns true.

Definition Classes
Inherited from:
Arr (hidden)
def takeWhileZIO[R, E](p: Double => ZIO[R, E, Boolean])(implicit trace: Trace): ZIO[R, E, Chunk[Double]]

Takes all elements so long as the effectual predicate returns true.

Takes all elements so long as the effectual predicate returns true.

Inherited from:
Chunk
override def tapEach[U](f: Double => U): Chunk[Double]
def to[C1](factory: Factory[Double, C1]): C1
Inherited from:
IterableOnceOps
override def toArray[A1 >: Double : ClassTag]: Array[A1]

Converts the chunk into an array.

Converts the chunk into an array.

Definition Classes
Inherited from:
Chunk
final def toBinaryString(implicit ev: Double <:< Boolean): String

Renders this chunk of bits as a binary string.

Renders this chunk of bits as a binary string.

Inherited from:
Chunk
final def toBuffer[B >: Double]: Buffer[B]
Inherited from:
IterableOnceOps
final override def toIndexedSeq: IndexedSeq[Double]
Definition Classes
Inherited from:
IndexedSeq
final override def toList: List[Double]
Definition Classes
Inherited from:
Chunk
def toMap[K, V](implicit ev: Double <:< (K, V)): Map[K, V]
Inherited from:
IterableOnceOps
def toPackedByte(implicit ev: Double <:< Boolean): Chunk[Byte]
Inherited from:
Chunk
def toPackedInt(endianness: Endianness)(implicit ev: Double <:< Boolean): Chunk[Int]
Inherited from:
Chunk
def toPackedLong(endianness: Endianness)(implicit ev: Double <:< Boolean): Chunk[Long]
Inherited from:
Chunk
final override def toSeq: DoubleArray
Definition Classes
Inherited from:
Seq
def toSet[B >: Double]: Set[B]
Inherited from:
IterableOnceOps
final override def toString: String
Definition Classes
Chunk -> Seq -> Function1 -> Iterable -> Any
Inherited from:
Chunk
final override def toVector: Vector[Double]
Definition Classes
Inherited from:
Chunk
def transpose[B](implicit asIterable: Double => Iterable[B]): Chunk[Chunk[B]]
Inherited from:
IterableOps
Inherited from:
PartialFunction
override def unzip[A1, A2](implicit asPair: Double => (A1, A2)): (Chunk[A1], Chunk[A2])
override def unzip3[A1, A2, A3](implicit asTriple: Double => (A1, A2, A3)): (Chunk[A1], Chunk[A2], Chunk[A3])
final override def updated[A1 >: Double](index: Int, elem: A1): Chunk[A1]
Definition Classes
Inherited from:
ChunkLike
override def view: IndexedSeqView[Double]
Definition Classes
Inherited from:
IndexedSeqOps
final def zip[B](that: Chunk[B])(implicit zippable: Zippable[Double, B]): Chunk[Out]

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.

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.

Inherited from:
Chunk
override def zip[B](that: IterableOnce[B]): Chunk[(Double, B)]
final def zipAll[B](that: Chunk[B]): Chunk[(Option[Double], 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. The returned chunk will have the length of the longer chunk.

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.

Inherited from:
Chunk
def zipAll[A1 >: Double, B](that: Iterable[B], thisElem: A1, thatElem: B): Chunk[(A1, B)]
Inherited from:
IterableOps
final def zipAllWith[B, C](that: Chunk[B])(left: Double => C, right: B => C)(both: (Double, 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. 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.

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.

Inherited from:
Chunk
final def zipWith[B, C](that: Chunk[B])(f: (Double, 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.

Inherited from:
Chunk
final override def zipWithIndex: Chunk[(Double, Int)]

Zips this chunk with the index of every element.

Zips this chunk with the index of every element.

Definition Classes
Inherited from:
ChunkLike
final def zipWithIndexFrom(indexOffset: Int): Chunk[(Double, 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.

Inherited from:
Chunk
def |(that: Chunk[Boolean])(implicit ev: Double <:< Boolean): BitChunkByte

Returns the bitwise OR of this chunk and the specified chunk.

Returns the bitwise OR of this chunk and the specified chunk.

Inherited from:
Chunk

Deprecated and Inherited methods

@inline @deprecated(message = "Use foldLeft instead of /:", since = "2.13.0")
final def /:[B](z: B)(op: (B, Double) => B): B
Deprecated
[Since version 2.13.0] Use foldLeft instead of /:
Inherited from:
IterableOnceOps
@inline @deprecated(message = "Use foldRight instead of :\\", since = "2.13.0")
final def :\[B](z: B)(op: (Double, B) => B): B
Deprecated
[Since version 2.13.0] Use foldRight instead of :\\
Inherited from:
IterableOnceOps
@deprecated(message = "`aggregate` is not relevant for sequential collections. Use `foldLeft(z)(seqop)` instead.", since = "2.13.0")
def aggregate[B](z: => B)(seqop: (B, Double) => B, combop: (B, B) => B): B
Deprecated
[Since version 2.13.0] `aggregate` is not relevant for sequential collections. Use `foldLeft(z)(seqop)` instead.
Inherited from:
IterableOnceOps
@inline @deprecatedOverriding(message = "Use iterableFactory instead", since = "2.13.0") @deprecated(message = "Use iterableFactory instead", since = "2.13.0")
Deprecated
[Since version 2.13.0] Use iterableFactory instead
Inherited from:
IterableOps
@inline @deprecated(message = "Use `dest ++= coll` instead", since = "2.13.0")
final def copyToBuffer[B >: Double](dest: Buffer[B]): Unit
Deprecated
[Since version 2.13.0] Use `dest ++= coll` instead
Inherited from:
IterableOnceOps
@deprecated(message = "Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)", since = "2.13.0")
Deprecated
[Since version 2.13.0] Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)
Inherited from:
IterableOnceOps
@inline @deprecated(message = "Use segmentLength instead of prefixLength", since = "2.13.0")
final def prefixLength(p: Double => Boolean): Int
Deprecated
[Since version 2.13.0] Use segmentLength instead of prefixLength
Inherited from:
SeqOps
@deprecated(message = "Use coll instead of repr in a collection implementation, use the collection value itself from the outside", since = "2.13.0")
final def repr: Chunk[Double]
Deprecated
[Since version 2.13.0] Use coll instead of repr in a collection implementation, use the collection value itself from the outside
Inherited from:
IterableOps
@deprecated(message = "Use .reverseIterator.map(f).to(...) instead of .reverseMap(f)", since = "2.13.0")
def reverseMap[B](f: Double => B): Chunk[B]
Deprecated
[Since version 2.13.0] Use .reverseIterator.map(f).to(...) instead of .reverseMap(f)
Inherited from:
SeqOps
@deprecated(message = "Iterable.seq always returns the iterable itself", since = "2.13.0")
Deprecated
[Since version 2.13.0] Iterable.seq always returns the iterable itself
Inherited from:
Iterable
@deprecated(message = "toIterable is internal and will be made protected; its name is similar to `toList` or `toSeq`, but it doesn\'t copy non-immutable collections", since = "2.13.7")
Deprecated
[Since version 2.13.7] toIterable is internal and will be made protected; its name is similar to `toList` or `toSeq`, but it doesn\'t copy non-immutable collections
Inherited from:
Iterable
@inline @deprecated(message = "Use .iterator instead of .toIterator", since = "2.13.0")
Deprecated
[Since version 2.13.0] Use .iterator instead of .toIterator
Inherited from:
IterableOnceOps
@inline @deprecated(message = "Use .to(LazyList) instead of .toStream", since = "2.13.0")
final def toStream: Stream[Double]
Deprecated
[Since version 2.13.0] Use .to(LazyList) instead of .toStream
Inherited from:
IterableOnceOps
@deprecated(message = "toTraversable is internal and will be made protected; its name is similar to `toList` or `toSeq`, but it doesn\'t copy non-immutable collections", since = "2.13.0")
Deprecated
[Since version 2.13.0] toTraversable is internal and will be made protected; its name is similar to `toList` or `toSeq`, but it doesn\'t copy non-immutable collections
Inherited from:
IterableOps
@inline @deprecated(message = "Use `concat` instead", since = "2.13.0")
final def union[B >: Double](that: Seq[B]): Chunk[B]
Deprecated
[Since version 2.13.0] Use `concat` instead
Inherited from:
SeqOps
@deprecated(message = "Use .view.slice(from, until) instead of .view(from, until)", since = "2.13.0")
override def view(from: Int, until: Int): IndexedSeqView[Double]
Deprecated
[Since version 2.13.0] Use .view.slice(from, until) instead of .view(from, until)
Definition Classes
Inherited from:
IndexedSeqOps

Inherited fields

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

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

Inherited from:
ChunkLike

Implicits

Inherited implicits

implicit val classTag: ClassTag[Double]
Inherited from:
Arr (hidden)