Packages

c

fs2.Chunk

Buffer

sealed abstract class Buffer[A <: Buffer[A, B, C], B <: java.nio.Buffer, C] extends Chunk[C]

Source
Chunk.scala
Linear Supertypes
Chunk[C], ChunkPlatform[C], Serializable, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Buffer
  2. Chunk
  3. ChunkPlatform
  4. Serializable
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def buffer(b: B): A
  2. abstract def duplicate(b: B): B
  3. abstract def get(b: B, dest: Array[C], offset: Int, length: Int): B
  4. abstract def get(b: B, n: Int): C
  5. abstract def readOnly(b: B): B

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def ++[O2 >: C](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).

    Definition Classes
    Chunk
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. def apply(i: Int): C

    Returns the element at the specified index.

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

    Definition Classes
    BufferChunk
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  8. def collect[O2](pf: PartialFunction[C, O2]): Chunk[O2]

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

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

    Definition Classes
    Chunk
  9. def compact[O2 >: C](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.

    Definition Classes
    Chunk
  10. def copyToArray[O2 >: C](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.

    Definition Classes
    BufferChunk
  11. def drop(n: Int): Chunk[C]

    Drops the first n elements of this chunk.

    Drops the first n elements of this chunk.

    Definition Classes
    BufferChunk
  12. def dropRight(n: Int): Chunk[C]

    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.

    Definition Classes
    Chunk
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(a: Any): Boolean
    Definition Classes
    Chunk → AnyRef → Any
  15. def filter(p: (C) => Boolean): Chunk[C]

    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.

    Definition Classes
    Chunk
  16. def find(p: (C) => Boolean): Option[C]

    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.

    Definition Classes
    Chunk
  17. def flatMap[O2](f: (C) => 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.

    Definition Classes
    Chunk
  18. def foldLeft[A](init: A)(f: (A, C) => A): A

    Left-folds the elements of this chunk.

    Left-folds the elements of this chunk.

    Definition Classes
    Chunk
  19. def forall(p: (C) => Boolean): Boolean

    Returns true if the predicate passes for all elements.

    Returns true if the predicate passes for all elements.

    Definition Classes
    Chunk
  20. def foreach(f: (C) => Unit): Unit

    Invokes the supplied function for each element of this chunk.

    Invokes the supplied function for each element of this chunk.

    Definition Classes
    Chunk
  21. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. def hashCode(): Int
    Definition Classes
    Chunk → AnyRef → Any
  23. def head: Option[C]

    Gets the first element of this chunk.

    Gets the first element of this chunk.

    Definition Classes
    Chunk
  24. def indexWhere(p: (C) => 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.

    Definition Classes
    Chunk
  25. final def isEmpty: Boolean

    True if size is zero, false otherwise.

    True if size is zero, false otherwise.

    Definition Classes
    Chunk
  26. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  27. def iterator: Iterator[C]

    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.

    Definition Classes
    Chunk
  28. def last: Option[C]

    Gets the last element of this chunk.

    Gets the last element of this chunk.

    Definition Classes
    Chunk
  29. def map[O2](f: (C) => 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.

    Definition Classes
    Chunk
  30. def mapAccumulate[S, O2](init: S)(f: (S, C) => (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.

    Definition Classes
    Chunk
  31. def mapFilter[O2](f: (C) => 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.

    Definition Classes
    Chunk
  32. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  33. final def nonEmpty: Boolean

    False if size is zero, true otherwise.

    False if size is zero, true otherwise.

    Definition Classes
    Chunk
  34. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  35. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  36. val offset: Int
  37. def reverseIterator: Iterator[C]

    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.

    Definition Classes
    Chunk
  38. def scanLeft[O2](z: O2)(f: (O2, C) => O2): Chunk[O2]

    Like foldLeft but emits each intermediate result of f.

    Like foldLeft but emits each intermediate result of f.

    Definition Classes
    Chunk
  39. def scanLeftCarry[O2](z: O2)(f: (O2, C) => 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).

    Definition Classes
    Chunk
  40. def scanLeft_[O2](z: O2, emitZero: Boolean)(f: (O2, C) => O2): (Chunk[O2], O2)
    Attributes
    protected
    Definition Classes
    Chunk
  41. val size: Int

    Returns the number of elements in this chunk.

    Returns the number of elements in this chunk.

    Definition Classes
    BufferChunk
  42. def splitAt(n: Int): (Chunk[C], Chunk[C])

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

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

    Definition Classes
    Chunk
  43. def splitAtChunk_(n: Int): (A, A)

    Splits this chunk in to two chunks at the specified index n, which is guaranteed to be in-bounds.

    Splits this chunk in to two chunks at the specified index n, which is guaranteed to be in-bounds.

    Attributes
    protected
    Definition Classes
    BufferChunk
  44. def startsWith[O2 >: C](seq: Seq[O2]): Boolean

    Check to see if this starts with the items in the given seq should be the same as take(seq.size).toChunk == Chunk.seq(seq).

    Check to see if this starts with the items in the given seq should be the same as take(seq.size).toChunk == Chunk.seq(seq).

    Definition Classes
    Chunk
  45. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  46. def take(n: Int): Chunk[C]

    Takes the first n elements of this chunk.

    Takes the first n elements of this chunk.

    Definition Classes
    BufferChunk
  47. def takeRight(n: Int): Chunk[C]

    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.

    Definition Classes
    Chunk
  48. def toArray[O2 >: C](implicit arg0: ClassTag[O2]): Array[O2]

    Copies the elements of this chunk to an array.

    Copies the elements of this chunk to an array.

    Definition Classes
    BufferChunk
  49. def toArraySeq[O2 >: C](implicit arg0: ClassTag[O2]): ArraySeq[O2]
    Definition Classes
    ChunkPlatform
  50. def toArraySeqUntagged: ArraySeq[C]
    Definition Classes
    ChunkPlatform
  51. def toArraySlice[O2 >: C](implicit ct: ClassTag[O2]): ArraySlice[O2]
    Definition Classes
    Chunk
  52. def toBitVector[B >: C](implicit ev: =:=[B, Byte]): BitVector

    Converts this chunk to a scodec-bits BitVector.

    Converts this chunk to a scodec-bits BitVector.

    Definition Classes
    Chunk
  53. def toByteBuffer[B >: C](implicit ev: =:=[B, Byte]): java.nio.ByteBuffer

    Converts this chunk to a java.nio.ByteBuffer.

    Converts this chunk to a java.nio.ByteBuffer.

    Definition Classes
    Chunk
  54. def toByteVector[B >: C](implicit ev: =:=[B, Byte]): ByteVector

    Converts this chunk to a scodec-bits ByteVector.

    Converts this chunk to a scodec-bits ByteVector.

    Definition Classes
    Chunk
  55. def toChain: Chain[C]

    Converts this chunk to a chain.

    Converts this chunk to a chain.

    Definition Classes
    Chunk
  56. def toList: List[C]

    Converts this chunk to a list.

    Converts this chunk to a list.

    Definition Classes
    Chunk
  57. def toNel: Option[NonEmptyList[C]]

    Converts this chunk to a NonEmptyList

    Converts this chunk to a NonEmptyList

    Definition Classes
    Chunk
  58. def toString(): String
    Definition Classes
    Chunk → AnyRef → Any
  59. def toVector: Vector[C]

    Converts this chunk to a vector.

    Converts this chunk to a vector.

    Definition Classes
    Chunk
  60. def traverse[F[_], O2](f: (C) => F[O2])(implicit F: Applicative[F]): F[Chunk[O2]]
    Definition Classes
    Chunk
  61. def traverseFilter[F[_], O2](f: (C) => F[Option[O2]])(implicit F: Applicative[F]): F[Chunk[O2]]
    Definition Classes
    Chunk
  62. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  63. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  64. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  65. def zip[O2](that: Chunk[O2]): Chunk[(C, 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.

    Definition Classes
    Chunk
  66. def zipWith[O2, O3](that: Chunk[O2])(f: (C, 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.

    Definition Classes
    Chunk
  67. def zipWithIndex: Chunk[(C, 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.

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

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Chunk[C]

Inherited from ChunkPlatform[C]

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped