scodec.bits

StandardByteVector

final class StandardByteVector extends ByteVector

ByteVector implemented with scala.collection.immutable.Vector[Byte].

Note: This implementation has good algorithmic performance characteristics but results in lots of boxing/unboxing of bytes.

Linear Supertypes
ByteVector, BitwiseOperations[ByteVector], IndexedSeqOptimized[Byte, ByteVector], IndexedSeqLike[Byte, ByteVector], SeqLike[Byte, ByteVector], GenSeqLike[Byte, ByteVector], IterableLike[Byte, ByteVector], GenIterableLike[Byte, ByteVector], TraversableLike[Byte, ByteVector], GenTraversableLike[Byte, ByteVector], Parallelizable[Byte, ParSeq[Byte]], TraversableOnce[Byte], GenTraversableOnce[Byte], FilterMonadic[Byte, ByteVector], HasNewBuilder[Byte, ByteVector], Equals, AnyRef, Any
Ordering
  1. Grouped
  2. Alphabetic
  3. By inheritance
Inherited
  1. StandardByteVector
  2. ByteVector
  3. BitwiseOperations
  4. IndexedSeqOptimized
  5. IndexedSeqLike
  6. SeqLike
  7. GenSeqLike
  8. IterableLike
  9. GenIterableLike
  10. TraversableLike
  11. GenTraversableLike
  12. Parallelizable
  13. TraversableOnce
  14. GenTraversableOnce
  15. FilterMonadic
  16. HasNewBuilder
  17. Equals
  18. AnyRef
  19. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new StandardByteVector(bytes: Vector[Byte])

Type Members

  1. class Elements extends AbstractIterator[A] with BufferedIterator[A] with Serializable

    Attributes
    protected
    Definition Classes
    IndexedSeqLike
    Annotations
    @SerialVersionUID()
  2. type Self = ByteVector

    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  3. class WithFilter extends FilterMonadic[A, Repr]

    Definition Classes
    TraversableLike

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

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

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

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

    Definition Classes
    BitwiseOperations
  5. def ++(other: ByteVector): ByteVector

    Definition Classes
    StandardByteVectorByteVector
  6. def ++[B >: Byte, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[ByteVector, B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  7. def ++:[B >: Byte, That](that: Traversable[B])(implicit bf: CanBuildFrom[ByteVector, B, That]): That

    Definition Classes
    TraversableLike
  8. def ++:[B >: Byte, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[ByteVector, B, That]): That

    Definition Classes
    TraversableLike
  9. def +:(byte: Byte): ByteVector

    Definition Classes
    StandardByteVectorByteVector
  10. def +:[B >: Byte, That](elem: B)(implicit bf: CanBuildFrom[ByteVector, B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  11. def /:[B](z: B)(op: (B, Byte) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  12. def :+(byte: Byte): ByteVector

    Definition Classes
    StandardByteVectorByteVector
  13. def :+[B >: Byte, That](elem: B)(implicit bf: CanBuildFrom[ByteVector, B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  14. def :\[B](z: B)(op: (Byte, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  15. final def <<(n: Int): ByteVector

    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
    BitwiseOperations
  16. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  18. final def >>(n: Int): ByteVector

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

    Returns a bit vector 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
  19. final def >>>(n: Int): ByteVector

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

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

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

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

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

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

    Definition Classes
    BitwiseOperations
  21. def addString(b: StringBuilder): StringBuilder

    Definition Classes
    TraversableOnce
  22. def addString(b: StringBuilder, sep: String): StringBuilder

    Definition Classes
    TraversableOnce
  23. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Definition Classes
    TraversableOnce
  24. def aggregate[B](z: ⇒ B)(seqop: (B, Byte) ⇒ B, combop: (B, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  25. def and(other: ByteVector): ByteVector

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

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

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

    Definition Classes
    ByteVectorBitwiseOperations
  26. def apply(idx: Int): Byte

    Definition Classes
    StandardByteVector → SeqLike → GenSeqLike
  27. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  28. def canEqual(that: Any): Boolean

    Definition Classes
    IterableLike → Equals
  29. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. def collect[B, That](pf: PartialFunction[Byte, B])(implicit bf: CanBuildFrom[ByteVector, B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  31. def collectFirst[B](pf: PartialFunction[Byte, B]): Option[B]

    Definition Classes
    TraversableOnce
  32. def combinations(n: Int): Iterator[ByteVector]

    Definition Classes
    SeqLike
  33. def contains[A1 >: Byte](elem: A1): Boolean

    Definition Classes
    SeqLike
  34. def containsSlice[B](that: GenSeq[B]): Boolean

    Definition Classes
    SeqLike
  35. def copyToArray[B >: Byte](xs: Array[B], start: Int, len: Int): Unit

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  36. def copyToArray[B >: Byte](xs: Array[B]): Unit

    Definition Classes
    TraversableOnce → GenTraversableOnce
  37. def copyToArray[B >: Byte](xs: Array[B], start: Int): Unit

    Definition Classes
    TraversableOnce → GenTraversableOnce
  38. def copyToBuffer[B >: Byte](dest: Buffer[B]): Unit

    Definition Classes
    TraversableOnce
  39. def corresponds[B](that: GenSeq[B])(p: (Byte, B) ⇒ Boolean): Boolean

    Definition Classes
    SeqLike → GenSeqLike
  40. def count(p: (Byte) ⇒ Boolean): Int

    Definition Classes
    TraversableOnce → GenTraversableOnce
  41. def diff[B >: Byte](that: GenSeq[B]): ByteVector

    Definition Classes
    SeqLike → GenSeqLike
  42. def distinct: ByteVector

    Definition Classes
    SeqLike → GenSeqLike
  43. def drop(n: Int): ByteVector

    Definition Classes
    StandardByteVector → IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  44. def dropRight(n: Int): ByteVector

    Definition Classes
    StandardByteVector → IndexedSeqOptimized → IterableLike
  45. def dropWhile(p: (Byte) ⇒ Boolean): ByteVector

    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  46. def endsWith[B](that: GenSeq[B]): Boolean

    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  47. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    StandardByteVector → GenSeqLike → Equals → AnyRef → Any
  49. def exists(p: (Byte) ⇒ Boolean): Boolean

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  50. def filter(p: (Byte) ⇒ Boolean): ByteVector

    Definition Classes
    TraversableLike → GenTraversableLike
  51. def filterNot(p: (Byte) ⇒ Boolean): ByteVector

    Definition Classes
    TraversableLike → GenTraversableLike
  52. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  53. def find(p: (Byte) ⇒ Boolean): Option[Byte]

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  54. def flatMap[B, That](f: (Byte) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[ByteVector, B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  55. def fold[A1 >: Byte](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  56. def foldLeft[B](z: B)(op: (B, Byte) ⇒ B): B

    Definition Classes
    IndexedSeqOptimized → TraversableOnce → GenTraversableOnce
  57. def foldRight[B](z: B)(op: (Byte, B) ⇒ B): B

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableOnce → GenTraversableOnce
  58. def forall(p: (Byte) ⇒ Boolean): Boolean

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  59. def foreach[U](f: (Byte) ⇒ U): Unit

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  60. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  61. def groupBy[K](f: (Byte) ⇒ K): Map[K, ByteVector]

    Definition Classes
    TraversableLike → GenTraversableLike
  62. def grouped(size: Int): Iterator[ByteVector]

    Definition Classes
    IterableLike
  63. def hasDefiniteSize: Boolean

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  64. def hashCode(): Int

    Definition Classes
    StandardByteVector → IndexedSeqLike → GenSeqLike → AnyRef → Any
  65. def head: Byte

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  66. def headOption: Option[Byte]

    Definition Classes
    TraversableLike → GenTraversableLike
  67. def indexOf[B >: Byte](elem: B, from: Int): Int

    Definition Classes
    GenSeqLike
  68. def indexOf[B >: Byte](elem: B): Int

    Definition Classes
    GenSeqLike
  69. def indexOfSlice[B >: Byte](that: GenSeq[B], from: Int): Int

    Definition Classes
    SeqLike
  70. def indexOfSlice[B >: Byte](that: GenSeq[B]): Int

    Definition Classes
    SeqLike
  71. def indexWhere(p: (Byte) ⇒ Boolean, from: Int): Int

    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  72. def indexWhere(p: (Byte) ⇒ Boolean): Int

    Definition Classes
    GenSeqLike
  73. def indices: Range

    Definition Classes
    SeqLike
  74. def init: ByteVector

    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  75. def inits: Iterator[ByteVector]

    Definition Classes
    TraversableLike
  76. def intersect[B >: Byte](that: GenSeq[B]): ByteVector

    Definition Classes
    SeqLike → GenSeqLike
  77. def isDefinedAt(idx: Int): Boolean

    Definition Classes
    GenSeqLike
  78. def isEmpty: Boolean

    Definition Classes
    IndexedSeqOptimized → SeqLike → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  79. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  80. final def isTraversableAgain: Boolean

    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  81. def iterator: Iterator[Byte]

    Definition Classes
    StandardByteVector → IndexedSeqLike → IterableLike → GenIterableLike
  82. def last: Byte

    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  83. def lastIndexOf[B >: Byte](elem: B, end: Int): Int

    Definition Classes
    GenSeqLike
  84. def lastIndexOf[B >: Byte](elem: B): Int

    Definition Classes
    GenSeqLike
  85. def lastIndexOfSlice[B >: Byte](that: GenSeq[B], end: Int): Int

    Definition Classes
    SeqLike
  86. def lastIndexOfSlice[B >: Byte](that: GenSeq[B]): Int

    Definition Classes
    SeqLike
  87. def lastIndexWhere(p: (Byte) ⇒ Boolean, end: Int): Int

    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  88. def lastIndexWhere(p: (Byte) ⇒ Boolean): Int

    Definition Classes
    GenSeqLike
  89. def lastOption: Option[Byte]

    Definition Classes
    TraversableLike → GenTraversableLike
  90. def leftShift(n: Int): ByteVector

    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. def length: Int

    Definition Classes
    StandardByteVector → SeqLike → GenSeqLike
  92. def lengthCompare(len: Int): Int

    Definition Classes
    IndexedSeqOptimized → SeqLike
  93. def lift(idx: Int): Option[Byte]

    Definition Classes
    StandardByteVectorByteVector
  94. def map(f: (Byte) ⇒ Byte): ByteVector

    Definition Classes
    StandardByteVectorByteVector
  95. def map[B, That](f: (Byte) ⇒ B)(implicit bf: CanBuildFrom[ByteVector, B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  96. def mapI(f: (Byte) ⇒ Int): ByteVector

    Definition Classes
    ByteVector
  97. def max[B >: Byte](implicit cmp: Ordering[B]): Byte

    Definition Classes
    TraversableOnce → GenTraversableOnce
  98. def maxBy[B](f: (Byte) ⇒ B)(implicit cmp: Ordering[B]): Byte

    Definition Classes
    TraversableOnce → GenTraversableOnce
  99. def min[B >: Byte](implicit cmp: Ordering[B]): Byte

    Definition Classes
    TraversableOnce → GenTraversableOnce
  100. def minBy[B](f: (Byte) ⇒ B)(implicit cmp: Ordering[B]): Byte

    Definition Classes
    TraversableOnce → GenTraversableOnce
  101. def mkString: String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  102. def mkString(sep: String): String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  103. def mkString(start: String, sep: String, end: String): String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  104. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  105. def newBuilder: Builder[Byte, ByteVector]

    Attributes
    protected[this]
    Definition Classes
    StandardByteVector → TraversableLike → HasNewBuilder
  106. def nonEmpty: Boolean

    Definition Classes
    TraversableOnce → GenTraversableOnce
  107. def not: ByteVector

    Returns a bitwise complement of this vector.

    Returns a bitwise complement of this vector.

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

    Definition Classes
    AnyRef
  109. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  110. def or(other: ByteVector): ByteVector

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

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

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

    Definition Classes
    ByteVectorBitwiseOperations
  111. def padTo[B >: Byte, That](len: Int, elem: B)(implicit bf: CanBuildFrom[ByteVector, B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  112. def par: ParSeq[Byte]

    Definition Classes
    Parallelizable
  113. def parCombiner: Combiner[Byte, ParSeq[Byte]]

    Attributes
    protected[this]
    Definition Classes
    SeqLike → TraversableLike → Parallelizable
  114. def partition(p: (Byte) ⇒ Boolean): (ByteVector, ByteVector)

    Definition Classes
    TraversableLike → GenTraversableLike
  115. def patch[B >: Byte, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[ByteVector, B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  116. def permutations: Iterator[ByteVector]

    Definition Classes
    SeqLike
  117. def prefixLength(p: (Byte) ⇒ Boolean): Int

    Definition Classes
    GenSeqLike
  118. def product[B >: Byte](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  119. def reduce[A1 >: Byte](op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  120. def reduceLeft[B >: Byte](op: (B, Byte) ⇒ B): B

    Definition Classes
    IndexedSeqOptimized → TraversableOnce
  121. def reduceLeftOption[B >: Byte](op: (B, Byte) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  122. def reduceOption[A1 >: Byte](op: (A1, A1) ⇒ A1): Option[A1]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  123. def reduceRight[B >: Byte](op: (Byte, B) ⇒ B): B

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableOnce → GenTraversableOnce
  124. def reduceRightOption[B >: Byte](op: (Byte, B) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  125. def repr: ByteVector

    Definition Classes
    TraversableLike → GenTraversableLike
  126. def reverse: ByteVector

    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  127. def reverseIterator: Iterator[Byte]

    Definition Classes
    IndexedSeqOptimized → SeqLike
  128. def reverseMap[B, That](f: (Byte) ⇒ B)(implicit bf: CanBuildFrom[ByteVector, B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  129. def reversed: List[Byte]

    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  130. def rightShift(n: Int, signExtension: Boolean): ByteVector

    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
  131. def sameElements[B >: Byte](that: GenIterable[B]): Boolean

    Definition Classes
    IndexedSeqOptimized → IterableLike → GenIterableLike
  132. def scan[B >: Byte, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[ByteVector, B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  133. def scanLeft[B, That](z: B)(op: (B, Byte) ⇒ B)(implicit bf: CanBuildFrom[ByteVector, B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  134. def scanRight[B, That](z: B)(op: (Byte, B) ⇒ B)(implicit bf: CanBuildFrom[ByteVector, B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  135. def segmentLength(p: (Byte) ⇒ Boolean, from: Int): Int

    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  136. def seq: IndexedSeq[Byte]

    Definition Classes
    StandardByteVector → IndexedSeqLike → GenSeqLike → Parallelizable → TraversableOnce → GenTraversableOnce
  137. def size: Int

    Definition Classes
    SeqLike → GenTraversableLike → TraversableOnce → GenTraversableOnce
  138. def slice(from: Int, until: Int): ByteVector

    Definition Classes
    StandardByteVector → IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  139. def sliding(size: Int, step: Int): Iterator[ByteVector]

    Definition Classes
    IterableLike
  140. def sliding(size: Int): Iterator[ByteVector]

    Definition Classes
    IterableLike
  141. def sortBy[B](f: (Byte) ⇒ B)(implicit ord: Ordering[B]): ByteVector

    Definition Classes
    SeqLike
  142. def sortWith(lt: (Byte, Byte) ⇒ Boolean): ByteVector

    Definition Classes
    SeqLike
  143. def sorted[B >: Byte](implicit ord: Ordering[B]): ByteVector

    Definition Classes
    SeqLike
  144. def span(p: (Byte) ⇒ Boolean): (ByteVector, ByteVector)

    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  145. def splitAt(n: Int): (ByteVector, ByteVector)

    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  146. def startsWith[B](that: GenSeq[B], offset: Int): Boolean

    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  147. def startsWith[B](that: GenSeq[B]): Boolean

    Definition Classes
    GenSeqLike
  148. def stringPrefix: String

    Definition Classes
    TraversableLike → GenTraversableLike
  149. def sum[B >: Byte](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  150. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  151. def tail: ByteVector

    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  152. def tails: Iterator[ByteVector]

    Definition Classes
    TraversableLike
  153. def take(n: Int): ByteVector

    Definition Classes
    StandardByteVector → IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  154. def takeRight(n: Int): ByteVector

    Definition Classes
    StandardByteVector → IndexedSeqOptimized → IterableLike
  155. def takeWhile(p: (Byte) ⇒ Boolean): ByteVector

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  156. def thisCollection: Vector[Byte]

    Attributes
    protected[this]
    Definition Classes
    StandardByteVector → IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  157. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Byte, Col[Byte]]): Col[Byte]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  158. def toArray: Array[Byte]

    Definition Classes
    StandardByteVectorByteVector
  159. def toArray[B >: Byte](implicit arg0: ClassTag[B]): Array[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  160. def toBin: String

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

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

    Definition Classes
    ByteVector
  161. def toBitVector: BitVector

    Definition Classes
    ByteVector
  162. def toBuffer[A1 >: Byte]: Buffer[A1]

    Definition Classes
    IndexedSeqLike → TraversableOnce → GenTraversableOnce
  163. def toByteBuffer: ByteBuffer

    Definition Classes
    ByteVector
  164. def toCollection(repr: ByteVector): IndexedSeq[Byte]

    Attributes
    protected[this]
    Definition Classes
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  165. def toHex: String

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

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

    Definition Classes
    ByteVector
  166. def toIndexedSeq: IndexedSeq[Byte]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  167. def toIterable: Iterable[Byte]

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  168. def toIterator: Iterator[Byte]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  169. def toList: List[Byte]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  170. def toMap[T, U](implicit ev: <:<[Byte, (T, U)]): Map[T, U]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  171. def toSeq: Seq[Byte]

    Definition Classes
    SeqLike → GenSeqLike → TraversableOnce → GenTraversableOnce
  172. def toSet[B >: Byte]: Set[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  173. def toStream: Stream[Byte]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  174. def toString(): String

    Definition Classes
    StandardByteVector → SeqLike → TraversableLike → AnyRef → Any
  175. def toTraversable: Traversable[Byte]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  176. def toVector: Vector[Byte]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  177. final def unary_~(): ByteVector

    Returns a bitwise complement of this vector.

    Returns a bitwise complement of this vector.

    Definition Classes
    BitwiseOperations
  178. def union[B >: Byte, That](that: GenSeq[B])(implicit bf: CanBuildFrom[ByteVector, B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  179. def updated(idx: Int, b: Byte): StandardByteVector

    Definition Classes
    StandardByteVectorByteVector
  180. def updated[B >: Byte, That](index: Int, elem: B)(implicit bf: CanBuildFrom[ByteVector, B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  181. def view(from: Int, until: Int): SeqView[Byte, ByteVector]

    Definition Classes
    SeqLike → IterableLike → TraversableLike
  182. def view: SeqView[Byte, ByteVector]

    Definition Classes
    SeqLike → IterableLike → TraversableLike
  183. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  186. def withFilter(p: (Byte) ⇒ Boolean): FilterMonadic[Byte, ByteVector]

    Definition Classes
    TraversableLike → FilterMonadic
  187. def xor(other: ByteVector): ByteVector

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

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

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

    Definition Classes
    ByteVectorBitwiseOperations
  188. def zip[A1 >: Byte, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[ByteVector, (A1, B), That]): That

    Definition Classes
    IndexedSeqOptimized → IterableLike → GenIterableLike
  189. def zipAll[B, A1 >: Byte, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[ByteVector, (A1, B), That]): That

    Definition Classes
    IterableLike → GenIterableLike
  190. def zipWith(other: ByteVector)(op: (Byte, Byte) ⇒ Byte): ByteVector

    Definition Classes
    StandardByteVectorByteVector
  191. def zipWithI(other: ByteVector)(op: (Byte, Byte) ⇒ Int): ByteVector

    Definition Classes
    ByteVector
  192. def zipWithIndex[A1 >: Byte, That](implicit bf: CanBuildFrom[ByteVector, (A1, Int), That]): That

    Definition Classes
    IndexedSeqOptimized → IterableLike → GenIterableLike
  193. final def |(other: ByteVector): ByteVector

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

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

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

    Definition Classes
    BitwiseOperations

Inherited from ByteVector

Inherited from BitwiseOperations[ByteVector]

Inherited from IndexedSeqOptimized[Byte, ByteVector]

Inherited from IndexedSeqLike[Byte, ByteVector]

Inherited from SeqLike[Byte, ByteVector]

Inherited from GenSeqLike[Byte, ByteVector]

Inherited from IterableLike[Byte, ByteVector]

Inherited from GenIterableLike[Byte, ByteVector]

Inherited from TraversableLike[Byte, ByteVector]

Inherited from GenTraversableLike[Byte, ByteVector]

Inherited from Parallelizable[Byte, ParSeq[Byte]]

Inherited from TraversableOnce[Byte]

Inherited from GenTraversableOnce[Byte]

Inherited from FilterMonadic[Byte, ByteVector]

Inherited from HasNewBuilder[Byte, ByteVector]

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Bitwise Operations

Ungrouped