Class/Object

fs2.interop.scodec

ByteVectorChunk

Related Docs: object ByteVectorChunk | package scodec

Permalink

final class ByteVectorChunk extends Chunk[Byte]

Source
ByteVectorChunk.scala
Linear Supertypes
Chunk[Byte], Segment[Byte, Unit], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ByteVectorChunk
  2. Chunk
  3. Segment
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from ByteVectorChunk to any2stringadd[ByteVectorChunk] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. final def ++[O2 >: Byte, R2 >: Unit](s2: Segment[O2, R2]): Segment[O2, R2]

    Permalink
    Definition Classes
    Segment
  5. def ->[B](y: B): (ByteVectorChunk, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from ByteVectorChunk to ArrowAssoc[ByteVectorChunk] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  7. def apply(i: Int): Byte

    Permalink
    Definition Classes
    ByteVectorChunk → Chunk
  8. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. final def collect[O2](pf: PartialFunction[Byte, O2]): Segment[O2, Unit]

    Permalink
    Definition Classes
    Segment
  11. final def cons[O2 >: Byte](o2: O2): Segment[O2, Unit]

    Permalink
    Definition Classes
    Segment
  12. final def drain: Segment[Nothing, Unit]

    Permalink
    Definition Classes
    Segment
  13. final def drop(n: Long): Either[(Unit, Long), Segment[Byte, Unit]]

    Permalink
    Definition Classes
    Segment
  14. final def dropWhile(p: (Byte) ⇒ Boolean, dropFailure: Boolean): Either[Unit, Segment[Byte, Unit]]

    Permalink
    Definition Classes
    Segment
  15. def ensuring(cond: (ByteVectorChunk) ⇒ Boolean, msg: ⇒ Any): ByteVectorChunk

    Permalink
    Implicit information
    This member is added by an implicit conversion from ByteVectorChunk to Ensuring[ByteVectorChunk] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: (ByteVectorChunk) ⇒ Boolean): ByteVectorChunk

    Permalink
    Implicit information
    This member is added by an implicit conversion from ByteVectorChunk to Ensuring[ByteVectorChunk] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean, msg: ⇒ Any): ByteVectorChunk

    Permalink
    Implicit information
    This member is added by an implicit conversion from ByteVectorChunk to Ensuring[ByteVectorChunk] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: Boolean): ByteVectorChunk

    Permalink
    Implicit information
    This member is added by an implicit conversion from ByteVectorChunk to Ensuring[ByteVectorChunk] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  20. def equals(a: Any): Boolean

    Permalink
    Definition Classes
    Segment → AnyRef → Any
  21. final def filter[O2](p: (Byte) ⇒ Boolean): Segment[Byte, Unit]

    Permalink
    Definition Classes
    Segment
  22. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  23. final def fold[B](z: B)(f: (B, Byte) ⇒ B): Segment[Nothing, B]

    Permalink
    Definition Classes
    Segment
  24. def foreach(f: (Byte) ⇒ Unit): Unit

    Permalink
    Definition Classes
    Segment
  25. def foreachChunk(f: (Chunk[Byte]) ⇒ Unit): Unit

    Permalink
    Definition Classes
    Chunk → Segment
  26. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from ByteVectorChunk to StringFormat[ByteVectorChunk] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  27. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  28. def hashCode(): Int

    Permalink
    Definition Classes
    Segment → AnyRef → Any
  29. def indexWhere(p: (Byte) ⇒ Boolean): Option[Int]

    Permalink
    Definition Classes
    Chunk
  30. final def isEmpty: Boolean

    Permalink
    Definition Classes
    Chunk
  31. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  32. def last: Segment[Nothing, (Unit, Option[Byte])]

    Permalink
    Definition Classes
    Segment
  33. def map[O2](f: (Byte) ⇒ O2): Segment[O2, Unit]

    Permalink
    Definition Classes
    Segment
  34. def mapAccumulate[S, O2](init: S)(f: (S, Byte) ⇒ (S, O2)): Segment[O2, (Unit, S)]

    Permalink
    Definition Classes
    Segment
  35. final def mapResult[R2](f: (Unit) ⇒ R2): Segment[Byte, R2]

    Permalink
    Definition Classes
    Segment
  36. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  37. final def nonEmpty: Boolean

    Permalink
    Definition Classes
    Chunk
  38. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  39. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  40. final def prepend[O2 >: Byte](c: Segment[O2, Any]): Segment[O2, Unit]

    Permalink
    Definition Classes
    Segment
  41. final def run[O2 >: Byte](implicit ev: =:=[O2, Unit]): Unit

    Permalink
    Definition Classes
    Segment
  42. final def scan[B](z: B, emitFinal: Boolean)(f: (B, Byte) ⇒ B): Segment[B, B]

    Permalink
    Definition Classes
    Segment
  43. def size: Int

    Permalink
    Definition Classes
    ByteVectorChunk → Chunk
  44. final def splitAt(n: Long): Either[(Unit, Catenable[Segment[Byte, Unit]], Long), (Catenable[Segment[Byte, Unit]], Segment[Byte, Unit])]

    Permalink
    Definition Classes
    Segment
  45. def splitAtChunk_(n: Int): (Chunk[Byte], Chunk[Byte])

    Permalink
    Attributes
    protected
    Definition Classes
    ByteVectorChunk → Chunk
  46. final def splitWhile(p: (Byte) ⇒ Boolean, emitFailure: Boolean): Either[(Unit, Catenable[Segment[Byte, Unit]]), (Catenable[Segment[Byte, Unit]], Segment[Byte, Unit])]

    Permalink
    Definition Classes
    Segment
  47. final def strict: StrictOps[Byte]

    Permalink
    Definition Classes
    Chunk
  48. final def sum[N >: Byte](implicit N: Numeric[N]): Segment[Nothing, N]

    Permalink
    Definition Classes
    Segment
  49. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  50. final def take(n: Long): Segment[Byte, Either[(Unit, Long), Segment[Byte, Unit]]]

    Permalink
    Definition Classes
    Segment
  51. final def takeWhile(p: (Byte) ⇒ Boolean, takeFailure: Boolean): Segment[Byte, Either[Unit, Segment[Byte, Unit]]]

    Permalink
    Definition Classes
    Segment
  52. def toArray[B >: Byte](implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Definition Classes
    Chunk
  53. def toBooleans[B >: Byte](implicit ev: =:=[B, Boolean]): Booleans

    Permalink
    Definition Classes
    Chunk
  54. val toByteVector: ByteVector

    Permalink
  55. def toBytes[B >: Byte](implicit ev: =:=[B, Byte]): Bytes

    Permalink
    Definition Classes
    Chunk
  56. def toCatenable: Catenable[Byte]

    Permalink
    Definition Classes
    Segment
  57. def toChunk: Chunk[Byte]

    Permalink
    Definition Classes
    Chunk → Segment
  58. def toChunks: Catenable[Chunk[Byte]]

    Permalink
    Definition Classes
    Chunk → Segment
  59. def toDoubles[B >: Byte](implicit ev: =:=[B, Double]): Doubles

    Permalink
    Definition Classes
    Chunk
  60. def toFloats[B >: Byte](implicit ev: =:=[B, Float]): Floats

    Permalink
    Definition Classes
    Chunk
  61. def toInts[B >: Byte](implicit ev: =:=[B, Int]): Ints

    Permalink
    Definition Classes
    Chunk
  62. def toList: List[Byte]

    Permalink
    Definition Classes
    Segment
  63. def toLongs[B >: Byte](implicit ev: =:=[B, Long]): Longs

    Permalink
    Definition Classes
    Chunk
  64. def toShorts[B >: Byte](implicit ev: =:=[B, Short]): Shorts

    Permalink
    Definition Classes
    Chunk
  65. def toString(): String

    Permalink
    Definition Classes
    Chunk → AnyRef → Any
  66. def toVector: Vector[Byte]

    Permalink
    Definition Classes
    Chunk → Segment
  67. final def uncons: Either[Unit, (Segment[Byte, Unit], Segment[Byte, Unit])]

    Permalink
    Definition Classes
    Segment
  68. final def uncons1: Either[Unit, (Byte, Segment[Byte, Unit])]

    Permalink
    Definition Classes
    Segment
    Annotations
    @tailrec()
  69. def unconsChunk: Either[Unit, (Chunk[Byte], Segment[Byte, Unit])]

    Permalink
    Definition Classes
    Chunk → Segment
  70. final def unconsChunks: Either[Unit, (Catenable[Chunk[Byte]], Segment[Byte, Unit])]

    Permalink
    Definition Classes
    Segment
  71. final def void: Segment[Unit, Unit]

    Permalink
    Definition Classes
    Segment
  72. final def voidResult: Segment[Byte, Unit]

    Permalink
    Definition Classes
    Segment
  73. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  74. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  75. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  76. def withSize: Segment[Byte, (Unit, Long)]

    Permalink
    Definition Classes
    Segment
  77. def zipWith[O2, R2, O3](that: Segment[O2, R2])(f: (Byte, O2) ⇒ O3): Segment[O3, Either[(Unit, Segment[O2, R2]), (R2, Segment[Byte, Unit])]]

    Permalink
    Definition Classes
    Segment
  78. def [B](y: B): (ByteVectorChunk, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from ByteVectorChunk to ArrowAssoc[ByteVectorChunk] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from Chunk[Byte]

Inherited from Segment[Byte, Unit]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from ByteVectorChunk to any2stringadd[ByteVectorChunk]

Inherited by implicit conversion StringFormat from ByteVectorChunk to StringFormat[ByteVectorChunk]

Inherited by implicit conversion Ensuring from ByteVectorChunk to Ensuring[ByteVectorChunk]

Inherited by implicit conversion ArrowAssoc from ByteVectorChunk to ArrowAssoc[ByteVectorChunk]

Ungrouped