sealed abstract class CompactByteString extends ByteString with Serializable

A compact ByteString.

The ByteString is guarantied to be contiguous in memory and to use only as much memory as required for its contents.

Source
ByteString.scala
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CompactByteString
  2. Serializable
  3. ByteString
  4. StrictOptimizedSeqOps
  5. StrictOptimizedSeqOps
  6. StrictOptimizedIterableOps
  7. IndexedSeq
  8. IndexedSeqOps
  9. IndexedSeq
  10. IndexedSeqOps
  11. Seq
  12. SeqOps
  13. Seq
  14. Equals
  15. SeqOps
  16. PartialFunction
  17. Function1
  18. Iterable
  19. Iterable
  20. IterableFactoryDefaults
  21. IterableOps
  22. IterableOnceOps
  23. IterableOnce
  24. AnyRef
  25. Any
Implicitly
  1. by iterableOnceExtensionMethods
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def ++(that: ByteString): ByteString

    Efficiently concatenate another ByteString.

    Efficiently concatenate another ByteString.

    Definition Classes
    ByteString
  2. abstract def apply(idx: Int): Byte
    Definition Classes
    ByteString → SeqOps → Function1
  3. abstract def asByteBuffer: ByteBuffer

    Returns a read-only ByteBuffer that directly wraps this ByteString if it is not fragmented.

    Returns a read-only ByteBuffer that directly wraps this ByteString if it is not fragmented.

    Definition Classes
    ByteString
  4. abstract def asByteBuffers: Iterable[ByteBuffer]

    Scala API: Returns an immutable Iterable of read-only ByteBuffers that directly wraps this ByteStrings all fragments.

    Scala API: Returns an immutable Iterable of read-only ByteBuffers that directly wraps this ByteStrings all fragments. Will always have at least one entry.

    Definition Classes
    ByteString
  5. abstract def copyToBuffer(buffer: ByteBuffer): Int

    Copy as many bytes as possible to a ByteBuffer, starting from it's current position.

    Copy as many bytes as possible to a ByteBuffer, starting from it's current position. This method will not overflow the buffer.

    buffer

    a ByteBuffer to copy bytes to

    returns

    the number of bytes actually copied

    Definition Classes
    ByteString
  6. abstract def decodeBase64: ByteString
    Definition Classes
    ByteString
  7. abstract def decodeString(charset: Charset): String

    Decodes this ByteString using a charset to produce a String.

    Decodes this ByteString using a charset to produce a String. Avoids Charset.forName lookup in String internals, thus is preferable to decodeString(charset: String).

    Definition Classes
    ByteString
  8. abstract def decodeString(charset: String): String

    Decodes this ByteString using a charset to produce a String.

    Decodes this ByteString using a charset to produce a String. If you have a Charset instance available, use decodeString(charset: java.nio.charset.Charset instead.

    Definition Classes
    ByteString
  9. abstract def encodeBase64: ByteString

    Returns a ByteString which is the Base64 representation of this ByteString

    Returns a ByteString which is the Base64 representation of this ByteString

    Definition Classes
    ByteString
  10. abstract def length: Int
    Definition Classes
    SeqOps

Concrete Value Members

  1. final def ++[B >: Byte](suffix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  2. final def ++:[B >: Byte](prefix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    SeqOps → IterableOps
    Annotations
    @inline()
  3. final def +:[B >: Byte](elem: B): IndexedSeq[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  4. final def :+[B >: Byte](elem: B): IndexedSeq[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  5. final def :++[B >: Byte](suffix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  6. final def addString(b: StringBuilder): b.type
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  7. final def addString(b: StringBuilder, sep: String): b.type
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  8. def addString(b: StringBuilder, start: String, sep: String, end: String): b.type
    Definition Classes
    IterableOnceOps
  9. def andThen[C](k: PartialFunction[Byte, C]): PartialFunction[Int, C]
    Definition Classes
    PartialFunction
  10. def andThen[C](k: (Byte) => C): PartialFunction[Int, C]
    Definition Classes
    PartialFunction → Function1
  11. def appended[B >: Byte](elem: B): IndexedSeq[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  12. def appendedAll[B >: Byte](suffix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  13. def applyOrElse[A1 <: Int, B1 >: Byte](x: A1, default: (A1) => B1): B1
    Definition Classes
    PartialFunction
  14. def canEqual(that: Any): Boolean
    Definition Classes
    IndexedSeq → Seq → Equals
  15. final def className: String
    Definition Classes
    ByteString → Iterable
  16. def collect[B](pf: PartialFunction[Byte, B]): IndexedSeq[B]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  17. def collectFirst[B](pf: PartialFunction[Byte, B]): Option[B]
    Definition Classes
    IterableOnceOps
  18. def combinations(n: Int): Iterator[ByteString]
    Definition Classes
    SeqOps
  19. def compact: CompactByteString.this.type

    Create a new ByteString with all contents compacted into a single, full byte array.

    Create a new ByteString with all contents compacted into a single, full byte array. If isCompact returns true, compact is an O(1) operation, but might return a different object with an optimized implementation.

    Definition Classes
    CompactByteStringByteString
  20. def compose[R](k: PartialFunction[R, Int]): PartialFunction[R, Byte]
    Definition Classes
    PartialFunction
  21. def compose[A](g: (A) => Int): (A) => Byte
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  22. def concat(that: ByteString): ByteString

    Java API: efficiently concatenate another ByteString.

    Java API: efficiently concatenate another ByteString.

    Definition Classes
    ByteString
  23. final def concat[B >: Byte](suffix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    SeqOps → IterableOps
    Annotations
    @inline()
  24. def contains[A1 >: Byte](elem: A1): Boolean
    Definition Classes
    SeqOps
  25. def containsSlice[B >: Byte](that: Seq[B]): Boolean
    Definition Classes
    SeqOps
  26. def copyToArray[B >: Byte](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    ByteString → IterableOnceOps
  27. final def copyToArray[B >: Byte](xs: Array[B], start: Int): Int
    Definition Classes
    ByteString → IterableOnceOps
    Annotations
    @nowarn()
  28. def copyToArray[B >: Byte](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  29. def corresponds[B](that: Seq[B])(p: (Byte, B) => Boolean): Boolean
    Definition Classes
    SeqOps
  30. def corresponds[B](that: IterableOnce[B])(p: (Byte, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  31. def count(p: (Byte) => Boolean): Int
    Definition Classes
    IterableOnceOps
  32. def diff[B >: Byte](that: Seq[B]): ByteString
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  33. def distinct: ByteString
    Definition Classes
    SeqOps
  34. def distinctBy[B](f: (Byte) => B): ByteString
    Definition Classes
    StrictOptimizedSeqOps → StrictOptimizedSeqOps → SeqOps
  35. def drop(n: Int): ByteString
    Definition Classes
    ByteString → IndexedSeqOps → IterableOps → IterableOnceOps
  36. def dropRight(n: Int): ByteString
    Definition Classes
    ByteString → StrictOptimizedIterableOps → IndexedSeqOps → IterableOps
  37. def dropWhile(p: (Byte) => Boolean): ByteString
    Definition Classes
    ByteString → IterableOps → IterableOnceOps
  38. def elementWise: ElementWiseExtractor[Int, Byte]
    Definition Classes
    PartialFunction
  39. def empty: ByteString
    Definition Classes
    ByteString → IterableFactoryDefaults → IterableOps
  40. def endsWith[B >: Byte](that: Iterable[B]): Boolean
    Definition Classes
    SeqOps
  41. def equals(o: Any): Boolean
    Definition Classes
    Seq → Equals → AnyRef → Any
  42. def exists(p: (Byte) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  43. def filter(pred: (Byte) => Boolean): ByteString
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  44. def filterNot(pred: (Byte) => Boolean): ByteString
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  45. def find(p: (Byte) => Boolean): Option[Byte]
    Definition Classes
    IterableOnceOps
  46. def findLast(p: (Byte) => Boolean): Option[Byte]
    Definition Classes
    SeqOps
  47. def flatMap[B](f: (Byte) => IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  48. def flatten[B](implicit toIterableOnce: (Byte) => IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  49. def fold[A1 >: Byte](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  50. def foldLeft[B](z: B)(op: (B, Byte) => B): B
    Definition Classes
    IterableOnceOps
  51. def foldRight[B](z: B)(op: (Byte, B) => B): B
    Definition Classes
    IndexedSeqOps → IterableOnceOps
  52. def forall(p: (Byte) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  53. def foreach[U](f: (Byte) => U): Unit
    Definition Classes
    ByteString → IterableOnceOps
  54. def getByteBuffers(): Iterable[ByteBuffer]

    Java API: Returns an Iterable of read-only ByteBuffers that directly wraps this ByteStrings all fragments.

    Java API: Returns an Iterable of read-only ByteBuffers that directly wraps this ByteStrings all fragments. Will always have at least one entry.

    Definition Classes
    ByteString
  55. def groupBy[K](f: (Byte) => K): Map[K, ByteString]
    Definition Classes
    IterableOps
  56. def groupMap[K, B](key: (Byte) => K)(f: (Byte) => B): Map[K, IndexedSeq[B]]
    Definition Classes
    IterableOps
  57. def groupMapReduce[K, B](key: (Byte) => K)(f: (Byte) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  58. def grouped(size: Int): Iterator[ByteString]
    Definition Classes
    ByteString → IterableOps
  59. def hashCode(): Int
    Definition Classes
    Seq → AnyRef → Any
  60. def head: Byte
    Definition Classes
    ByteString → IndexedSeqOps → IterableOps
  61. def headOption: Option[Byte]
    Definition Classes
    IndexedSeqOps → IterableOps
  62. def indexOf[B >: Byte](elem: B, from: Int): Int
    Definition Classes
    ByteString → SeqOps
  63. def indexOf[B >: Byte](elem: B): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding()
  64. def indexOfSlice[B >: Byte](that: Seq[B]): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding()
  65. def indexOfSlice[B >: Byte](that: Seq[B], from: Int): Int
    Definition Classes
    SeqOps
  66. def indexWhere(p: (Byte) => Boolean, from: Int): Int
    Definition Classes
    ByteString → SeqOps
  67. def indexWhere(p: (Byte) => Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding()
  68. def indices: Range
    Definition Classes
    SeqOps
  69. def init: ByteString
    Definition Classes
    ByteString → IterableOps
  70. def inits: Iterator[ByteString]
    Definition Classes
    IterableOps
  71. def intersect[B >: Byte](that: Seq[B]): ByteString
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  72. def isCompact: Boolean

    Check whether this ByteString is compact in memory.

    Check whether this ByteString is compact in memory. If the ByteString is compact, it might, however, not be represented by an object that takes full advantage of that fact. Use compact to get such an object.

    Definition Classes
    CompactByteStringByteString
  73. def isDefinedAt(idx: Int): Boolean
    Definition Classes
    SeqOps
  74. def isEmpty: Boolean
    Definition Classes
    ByteString → SeqOps → IterableOnceOps
  75. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  76. def iterableFactory: SeqFactory[IndexedSeq]
    Definition Classes
    IndexedSeq → IndexedSeq → Seq → Seq → Iterable → Iterable → IterableOps
  77. def iterator: ByteIterator
    Definition Classes
    ByteString → IndexedSeqOps → IterableOnce
  78. def knownSize: Int
    Definition Classes
    IndexedSeqOps → IterableOnce
  79. def last: Byte
    Definition Classes
    ByteString → IndexedSeqOps → IterableOps
  80. def lastIndexOf[B >: Byte](elem: B, end: Int): Int
    Definition Classes
    SeqOps
  81. def lastIndexOfSlice[B >: Byte](that: Seq[B]): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding()
  82. def lastIndexOfSlice[B >: Byte](that: Seq[B], end: Int): Int
    Definition Classes
    SeqOps
  83. def lastIndexWhere(p: (Byte) => Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding()
  84. def lastIndexWhere(p: (Byte) => Boolean, end: Int): Int
    Definition Classes
    SeqOps
  85. def lastOption: Option[Byte]
    Definition Classes
    IterableOps
  86. def lazyZip[B](that: Iterable[B]): LazyZip2[Byte, B, CompactByteString.this.type]
    Definition Classes
    Iterable
  87. final def lengthCompare(that: Iterable[_]): Int
    Definition Classes
    IndexedSeqOps → SeqOps
  88. final def lengthCompare(len: Int): Int
    Definition Classes
    IndexedSeqOps → SeqOps
  89. final def lengthIs: SizeCompareOps
    Definition Classes
    SeqOps
    Annotations
    @inline()
  90. def lift: (Int) => Option[Byte]
    Definition Classes
    PartialFunction
  91. def map[A](f: (Byte) => Byte): ByteString
    Definition Classes
    ByteString
  92. def map[B](f: (Byte) => B): IndexedSeq[B]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  93. final def mapI(f: (Byte) => Int): ByteString

    map method that will automatically cast Int back into Byte.

    map method that will automatically cast Int back into Byte.

    Definition Classes
    ByteString
  94. def max[B >: Byte](implicit ord: Ordering[B]): Byte
    Definition Classes
    IterableOnceOps
  95. def maxBy[B](f: (Byte) => B)(implicit ord: Ordering[B]): Byte
    Definition Classes
    IterableOnceOps
  96. def maxByOption[B](f: (Byte) => B)(implicit ord: Ordering[B]): Option[Byte]
    Definition Classes
    IterableOnceOps
  97. def maxOption[B >: Byte](implicit ord: Ordering[B]): Option[Byte]
    Definition Classes
    IterableOnceOps
  98. def min[B >: Byte](implicit ord: Ordering[B]): Byte
    Definition Classes
    IterableOnceOps
  99. def minBy[B](f: (Byte) => B)(implicit ord: Ordering[B]): Byte
    Definition Classes
    IterableOnceOps
  100. def minByOption[B](f: (Byte) => B)(implicit ord: Ordering[B]): Option[Byte]
    Definition Classes
    IterableOnceOps
  101. def minOption[B >: Byte](implicit ord: Ordering[B]): Option[Byte]
    Definition Classes
    IterableOnceOps
  102. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  103. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  104. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  105. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  106. def orElse[A1 <: Int, B1 >: Byte](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
    Definition Classes
    PartialFunction
  107. def padTo[B >: Byte](len: Int, elem: B): IndexedSeq[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  108. def partition(p: (Byte) => Boolean): (ByteString, ByteString)
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  109. def partitionMap[A1, A2](f: (Byte) => Either[A1, A2]): (IndexedSeq[A1], IndexedSeq[A2])
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  110. def patch[B >: Byte](from: Int, other: IterableOnce[B], replaced: Int): IndexedSeq[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  111. def permutations: Iterator[ByteString]
    Definition Classes
    SeqOps
  112. def prepended[B >: Byte](elem: B): IndexedSeq[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  113. def prependedAll[B >: Byte](prefix: IterableOnce[B]): IndexedSeq[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  114. def product[B >: Byte](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  115. def reduce[B >: Byte](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  116. def reduceLeft[B >: Byte](op: (B, Byte) => B): B
    Definition Classes
    IterableOnceOps
  117. def reduceLeftOption[B >: Byte](op: (B, Byte) => B): Option[B]
    Definition Classes
    IterableOnceOps
  118. def reduceOption[B >: Byte](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  119. def reduceRight[B >: Byte](op: (Byte, B) => B): B
    Definition Classes
    IterableOnceOps
  120. def reduceRightOption[B >: Byte](op: (Byte, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  121. def reverse: ByteString
    Definition Classes
    IndexedSeqOps → SeqOps
  122. def reverseIterator: Iterator[Byte]
    Definition Classes
    IndexedSeqOps → SeqOps
  123. def runWith[U](action: (Byte) => U): (Int) => Boolean
    Definition Classes
    PartialFunction
  124. def sameElements[B >: Byte](o: IterableOnce[B]): Boolean
    Definition Classes
    IndexedSeq → SeqOps
  125. def scan[B >: Byte](z: B)(op: (B, B) => B): IndexedSeq[B]
    Definition Classes
    IterableOps
  126. def scanLeft[B](z: B)(op: (B, Byte) => B): IndexedSeq[B]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  127. def scanRight[B](z: B)(op: (Byte, B) => B): IndexedSeq[B]
    Definition Classes
    IterableOps
  128. def search[B >: Byte](elem: B, from: Int, to: Int)(implicit ord: Ordering[B]): SearchResult
    Definition Classes
    IndexedSeqOps → SeqOps
  129. def search[B >: Byte](elem: B)(implicit ord: Ordering[B]): SearchResult
    Definition Classes
    IndexedSeqOps → SeqOps
  130. def segmentLength(p: (Byte) => Boolean, from: Int): Int
    Definition Classes
    SeqOps
  131. final def segmentLength(p: (Byte) => Boolean): Int
    Definition Classes
    SeqOps
  132. final def size: Int
    Definition Classes
    SeqOps → IterableOnceOps
  133. final def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    SeqOps → IterableOps
  134. final def sizeCompare(otherSize: Int): Int
    Definition Classes
    SeqOps → IterableOps
  135. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  136. def slice(from: Int, until: Int): ByteString
    Definition Classes
    ByteString → IndexedSeqOps → IndexedSeqOps → IterableOps → IterableOnceOps
  137. def sliding(size: Int, step: Int): Iterator[ByteString]
    Definition Classes
    IterableOps
  138. def sliding(size: Int): Iterator[ByteString]
    Definition Classes
    IterableOps
  139. def sortBy[B](f: (Byte) => B)(implicit ord: Ordering[B]): ByteString
    Definition Classes
    SeqOps
  140. def sortWith(lt: (Byte, Byte) => Boolean): ByteString
    Definition Classes
    SeqOps
  141. def sorted[B >: Byte](implicit ord: Ordering[B]): ByteString
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  142. def span(p: (Byte) => Boolean): (ByteString, ByteString)
    Definition Classes
    ByteString → StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  143. def splitAt(n: Int): (ByteString, ByteString)
    Definition Classes
    ByteString → IterableOps → IterableOnceOps
  144. def startsWith[B >: Byte](that: IterableOnce[B], offset: Int): Boolean
    Definition Classes
    SeqOps
  145. def stepper[S <: Stepper[_]](implicit shape: StepperShape[Byte, S]): S with EfficientSplit
    Definition Classes
    IndexedSeqOps → IterableOnce
  146. def sum[B >: Byte](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  147. def tail: ByteString
    Definition Classes
    ByteString → IterableOps
  148. def tails: Iterator[ByteString]
    Definition Classes
    IterableOps
  149. def take(n: Int): ByteString
    Definition Classes
    ByteString → IndexedSeqOps → IterableOps → IterableOnceOps
  150. def takeRight(n: Int): ByteString
    Definition Classes
    ByteString → StrictOptimizedIterableOps → IndexedSeqOps → IterableOps
  151. def takeWhile(p: (Byte) => Boolean): ByteString
    Definition Classes
    ByteString → IterableOps → IterableOnceOps
  152. def tapEach[U](f: (Byte) => U): ByteString
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  153. def to[C1](factory: Factory[Byte, C1]): C1
    Definition Classes
    IterableOnceOps
  154. final def toArray[B >: Byte](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    ByteString → IterableOnceOps
  155. def toArrayUnsafe(): Array[Byte]

    Unsafe API: Use only in situations you are completely confident that this is what you need, and that you understand the implications documented below.

    Unsafe API: Use only in situations you are completely confident that this is what you need, and that you understand the implications documented below.

    If the ByteString is backed by a single array it is returned without any copy. If it is backed by a rope of multiple ByteString instances a new array will be allocated and the contents will be copied into it before returning it.

    This method of exposing the bytes of a ByteString can save one array copy and allocation in the happy path scenario which can lead to better performance, however it also means that one MUST NOT modify the returned array, or unexpected immutable data structure contract-breaking behavior will manifest itself.

    This API is intended for users who need to pass the byte array to some other API, which will only read the bytes and never mutate then. For all other intents and purposes, please use the usual toArray method - which provide the immutability guarantees by copying the backing array.

    Definition Classes
    ByteString
  156. final def toBuffer[B >: Byte]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  157. def toByteBuffer: ByteBuffer

    Creates a new ByteBuffer with a copy of all bytes contained in this ByteString.

    Creates a new ByteBuffer with a copy of all bytes contained in this ByteString.

    Definition Classes
    ByteString
  158. final def toIndexedSeq: IndexedSeq[Byte]
    Definition Classes
    IndexedSeq → IterableOnceOps
  159. def toList: List[Byte]
    Definition Classes
    IterableOnceOps
  160. def toMap[K, V](implicit ev: <:<[Byte, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  161. final def toSeq: CompactByteString.this.type
    Definition Classes
    Seq → IterableOnceOps
  162. def toSet[B >: Byte]: Set[B]
    Definition Classes
    IterableOnceOps
  163. def toString(): String
    Definition Classes
    ByteString → Seq → Function1 → Iterable → AnyRef → Any
  164. def toVector: Vector[Byte]
    Definition Classes
    IterableOnceOps
  165. def transpose[B](implicit asIterable: (Byte) => Iterable[B]): IndexedSeq[IndexedSeq[B]]
    Definition Classes
    IterableOps
  166. def unapply(a: Int): Option[Byte]
    Definition Classes
    PartialFunction
  167. def unzip[A1, A2](implicit asPair: (Byte) => (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  168. def unzip3[A1, A2, A3](implicit asTriple: (Byte) => (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  169. def updated[B >: Byte](index: Int, elem: B): IndexedSeq[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  170. final def utf8String: String

    Decodes this ByteString as a UTF-8 encoded String.

    Decodes this ByteString as a UTF-8 encoded String.

    Definition Classes
    ByteString
  171. def view: IndexedSeqView[Byte]
    Definition Classes
    IndexedSeqOps → SeqOps → IterableOps
  172. def withFilter(p: (Byte) => Boolean): WithFilter[Byte, [_]IndexedSeq[_]]
    Definition Classes
    IterableOps
  173. def zip[B](that: IterableOnce[B]): IndexedSeq[(Byte, B)]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  174. def zipAll[A1 >: Byte, B](that: Iterable[B], thisElem: A1, thatElem: B): IndexedSeq[(A1, B)]
    Definition Classes
    IterableOps
  175. def zipWithIndex: IndexedSeq[(Byte, Int)]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps

Deprecated Value Members

  1. def /:[B](z: B)(op: (B, Byte) => B): B
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte])./:(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  2. final def /:[B](z: B)(op: (B, Byte) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  3. def :\[B](z: B)(op: (Byte, B) => B): B
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).:\(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  4. final def :\[B](z: B)(op: (Byte, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  5. def aggregate[B](z: => B)(seqop: (B, Byte) => B, combop: (B, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) For sequential collections, prefer foldLeft(z)(seqop). For parallel collections, use ParIterableLike#aggregate.

  6. def collectFirst[B](f: PartialFunction[Byte, B]): Option[B]
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).collectFirst(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.collectFirst(...) instead

  7. def companion: IterableFactory[[_]IndexedSeq[_]]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding() @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  8. def copyToBuffer(dest: Buffer[Byte]): Unit
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).copyToBuffer(dest)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.copyToBuffer(...) instead

  9. final def copyToBuffer[B >: Byte](dest: Buffer[B]): Unit
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  10. def count(f: (Byte) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).count(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.count(...) instead

  11. def exists(f: (Byte) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).exists(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.exists(...) instead

  12. def filter(f: (Byte) => Boolean): Iterator[Byte]
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).filter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.filter(...) instead

  13. def find(p: (Byte) => Boolean): Option[Byte]
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).find(p)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.find instead

  14. def flatMap[B](f: (Byte) => IterableOnce[B]): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).flatMap(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.flatMap instead or consider requiring an Iterable

  15. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).fold(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.fold instead

  16. def foldLeft[B](z: B)(op: (B, Byte) => B): B
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).foldLeft(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  17. def foldRight[B](z: B)(op: (Byte, B) => B): B
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).foldRight(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  18. def forall(f: (Byte) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).forall(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.forall(...) instead

  19. def foreach[U](f: (Byte) => U): Unit
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).foreach(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foreach(...) instead

  20. def hasDefiniteSize: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)

  21. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).isEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.isEmpty instead

  22. def map[B](f: (Byte) => B): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).map(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.map instead or consider requiring an Iterable

  23. def max(implicit ord: Ordering[Byte]): Byte
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).max(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.max instead

  24. def maxBy[B](f: (Byte) => B)(implicit cmp: Ordering[B]): Byte
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).maxBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.maxBy(...) instead

  25. def min(implicit ord: Ordering[Byte]): Byte
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).min(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.min instead

  26. def minBy[B](f: (Byte) => B)(implicit cmp: Ordering[B]): Byte
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).minBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.minBy(...) instead

  27. def mkString: String
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).mkString
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  28. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).mkString(sep)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  29. def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).mkString(start, sep, end)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  30. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).nonEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.nonEmpty instead

  31. final def prefixLength(p: (Byte) => Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use segmentLength instead of prefixLength

  32. def product(implicit num: Numeric[Byte]): Byte
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).product(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.product instead

  33. def reduce(f: (Byte, Byte) => Byte): Byte
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).reduce(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduce(...) instead

  34. def reduceLeft(f: (Byte, Byte) => Byte): Byte
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).reduceLeft(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceLeft(...) instead

  35. def reduceLeftOption(f: (Byte, Byte) => Byte): Option[Byte]
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).reduceLeftOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceLeftOption(...) instead

  36. def reduceOption(f: (Byte, Byte) => Byte): Option[Byte]
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).reduceOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceOption(...) instead

  37. def reduceRight(f: (Byte, Byte) => Byte): Byte
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).reduceRight(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceRight(...) instead

  38. def reduceRightOption(f: (Byte, Byte) => Byte): Option[Byte]
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).reduceRightOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceRightOption(...) instead

  39. final def repr: ByteString
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside

  40. def reverseMap[B](f: (Byte) => B): IndexedSeq[B]
    Definition Classes
    SeqOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .reverseIterator.map(f).to(...) instead of .reverseMap(f)

  41. def sameElements[B >: A](that: IterableOnce[B]): Boolean
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).sameElements(that)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sameElements instead

  42. def seq: CompactByteString.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterable.seq always returns the iterable itself

  43. def size: Int
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).size
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.size instead

  44. def sum(implicit num: Numeric[Byte]): Byte
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).sum(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sum instead

  45. def to[C1](factory: Factory[Byte, C1]): C1
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).to(factory)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(factory) instead

  46. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).toArray(arg0)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toArray

  47. def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).toBuffer
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(ArrayBuffer) instead

  48. def toIndexedSeq: IndexedSeq[Byte]
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).toIndexedSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toIndexedSeq instead

  49. final def toIterable: Iterable[Byte]
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).toIterable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Iterable) instead

  50. final def toIterable: CompactByteString.this.type
    Definition Classes
    Iterable → IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.7) toIterable is internal and will be made protected; its name is similar to toList or toSeq, but it doesn't copy non-immutable collections

  51. def toIterator: Iterator[Byte]
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).toIterator
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead

  52. final def toIterator: Iterator[Byte]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead of .toIterator

  53. def toList: List[Byte]
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).toList
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(List) instead

  54. def toMap[K, V](implicit ev: <:<[Byte, (K, V)]): Map[K, V]
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).toMap(ev)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Map) instead

  55. def toSeq: Seq[Byte]
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).toSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Seq) instead

  56. def toSet[B >: A]: Set[B]
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).toSet
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Set) instead

  57. def toStream: Stream[Byte]
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).toStream
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(LazyList) instead

  58. final def toStream: Stream[Byte]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .to(LazyList) instead of .toStream

  59. final def toTraversable: Traversable[Byte]
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).toTraversable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Iterable) instead

  60. final def toTraversable: Traversable[Byte]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) toTraversable is internal and will be made protected; its name is similar to toList or toSeq, but it doesn't copy non-immutable collections

  61. def toVector: Vector[Byte]
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).toVector
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Vector) instead

  62. final def union[B >: Byte](that: Seq[B]): IndexedSeq[B]
    Definition Classes
    SeqOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use concat instead

  63. def view(from: Int, until: Int): IndexedSeqView[Byte]
    Definition Classes
    IndexedSeqOps → IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)

  64. def withFilter(f: (Byte) => Boolean): Iterator[Byte]
    Implicit
    This member is added by an implicit conversion from CompactByteString toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (compactByteString: IterableOnceExtensionMethods[Byte]).withFilter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.withFilter(...) instead