Trait/Object

scodec.bits

ByteVector

Related Docs: object ByteVector | package bits

Permalink

sealed trait ByteVector extends BitwiseOperations[ByteVector, Int] with Serializable

An immutable vector of bytes, backed by a balanced binary tree of chunks. Most operations are logarithmic in the depth of this tree, including ++, :+, +:, update, and insert. Where possible, operations return lazy views rather than copying any underlying bytes. Use copy to copy all underlying bytes to a fresh, array-backed ByteVector.

Unless otherwise noted, operations follow the same naming as the scala standard library collections, though this class does not extend any of the standard scala collections. Use toIndexedSeq, toSeq, or toIterable to obtain a regular scala.collection type.

Source
ByteVector.scala
Linear Supertypes
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Grouped
  2. Alphabetic
  3. By inheritance
Inherited
  1. ByteVector
  2. Serializable
  3. Serializable
  4. BitwiseOperations
  5. AnyRef
  6. 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

Abstract Value Members

  1. abstract def getImpl(index: Int): Byte

    Permalink
    Attributes
    protected
  2. abstract def size: Int

    Permalink

    Returns the number of bytes in this vector.

Concrete Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def &(other: ByteVector): ByteVector

    Permalink

    Returns a bitwise AND of this value with the specified value.

    Returns a bitwise AND of this value with the specified value.

    The resulting value's size is the minimum of this value's size and the specified value's size.

    Definition Classes
    BitwiseOperations
  4. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from ByteVector to any2stringadd[ByteVector] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  5. def ++(other: ByteVector): ByteVector

    Permalink

    Returns a new byte vector representing this vector's contents followed by the specified vector's contents.

  6. final def +:(byte: Byte): ByteVector

    Permalink

    Returns a new vector with the specified byte prepended.

  7. def ->[B](y: B): (ByteVector, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from ByteVector to ArrowAssoc[ByteVector] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  8. def :+(byte: Byte): ByteVector

    Permalink

    Returns a new vector with the specified byte appended.

  9. final def <<(n: Int): ByteVector

    Permalink

    Returns a value of the same size with each bit shifted to the left n bits.

    Returns a value of the same size with each bit shifted to the left n bits.

    Definition Classes
    BitwiseOperations
  10. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. final def ===(other: ByteVector): Boolean

    Permalink

    Returns true if the specified ByteVector has the same contents as this vector.

  12. final def >>(n: Int): ByteVector

    Permalink

    Returns a value of the same size with each bit shifted to the right n bits where the n left-most bits are sign extended.

    Returns a value of the same size with each bit shifted to the right n bits where the n left-most bits are sign extended.

    Definition Classes
    BitwiseOperations
  13. final def >>>(n: Int): ByteVector

    Permalink

    Returns a value of the same size with each bit shifted to the right n bits where the n left-most bits are low.

    Returns a value of the same size with each bit shifted to the right n bits where the n left-most bits are low.

    Definition Classes
    BitwiseOperations
  14. final def ^(other: ByteVector): ByteVector

    Permalink

    Returns a bitwise XOR of this value with the specified value.

    Returns a bitwise XOR of this value with the specified value.

    The resulting value's size is the minimum of this value's size and the specified value's size.

    Definition Classes
    BitwiseOperations
  15. def acquire(n: Int): Either[String, ByteVector]

    Permalink

    Returns a vector whose contents are the results of taking the first n bytes of this vector.

    Returns a vector whose contents are the results of taking the first n bytes of this vector.

    If this vector does not contain at least n bytes, an error message is returned.

    See also

    take

  16. final def and(other: ByteVector): ByteVector

    Permalink

    Returns a bitwise AND of this bit vector with the specified bit vector.

    Returns a bitwise AND of this bit vector with the specified bit vector.

    The resulting bit vector's size is the minimum of this bit vector's size and the specified bit vector's size.

    Definition Classes
    ByteVectorBitwiseOperations
  17. final def apply(index: Int): Byte

    Permalink

    Alias for get.

    Alias for get.

    Exceptions thrown

    IndexOutOfBoundsException if the specified index is not in [0, size)

  18. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  19. final def bits: BitVector

    Permalink

    Alias for toBitVector.

  20. final def buffer: ByteVector

    Permalink

    Allocate (unobservable) mutable scratch space at the end of this ByteVector, which will be used to support fast :+ and ++ of small vectors.

    Allocate (unobservable) mutable scratch space at the end of this ByteVector, which will be used to support fast :+ and ++ of small vectors. A default chunk size is used.

    Note that :+, ++, and drop on the result of a call to buffer are guaranteed to return another buffered ByteVector.

  21. final def bufferBy(chunkSize: Int): ByteVector

    Permalink

    Allocate (unobservable) mutable scratch space at the end of this ByteVector, with chunks of the given size, which will be used to support fast :+ and ++ of small vectors.

    Allocate (unobservable) mutable scratch space at the end of this ByteVector, with chunks of the given size, which will be used to support fast :+ and ++ of small vectors.

    Note that :+, ++, and drop on the result of a call to buffer are guaranteed to return another buffered ByteVector, with the same size scratch space.

  22. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def compact: ByteVector

    Permalink

    Returns a vector with the same contents but represented as a single tree node internally.

    Returns a vector with the same contents but represented as a single tree node internally.

    This may involve copying data, but has the advantage that lookups index directly into a single node rather than traversing a logarithmic number of nodes in this tree.

    Calling this method on an already compacted vector is a no-op.

  24. final def consume[A](n: Int)(decode: (ByteVector) ⇒ Either[String, A]): Either[String, (ByteVector, A)]

    Permalink

    Consumes the first n bytes of this vector and decodes them with the specified function, resulting in a vector of the remaining bytes and the decoded value.

    Consumes the first n bytes of this vector and decodes them with the specified function, resulting in a vector of the remaining bytes and the decoded value. If this vector does not have n bytes or an error occurs while decoding, an error is returned instead.

  25. final def containsSlice(slice: ByteVector): Boolean

    Permalink

    Determines if the specified slice is in this vector.

  26. final def copy: ByteVector

    Permalink

    Returns a vector with the same contents as this vector but with a single compacted node made up by evaluating all internal nodes and concatenating their values.

  27. final def copyToArray(xs: Array[Byte], start: Int, offset: Int, size: Int): Unit

    Permalink

    Copies size bytes of this vector, starting at index offset, to array xs, beginning at index start.

  28. final def copyToArray(xs: Array[Byte], start: Int): Unit

    Permalink

    Copies the contents of this vector to array xs, beginning at index start.

  29. final def copyToStream(s: OutputStream): Unit

    Permalink

    Copies the contents of this vector to OutputStream s.

  30. final def decodeAscii: Either[CharacterCodingException, String]

    Permalink

    Decodes this vector as a string using the US-ASCII charset.

  31. final def decodeString(implicit charset: Charset): Either[CharacterCodingException, String]

    Permalink

    Decodes this vector as a string using the implicitly available charset.

  32. final def decodeUtf8: Either[CharacterCodingException, String]

    Permalink

    Decodes this vector as a string using the UTF-8 charset.

  33. final def decrypt(ci: Cipher, key: Key, aparams: Option[AlgorithmParameters] = None)(implicit sr: SecureRandom): Either[GeneralSecurityException, ByteVector]

    Permalink

    Decrypts this byte vector using the specified cipher and key.

    Decrypts this byte vector using the specified cipher and key.

    ci

    cipher to use for decryption

    key

    key to decrypt with

    aparams

    optional algorithm paramaters used for decryption (e.g., initialization vector)

    sr

    secure random

  34. final def deflate(level: Int = Deflater.DEFAULT_COMPRESSION, strategy: Int = Deflater.DEFAULT_STRATEGY, nowrap: Boolean = false, chunkSize: Int = 4096): ByteVector

    Permalink

    Compresses this vector using ZLIB.

    Compresses this vector using ZLIB.

    level

    compression level, 0-9, with 0 disabling compression and 9 being highest level of compression -- see java.util.zip.Deflater for details

    strategy

    compression strategy -- see java.util.zip.Deflater for details

    nowrap

    if true, ZLIB header and checksum will not be used

    chunkSize

    buffer size, in bytes, to use when compressing

  35. final def digest(digest: MessageDigest): ByteVector

    Permalink

    Computes a digest of this byte vector.

    Computes a digest of this byte vector.

    digest

    digest to use

  36. final def digest(algorithm: String): ByteVector

    Permalink

    Computes a digest of this byte vector.

    Computes a digest of this byte vector.

    algorithm

    digest algorithm to use

  37. def drop(n: Int): ByteVector

    Permalink

    Returns a vector of all bytes in this vector except the first n bytes.

    Returns a vector of all bytes in this vector except the first n bytes.

    The resulting vector's size is 0 max (size - n).

  38. final def dropRight(n: Int): ByteVector

    Permalink

    Returns a vector of all bytes in this vector except the last n bytes.

    Returns a vector of all bytes in this vector except the last n bytes.

    The resulting vector's size is 0 max (size - n).

  39. final def dropWhile(f: (Byte) ⇒ Boolean): ByteVector

    Permalink

    Drops the longest prefix of this vector such that every byte of the prefix satisfies the specific predicate.

  40. final def encrypt(ci: Cipher, key: Key, aparams: Option[AlgorithmParameters] = None)(implicit sr: SecureRandom): Either[GeneralSecurityException, ByteVector]

    Permalink

    Encrypts this byte vector using the specified cipher and key.

    Encrypts this byte vector using the specified cipher and key.

    ci

    cipher to use for encryption

    key

    key to encrypt with

    aparams

    optional algorithm paramaters used for encryption (e.g., initialization vector)

    sr

    secure random

  41. final def endsWith(b: ByteVector): Boolean

    Permalink

    Returns true if this byte vector ends with the specified vector.

  42. def ensuring(cond: (ByteVector) ⇒ Boolean, msg: ⇒ Any): ByteVector

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  47. def equals(other: Any): Boolean

    Permalink

    Returns true if the specified value is a ByteVector with the same contents as this vector.

    Returns true if the specified value is a ByteVector with the same contents as this vector.

    Definition Classes
    ByteVector → AnyRef → Any
    See also

    ByteVector.===

  48. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  49. final def foldLeft[A](z: A)(f: (A, Byte) ⇒ A): A

    Permalink

    Applies a binary operator to a start value and all elements of this vector, going left to right.

    Applies a binary operator to a start value and all elements of this vector, going left to right.

    z

    starting value

    f

    operator to apply

  50. final def foldRight[A](z: A)(f: (Byte, A) ⇒ A): A

    Permalink

    Applies a binary operator to a start value and all elements of this vector, going right to left.

    Applies a binary operator to a start value and all elements of this vector, going right to left.

    z

    starting value

    f

    operator to apply

  51. final def foreach(f: (Byte) ⇒ Unit): Unit

    Permalink

    Applies the specified function to each element of this vector.

  52. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from ByteVector to StringFormat[ByteVector] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  53. def get(index: Int): Byte

    Permalink

    Gets the byte at the specified index.

    Gets the byte at the specified index.

    Exceptions thrown

    IndexOutOfBoundsException if the specified index is not in [0, size)

  54. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  55. final def grouped(chunkSize: Int): Stream[ByteVector]

    Permalink

    Converts this vector in to a sequence of chunkSize-byte vectors.

  56. lazy val hashCode: Int

    Permalink

    Calculates the hash code of this vector.

    Calculates the hash code of this vector. The result is cached.

    Definition Classes
    ByteVector → AnyRef → Any
  57. final def head: Byte

    Permalink

    Returns the first byte of this vector or throws if vector is emtpy.

  58. final def headOption: Option[Byte]

    Permalink

    Returns the first byte of this vector or None if vector is emtpy.

  59. def iff(other: ByteVector): ByteVector

    Permalink

    Returns a bitwise if-and-only-if of this value with the specified value.

    Returns a bitwise if-and-only-if of this value with the specified value.

    The resulting value's size is the minimum of this value's size and the specified value's size.

    Definition Classes
    BitwiseOperations
  60. def implies(other: ByteVector): ByteVector

    Permalink

    Returns a bitwise implication of this value with the specified value.

    Returns a bitwise implication of this value with the specified value.

    The resulting value's size is the minimum of this value's size and the specified value's size.

    Definition Classes
    BitwiseOperations
  61. final def indexOfSlice(slice: ByteVector, from: Int): Int

    Permalink

    Finds the first index after from of the specified byte pattern in this vector.

    Finds the first index after from of the specified byte pattern in this vector.

    returns

    index of slice or -1 if not found

  62. final def indexOfSlice(slice: ByteVector): Int

    Permalink

    Finds the first index of the specified byte pattern in this vector.

    Finds the first index of the specified byte pattern in this vector.

    returns

    index of slice or -1 if not found

  63. final def inflate(chunkSize: Int = 4096): Either[DataFormatException, ByteVector]

    Permalink

    Decompresses this vector using ZLIB.

    Decompresses this vector using ZLIB.

    chunkSize

    buffer size, in bytes, to use when compressing

  64. final def init: ByteVector

    Permalink

    Returns a vector of all bytes in this vector except the last byte.

  65. final def insert(idx: Int, b: Byte): ByteVector

    Permalink

    Returns a vector with the specified byte inserted at the specified index.

  66. final def isEmpty: Boolean

    Permalink

    Returns true if this vector has no bytes.

  67. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  68. final def last: Byte

    Permalink

    Returns the last byte in this vector or throws if vector is empty.

  69. final def lastOption: Option[Byte]

    Permalink

    Returns the last byte in this vector or returns None if vector is empty.

  70. final def length: Int

    Permalink

    Alias for size.

  71. final def lift(index: Int): Option[Byte]

    Permalink

    Returns the byte at the specified index, or None if the index is out of range.

  72. final def map(f: (Byte) ⇒ Byte): ByteVector

    Permalink

    Returns a vector where each byte is the result of applying the specified function to the corresponding byte in this vector.

    Returns a vector where each byte is the result of applying the specified function to the corresponding byte in this vector. This method returns a view and hence, is O(1). Call compact generate a new strict vector.

  73. final def mapI(f: (Byte) ⇒ Int): ByteVector

    Permalink

    Returns a vector where each byte is the result of applying the specified function to the corresponding byte in this vector.

    Returns a vector where each byte is the result of applying the specified function to the corresponding byte in this vector. Only the least significant byte is used (the three most significant bytes are ignored). This method returns a view and hence, is O(1). Call compact generate a new strict vector.

  74. def nand(other: ByteVector): ByteVector

    Permalink

    Returns a bitwise NAND of this value with the specified value.

    Returns a bitwise NAND of this value with the specified value.

    The resulting value's size is the minimum of this value's size and the specified value's size.

    Definition Classes
    BitwiseOperations
  75. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  76. final def nonEmpty: Boolean

    Permalink

    Returns true if this vector has a non-zero number of bytes.

  77. def nor(other: ByteVector): ByteVector

    Permalink

    Returns a bitwise NOR of this value with the specified value.

    Returns a bitwise NOR of this value with the specified value.

    The resulting value's size is the minimum of this value's size and the specified value's size.

    Definition Classes
    BitwiseOperations
  78. final def not: ByteVector

    Permalink

    Returns a bitwise complement of this bit vector.

    Returns a bitwise complement of this bit vector.

    Definition Classes
    ByteVectorBitwiseOperations
  79. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  81. final def or(other: ByteVector): ByteVector

    Permalink

    Returns a bitwise OR of this bit vector with the specified bit vector.

    Returns a bitwise OR of this bit vector with the specified bit vector.

    The resulting bit vector's size is the minimum of this bit vector's size and the specified bit vector's size.

    Definition Classes
    ByteVectorBitwiseOperations
  82. final def padLeft(n: Int): ByteVector

    Permalink

    Returns an n-bytes vector whose contents are 0 or more zero bytes followed by this vector's contents.

    Returns an n-bytes vector whose contents are 0 or more zero bytes followed by this vector's contents.

    Exceptions thrown

    IllegalArgumentException if n < size

  83. final def padRight(n: Int): ByteVector

    Permalink

    Returns an n-byte vector whose contents are this vector's contents followed by 0 or more zero bytes.

    Returns an n-byte vector whose contents are this vector's contents followed by 0 or more zero bytes.

    Exceptions thrown

    IllegalArgumentException if n < size

  84. final def padTo(n: Int): ByteVector

    Permalink

    Alias for padRight.

    Alias for padRight.

    Exceptions thrown

    IllegalArgumentException if n < size

  85. final def partialCompact(chunkSize: Int): ByteVector

    Permalink

    Invokes compact on any subtrees whose size is <= chunkSize.

  86. final def patch(idx: Int, b: ByteVector): ByteVector

    Permalink

    Returns a vector with the specified byte vector replacing bytes [idx, idx + b.size].

  87. final def reverse: ByteVector

    Permalink

    Returns a vector with the bytes of this vector in reverse order.

    Returns a vector with the bytes of this vector in reverse order. This method returns a view and hence, is O(1). Call compact generate a new strict vector.

  88. final def rotateLeft(n: Int): ByteVector

    Permalink

    Returns a bit vector of the same size with each bit circularly shifted to the left n bits.

    Returns a bit vector of the same size with each bit circularly shifted to the left n bits.

    Definition Classes
    ByteVectorBitwiseOperations
  89. final def rotateRight(n: Int): ByteVector

    Permalink

    Returns a bit vector of the same size with each bit circularly shifted to the right n bits.

    Returns a bit vector of the same size with each bit circularly shifted to the right n bits.

    Definition Classes
    ByteVectorBitwiseOperations
  90. final def shiftLeft(n: Int): ByteVector

    Permalink

    Returns a bit vector of the same size with each bit shifted to the left n bits.

    Returns a bit vector of the same size with each bit shifted to the left n bits.

    Definition Classes
    ByteVectorBitwiseOperations
  91. final def shiftRight(n: Int, signExtension: Boolean): ByteVector

    Permalink

    Returns a bit vector of the same size with each bit shifted to the right n bits.

    Returns a bit vector of the same size with each bit shifted to the right n bits.

    signExtension

    whether the n left-msot bits should take on the value of bit 0

    Definition Classes
    ByteVectorBitwiseOperations
  92. final def slice(from: Int, until: Int): ByteVector

    Permalink

    Returns a vector made up of the bytes starting at index from up to index until.

  93. final def splice(idx: Int, b: ByteVector): ByteVector

    Permalink

    Returns a vector with the specified byte vector inserted at the specified index.

  94. final def splitAt(n: Int): (ByteVector, ByteVector)

    Permalink

    Returns a pair of vectors that is equal to (take(n), drop(n)).

  95. final def startsWith(b: ByteVector): Boolean

    Permalink

    Returns true if this byte vector starts with the specified vector.

  96. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  97. final def tail: ByteVector

    Permalink

    Returns a vector of all bytes in this vector except the first byte.

  98. def take(n: Int): ByteVector

    Permalink

    Returns a vector of the first n bytes of this vector.

    Returns a vector of the first n bytes of this vector.

    The resulting vector's size is n min size.

    Note: if an n-bit vector is required, use the acquire method instead.

    See also

    acquire

  99. final def takeRight(n: Int): ByteVector

    Permalink

    Returns a vector of the last n bytes of this vector.

    Returns a vector of the last n bytes of this vector.

    The resulting vector's size is n min size.

  100. final def takeWhile(f: (Byte) ⇒ Boolean): ByteVector

    Permalink

    Returns the longest prefix of this vector such that every byte satisfies the specific predicate.

  101. final def toArray: Array[Byte]

    Permalink

    Converts the contents of this vector to a byte array.

  102. final def toBase64(alphabet: Base64Alphabet): String

    Permalink

    Converts the contents of this vector to a base 64 string using the specified alphabet.

  103. final def toBase64: String

    Permalink

    Converts the contents of this vector to a base 64 string.

  104. final def toBin(alphabet: BinaryAlphabet): String

    Permalink

    Converts the contents of this byte vector to a binary string of size * 8 digits.

  105. final def toBin: String

    Permalink

    Converts the contents of this byte vector to a binary string of size * 8 digits.

  106. final def toBitVector: BitVector

    Permalink

    Converts the contents of this vector to a bit vector of size * 8 bits.

  107. final def toByte(signed: Boolean = true): Byte

    Permalink

    Converts the contents of this vector to a byte.

    Converts the contents of this vector to a byte.

    signed

    whether sign extension should be performed

    Exceptions thrown

    IllegalArgumentException if size is greater than 8

  108. final def toByteBuffer: ByteBuffer

    Permalink

    Represents the contents of this vector as a read-only java.nio.ByteBuffer.

    Represents the contents of this vector as a read-only java.nio.ByteBuffer.

    The returned buffer is read-only with limit set to the minimum number of bytes needed to represent the contents of this vector, position set to zero, and remaining set to the limit.

  109. final def toHex(alphabet: HexAlphabet): String

    Permalink

    Converts the contents of this byte vector to a hexadecimal string of size * 2 nibbles.

  110. final def toHex: String

    Permalink

    Converts the contents of this byte vector to a hexadecimal string of size * 2 nibbles.

  111. final def toIndexedSeq: IndexedSeq[Byte]

    Permalink

    Converts the contents of this vector to an IndexedSeq.

  112. final def toInt(signed: Boolean = true, ordering: ByteOrdering = ByteOrdering.BigEndian): Int

    Permalink

    Converts the contents of this vector to an int.

    Converts the contents of this vector to an int.

    signed

    whether sign extension should be performed

    ordering

    order bytes should be processed in

    Exceptions thrown

    IllegalArgumentException if size is greater than 32

  113. final def toIterable: Iterable[Byte]

    Permalink

    Converts the contents of this vector to an Iterable.

  114. final def toLong(signed: Boolean = true, ordering: ByteOrdering = ByteOrdering.BigEndian): Long

    Permalink

    Converts the contents of this vector to an int.

    Converts the contents of this vector to an int.

    signed

    whether sign extension should be performed

    ordering

    order bytes should be processed in

    Exceptions thrown

    IllegalArgumentException if size is greater than 64

  115. final def toSeq: Seq[Byte]

    Permalink

    Converts the contents of this vector to a Seq.

  116. final def toShort(signed: Boolean = true, ordering: ByteOrdering = ByteOrdering.BigEndian): Short

    Permalink

    Converts the contents of this vector to a short.

    Converts the contents of this vector to a short.

    signed

    whether sign extension should be performed

    ordering

    order bytes should be processed in

    Exceptions thrown

    IllegalArgumentException if size is greater than 16

  117. def toString(): String

    Permalink

    Display the size and bytes of this ByteVector.

    Display the size and bytes of this ByteVector. For bit vectors beyond a certain size, only a hash of the contents are shown.

    Definition Classes
    ByteVector → AnyRef → Any
  118. final def unary_~(): ByteVector

    Permalink

    Returns a bitwise complement of this value.

    Returns a bitwise complement of this value.

    Definition Classes
    BitwiseOperations
  119. def unbuffer: ByteVector

    Permalink

    Collapse any buffered chunks at the end of this ByteVector, resulting in an unbuffered ByteVector.

  120. final def update(idx: Int, b: Byte): ByteVector

    Permalink

    Returns a vector with the byte at the specified index replaced with the specified byte.

  121. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  124. final def writeReplace(): AnyRef

    Permalink
    Attributes
    protected
  125. final def xor(other: ByteVector): ByteVector

    Permalink

    Returns a bitwise XOR of this bit vector with the specified bit vector.

    Returns a bitwise XOR of this bit vector with the specified bit vector.

    The resulting bit vector's size is the minimum of this bit vector's size and the specified bit vector's size.

    Definition Classes
    ByteVectorBitwiseOperations
  126. final def zipWith(other: ByteVector)(f: (Byte, Byte) ⇒ Byte): ByteVector

    Permalink

    Returns a new vector where each byte is the result of evaluating the specified function against the bytes of this vector and the specified vector at the corresponding index.

    Returns a new vector where each byte is the result of evaluating the specified function against the bytes of this vector and the specified vector at the corresponding index. The resulting vector has size this.size min other.size. This method returns a view and hence, is O(1). Call compact generate a new strict vector.

  127. final def zipWithI(other: ByteVector)(op: (Byte, Byte) ⇒ Int): ByteVector

    Permalink

    Returns a new vector where each byte is the result of evaluating the specified function against the bytes of this vector and the specified vector at the corresponding index.

    Returns a new vector where each byte is the result of evaluating the specified function against the bytes of this vector and the specified vector at the corresponding index. The resulting vector has size this.size min other.size. Only the least significant byte is used (the three most significant bytes are ignored). This method returns a view and hence, is O(1). Call compact generate a new strict vector.

  128. final def |(other: ByteVector): ByteVector

    Permalink

    Returns a bitwise OR of this value with the specified value.

    Returns a bitwise OR of this value with the specified value.

    The resulting value's size is the minimum of this value's size and the specified value's size.

    Definition Classes
    BitwiseOperations
  129. def [B](y: B): (ByteVector, B)

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

Inherited from Serializable

Inherited from Serializable

Inherited from BitwiseOperations[ByteVector, Int]

Inherited from AnyRef

Inherited from Any

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

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

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

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

Collection Like Methods

Bitwise Operations

Conversions

Buffering

Cryptography

Ungrouped