Queue

fs2.Chunk.Queue
See theQueue companion object
final class Queue[+O] extends Chunk[O]

A FIFO queue of chunks that provides an O(1) size method and provides the ability to take and drop individual elements while preserving the chunk structure as much as possible.

This is similar to a queue of individual elements but chunk structure is maintained.

Attributes

Companion
object
Source
Chunk.scala
Graph
Supertypes
class Chunk[O]
trait Serializable
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

override def ++[O2 >: O](that: Chunk[O2]): Chunk[O2]

Returns a chunk which consists of the elements of this chunk and the elements of the supplied chunk.

Returns a chunk which consists of the elements of this chunk and the elements of the supplied chunk. This operation is amortized O(1).

Attributes

Definition Classes
Source
Chunk.scala
def +:[O2 >: O](c: Chunk[O2]): Queue[O2]

Prepends a chunk to the start of this chunk queue.

Prepends a chunk to the start of this chunk queue.

Attributes

Source
Chunk.scala
def :+[O2 >: O](c: Chunk[O2]): Queue[O2]

Appends a chunk to the end of this chunk queue.

Appends a chunk to the end of this chunk queue.

Attributes

Source
Chunk.scala
def apply(i: Int): O

Returns the element at the specified index.

Returns the element at the specified index. Throws if index is < 0 or >= size.

Attributes

Source
Chunk.scala
def copyToArray[O2 >: O](xs: Array[O2], start: Int): Unit

Copies the elements of this chunk in to the specified array at the specified start index.

Copies the elements of this chunk in to the specified array at the specified start index.

Attributes

Source
Chunk.scala
override def drop(n: Int): Queue[O]

Drops the first n elements of this chunk.

Drops the first n elements of this chunk.

Attributes

Definition Classes
Source
Chunk.scala
override def foreach(f: O => Unit): Unit

Invokes the supplied function for each element of this chunk.

Invokes the supplied function for each element of this chunk.

Attributes

Definition Classes
Source
Chunk.scala
override def foreachWithIndex(f: (O, Int) => Unit): Unit

Like foreach but includes the index of the element.

Like foreach but includes the index of the element.

Attributes

Definition Classes
Source
Chunk.scala
override def iterator: Iterator[O]

Creates an iterator that iterates the elements of this chunk.

Creates an iterator that iterates the elements of this chunk. The returned iterator is not thread safe.

Attributes

Definition Classes
Source
Chunk.scala
override def reverseIterator: Iterator[O]

Creates an iterator that iterates the elements of this chunk in reverse order.

Creates an iterator that iterates the elements of this chunk in reverse order. The returned iterator is not thread safe.

Attributes

Definition Classes
Source
Chunk.scala
override def startsWith[O2 >: O](seq: Seq[O2]): Boolean

Check to see if this starts with the items in the given seq.

Check to see if this starts with the items in the given seq.

Attributes

Definition Classes
Source
Chunk.scala
override def take(n: Int): Queue[O]

Takes the first n elements of this chunk.

Takes the first n elements of this chunk.

Attributes

Definition Classes
Source
Chunk.scala
override def toByteVector[B >: O](implicit ev: B =:= Byte): ByteVector

Converts this chunk to a scodec-bits ByteVector.

Converts this chunk to a scodec-bits ByteVector.

Attributes

Definition Classes
Source
Chunk.scala
override def traverse[F[_], O2](f: O => F[O2])(implicit F: Applicative[F]): F[Chunk[O2]]

Attributes

Definition Classes
Source
Chunk.scala
override def traverseFilter[F[_], O2](f: O => F[Option[O2]])(implicit F: Applicative[F]): F[Chunk[O2]]

Attributes

Definition Classes
Source
Chunk.scala

Inherited methods

def asJava: List[O]

Views this Chunk as a Java unmodifiable List.

Views this Chunk as a Java unmodifiable List. Contrary to all methods that start with _"to"_ (e.g. {{toVector}}, {{toArray}}), this method does not copy data. As such, this method is mostly intended for foreach kind of interop.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def asSeq: IndexedSeq[O]

Views this Chunk as a Scala immutable Seq.

Views this Chunk as a Scala immutable Seq. Contrary to all methods that start with _"to"_ (e.g. {{toVector}}, {{toArray}}), this method does not copy data. As such, this method is mostly intended for foreach kind of interop.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def asSeqPlatform: Option[IndexedSeq[O]]

Attributes

Inherited from:
ChunkPlatform (hidden)
Source
ChunkPlatform.scala
def collect[O2](pf: PartialFunction[O, O2]): Chunk[O2]

More efficient version of filter(pf.isDefinedAt).map(pf).

More efficient version of filter(pf.isDefinedAt).map(pf).

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def compact[O2 >: O](implicit ct: ClassTag[O2]): ArraySlice[O2]

Converts this chunk to a chunk backed by a single array.

Converts this chunk to a chunk backed by a single array.

Alternatively, call toIndexedChunk to get back a chunk with guaranteed O(1) indexed lookup while also minimizing copying.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def contains[O2 >: O](elem: O2)(implicit ev: Eq[O2]): Boolean

Returns true if the Chunk contains the given element.

Returns true if the Chunk contains the given element.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def count(p: O => Boolean): Int

Counts the number of elements which satisfy a predicate.

Counts the number of elements which satisfy a predicate.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def dropRight(n: Int): Chunk[O]

Drops the right-most n elements of this chunk queue in a way that preserves chunk structure.

Drops the right-most n elements of this chunk queue in a way that preserves chunk structure.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
override def equals(a: Any): Boolean

Compares the receiver object (this) with the argument object (that) for equivalence.

Compares the receiver object (this) with the argument object (that) for equivalence.

Any implementation of this method should be an equivalence relation:

- It is reflexive: for any instance x of type Any, x.equals(x) should return true. - It is symmetric: for any instances x and y of type Any, x.equals(y) should return true if and only if y.equals(x) returns true. - It is transitive: for any instances x, y, and z of type Any if x.equals(y) returns true and y.equals(z) returns true, then x.equals(z) should return true.

If you override this method, you should verify that your implementation remains an equivalence relation. Additionally, when overriding this method it is usually necessary to override hashCode to ensure that objects which are "equal" (o1.equals(o2) returns true) hash to the same scala.Int. (o1.hashCode.equals(o2.hashCode)).

Value parameters

that

the object to compare against this object for equality.

Attributes

Returns

true if the receiver object is equivalent to the argument; false otherwise.

Definition Classes
Chunk -> Any
Inherited from:
Chunk
Source
Chunk.scala
def exists(p: O => Boolean): Boolean

Returns true if at least one element passes the predicate.

Returns true if at least one element passes the predicate.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def filter(p: O => Boolean): Chunk[O]

Returns a chunk that has only the elements that satisfy the supplied predicate.

Returns a chunk that has only the elements that satisfy the supplied predicate.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def filterNot(p: O => Boolean): Chunk[O]

Returns a chunk that has only the elements that do not satisfy the supplied predicate.

Returns a chunk that has only the elements that do not satisfy the supplied predicate.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def find(p: O => Boolean): Option[O]

Returns the first element for which the predicate returns true or None if no elements satisfy the predicate.

Returns the first element for which the predicate returns true or None if no elements satisfy the predicate.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def flatMap[O2](f: O => Chunk[O2]): Chunk[O2]

Maps f over the elements of this chunk and concatenates the result.

Maps f over the elements of this chunk and concatenates the result.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def foldLeft[A](init: A)(f: (A, O) => A): A

Left-folds the elements of this chunk.

Left-folds the elements of this chunk.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def forall(p: O => Boolean): Boolean

Returns true if the predicate passes for all elements.

Returns true if the predicate passes for all elements.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
override def hashCode: Int

Calculate a hash code value for the object.

Calculate a hash code value for the object.

The default hashing algorithm is platform dependent.

Note that it is allowed for two objects to have identical hash codes (o1.hashCode.equals(o2.hashCode)) yet not be equal (o1.equals(o2) returns false). A degenerate implementation could always return 0. However, it is required that if two objects are equal (o1.equals(o2) returns true) that they have identical hash codes (o1.hashCode.equals(o2.hashCode)). Therefore, when overriding this method, be sure to verify that the behavior is consistent with the equals method.

Attributes

Returns

the hash code value for this object.

Definition Classes
Chunk -> Any
Inherited from:
Chunk
Source
Chunk.scala
def head: Option[O]

Gets the first element of this chunk.

Gets the first element of this chunk.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def indexWhere(p: O => Boolean): Option[Int]

Returns the index of the first element which passes the specified predicate (i.e., p(i) == true) or None if no elements pass the predicate.

Returns the index of the first element which passes the specified predicate (i.e., p(i) == true) or None if no elements pass the predicate.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
final def isEmpty: Boolean

True if size is zero, false otherwise.

True if size is zero, false otherwise.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def last: Option[O]

Gets the last element of this chunk.

Gets the last element of this chunk.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def map[O2](f: O => O2): Chunk[O2]

Creates a new chunk by applying f to each element in this chunk.

Creates a new chunk by applying f to each element in this chunk.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def mapAccumulate[S, O2](init: S)(f: (S, O) => (S, O2)): (S, Chunk[O2])

Maps the supplied stateful function over each element, outputting the final state and the accumulated outputs.

Maps the supplied stateful function over each element, outputting the final state and the accumulated outputs. The first invocation of f uses init as the input state value. Each successive invocation uses the output state of the previous invocation.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def mapFilter[O2](f: O => Option[O2]): Chunk[O2]

Maps the supplied function over each element and returns a chunk of just the defined results.

Maps the supplied function over each element and returns a chunk of just the defined results.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
final def nonEmpty: Boolean

False if size is zero, true otherwise.

False if size is zero, true otherwise.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def scanLeft[O2](z: O2)(f: (O2, O) => O2): Chunk[O2]

Like foldLeft but emits each intermediate result of f.

Like foldLeft but emits each intermediate result of f.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def scanLeftCarry[O2](z: O2)(f: (O2, O) => O2): (Chunk[O2], O2)

Like scanLeft except the final element is emitted as a standalone value instead of as the last element of the accumulated chunk.

Like scanLeft except the final element is emitted as a standalone value instead of as the last element of the accumulated chunk.

Equivalent to val b = a.scanLeft(z)(f); val (c, carry) = b.splitAt(b.size - 1).

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def splitAt(n: Int): (Chunk[O], Chunk[O])

Splits this chunk in to two chunks at the specified index.

Splits this chunk in to two chunks at the specified index.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def startsWith[O2 >: O](chunk: Chunk[O2]): Boolean

Check to see if this starts with the items in the given chunk.

Check to see if this starts with the items in the given chunk.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def takeRight(n: Int): Chunk[O]

Takes the right-most n elements of this chunk queue in a way that preserves chunk structure.

Takes the right-most n elements of this chunk queue in a way that preserves chunk structure.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def to(collector: Collector[O]): Out

Converts this chunk to a new collection using the supplied collector.

Converts this chunk to a new collection using the supplied collector.

Attributes

Example

scala> Chunk(1, 2, 3).to(Set)
Inherited from:
Chunk
Source
Chunk.scala
def toArray[O2 >: O : ClassTag]: Array[O2]

Copies the elements of this chunk to an array.

Copies the elements of this chunk to an array.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def toArraySeq[O2 >: O : ClassTag]: ArraySeq[O2]

Attributes

Inherited from:
Chunk213And3Compat (hidden)
Source
Chunk213And3Compat.scala
def toArraySeqUntagged: ArraySeq[O]

Attributes

Inherited from:
Chunk213And3Compat (hidden)
Source
Chunk213And3Compat.scala
def toArraySlice[O2 >: O](implicit ct: ClassTag[O2]): ArraySlice[O2]

Converts this chunk to a Chunk.ArraySlice.

Converts this chunk to a Chunk.ArraySlice.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def toBitVector[B >: O](implicit ev: B =:= Byte): BitVector

Converts this chunk to a scodec-bits BitVector.

Converts this chunk to a scodec-bits BitVector.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def toByteBuffer[B >: O](implicit ev: B =:= Byte): ByteBuffer

Converts this chunk to a java.nio.ByteBuffer.

Converts this chunk to a java.nio.ByteBuffer.

Attributes

Note

that even "read-only" interaction with a ByteBuffer may increment its position, so this method should be considered as unsafely allocating mutable state.

Inherited from:
Chunk
Source
Chunk.scala
def toChain: Chain[O]

Converts this chunk to a chain.

Converts this chunk to a chain.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def toCharBuffer[C >: O](implicit ev: C =:= Char): CharBuffer

Converts this chunk to a java.nio.CharBuffer.

Converts this chunk to a java.nio.CharBuffer.

Attributes

Note

that even "read-only" interaction with a CharBuffer may increment its position, so this method should be considered as unsafely allocating mutable state.

Inherited from:
Chunk
Source
Chunk.scala
def toIArray[O2 >: O : ClassTag]: IArray[O2]

Attributes

Inherited from:
ChunkPlatform (hidden)
Source
ChunkPlatform.scala
def toIArraySlice[O2 >: O](implicit ct: ClassTag[O2]): IArraySlice[O2]

Attributes

Inherited from:
ChunkPlatform (hidden)
Source
ChunkPlatform.scala

Returns a chunk with guaranteed O(1) lookup by index.

Returns a chunk with guaranteed O(1) lookup by index.

Unlike compact, this operation does not copy any elements unless this chunk does not provide O(1) lookup by index -- e.g., a chunk built via 1 or more usages of ++.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def toList: List[O]

Converts this chunk to a list.

Converts this chunk to a list.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def toNel: Option[NonEmptyList[O]]

Converts this chunk to a NonEmptyList

Converts this chunk to a NonEmptyList

Attributes

Inherited from:
Chunk
Source
Chunk.scala
override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Chunk -> Any
Inherited from:
Chunk
Source
Chunk.scala
def toVector: Vector[O]

Converts this chunk to a vector.

Converts this chunk to a vector.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def zip[O2](that: Chunk[O2]): Chunk[(O, O2)]

Zips this chunk the the supplied chunk, returning a chunk of tuples.

Zips this chunk the the supplied chunk, returning a chunk of tuples.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def zipWith[O2, O3](that: Chunk[O2])(f: (O, O2) => O3): Chunk[O3]

Zips this chunk with the supplied chunk, passing each pair to f, resulting in an output chunk.

Zips this chunk with the supplied chunk, passing each pair to f, resulting in an output chunk.

Attributes

Inherited from:
Chunk
Source
Chunk.scala
def zipWithIndex: Chunk[(O, Int)]

Zips the elements of the input chunk with its indices, and returns the new chunk.

Zips the elements of the input chunk with its indices, and returns the new chunk.

Attributes

Example

scala> Chunk("The", "quick", "brown", "fox").zipWithIndex.toList
res0: List[(String, Int)] = List((The,0), (quick,1), (brown,2), (fox,3))
Inherited from:
Chunk
Source
Chunk.scala

Deprecated and Inherited methods

def compactUntagged[O2 >: O]: ArraySlice[O2]

Like compact but does not require a ClassTag.

Like compact but does not require a ClassTag. Elements are boxed and stored in an Array[Any].

Attributes

Deprecated
true
Inherited from:
Chunk
Source
Chunk.scala

Concrete fields

val chunks: Queue[Chunk[O]]

Attributes

Source
Chunk.scala
val size: Int

Returns the number of elements in this chunk.

Returns the number of elements in this chunk.

Attributes

Source
Chunk.scala