Packages

c

akka.util.ByteString

ByteString1C

final class ByteString1C extends CompactByteString

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ByteString1C
  2. CompactByteString
  3. Serializable
  4. Serializable
  5. ByteString
  6. IndexedSeqOptimized
  7. IndexedSeq
  8. IndexedSeq
  9. IndexedSeqLike
  10. Seq
  11. Seq
  12. SeqLike
  13. GenSeq
  14. GenSeqLike
  15. PartialFunction
  16. Function1
  17. Iterable
  18. Iterable
  19. IterableLike
  20. Equals
  21. GenIterable
  22. GenIterableLike
  23. Traversable
  24. Immutable
  25. Traversable
  26. GenTraversable
  27. GenericTraversableTemplate
  28. TraversableLike
  29. GenTraversableLike
  30. Parallelizable
  31. TraversableOnce
  32. GenTraversableOnce
  33. FilterMonadic
  34. HasNewBuilder
  35. AnyRef
  36. Any
Implicitly
  1. by CollectionsHaveToParArray
  2. by MonadOps
  3. by any2stringadd
  4. by StringFormat
  5. by Ensuring
  6. by ArrowAssoc
  7. by alternateImplicit
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class Elements extends AbstractIterator[A] with BufferedIterator[A] with Serializable
    Attributes
    protected
    Definition Classes
    IndexedSeqLike
    Annotations
    @SerialVersionUID()
  2. type Self = ByteString
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  3. class WithFilter extends FilterMonadic[A, Repr]
    Definition Classes
    TraversableLike

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from ByteString1C to any2stringadd[ByteString1C] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ++(that: ByteString): ByteString

    Efficiently concatenate another ByteString.

    Efficiently concatenate another ByteString.

    Definition Classes
    ByteString1CByteString
  5. def ++[B >: Byte, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[ByteString, B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  6. def ++:[B >: Byte, That](that: Traversable[B])(implicit bf: CanBuildFrom[ByteString, B, That]): That
    Definition Classes
    TraversableLike
  7. def ++:[B >: Byte, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[ByteString, B, That]): That
    Definition Classes
    TraversableLike
  8. def +:[B >: Byte, That](elem: B)(implicit bf: CanBuildFrom[ByteString, B, That]): That
    Definition Classes
    SeqLike → GenSeqLike
  9. def ->[B](y: B): (ByteString1C, B)
    Implicit
    This member is added by an implicit conversion from ByteString1C to ArrowAssoc[ByteString1C] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  10. def /:[B](z: B)(op: (B, Byte) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  11. def :+[B >: Byte, That](elem: B)(implicit bf: CanBuildFrom[ByteString, B, That]): That
    Definition Classes
    SeqLike → GenSeqLike
  12. def :\[B](z: B)(op: (Byte, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  13. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. def addString(b: StringBuilder): StringBuilder
    Definition Classes
    TraversableOnce
  15. def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    TraversableOnce
  16. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    TraversableOnce
  17. def aggregate[B](z: ⇒ B)(seqop: (B, Byte) ⇒ B, combop: (B, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  18. def andThen[C](k: (Byte) ⇒ C): PartialFunction[Int, C]
    Definition Classes
    PartialFunction → Function1
  19. def apply(idx: Int): Byte
    Definition Classes
    ByteString1CByteString → SeqLike → GenSeqLike → Function1
  20. def applyOrElse[A1 <: Int, B1 >: Byte](x: A1, default: (A1) ⇒ B1): B1
    Definition Classes
    PartialFunction
  21. 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
    ByteString1CByteString
  22. 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
    ByteString1CByteString
  23. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  24. def canEqual(that: Any): Boolean
    Definition Classes
    IterableLike → Equals
  25. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate() @throws( ... )
  26. def collect[B, That](pf: PartialFunction[Byte, B])(implicit bf: CanBuildFrom[ByteString, B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  27. def collectFirst[B](pf: PartialFunction[Byte, B]): Option[B]
    Definition Classes
    TraversableOnce
  28. def combinations(n: Int): Iterator[ByteString]
    Definition Classes
    SeqLike
  29. def compact: ByteString1C.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
  30. def companion: GenericCompanion[IndexedSeq]
    Definition Classes
    IndexedSeq → IndexedSeq → Seq → Seq → GenSeq → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → GenericTraversableTemplate
  31. def compose[A](g: (A) ⇒ Int): (A) ⇒ Byte
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  32. def concat(that: ByteString): ByteString

    Java API: efficiently concatenate another ByteString.

    Java API: efficiently concatenate another ByteString.

    Definition Classes
    ByteString
  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
    ByteString → 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(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
    ByteString1CByteString
  39. def copyToBuffer[B >: Byte](dest: Buffer[B]): Unit
    Definition Classes
    TraversableOnce
  40. def corresponds[B](that: GenSeq[B])(p: (Byte, B) ⇒ Boolean): Boolean
    Definition Classes
    SeqLike → GenSeqLike
  41. def count(p: (Byte) ⇒ Boolean): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  42. def decodeBase64: ByteString
    Definition Classes
    ByteString1CByteString
  43. 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
    ByteString1CByteString
  44. 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
    ByteString1CByteString
  45. def diff[B >: Byte](that: GenSeq[B]): ByteString
    Definition Classes
    SeqLike → GenSeqLike
  46. def distinct: ByteString
    Definition Classes
    SeqLike → GenSeqLike
  47. def drop(n: Int): ByteString
    Definition Classes
    ByteString1CByteString → IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  48. def dropRight(n: Int): ByteString
    Definition Classes
    ByteString1CByteString → IndexedSeqOptimized → IterableLike
  49. def dropWhile(p: (Byte) ⇒ Boolean): ByteString
    Definition Classes
    ByteString → IndexedSeqOptimized → TraversableLike → GenTraversableLike
  50. 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
    ByteString1CByteString
  51. def endsWith[B](that: GenSeq[B]): Boolean
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  52. def ensuring(cond: (ByteString1C) ⇒ Boolean, msg: ⇒ Any): ByteString1C
    Implicit
    This member is added by an implicit conversion from ByteString1C to Ensuring[ByteString1C] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  53. def ensuring(cond: (ByteString1C) ⇒ Boolean): ByteString1C
    Implicit
    This member is added by an implicit conversion from ByteString1C to Ensuring[ByteString1C] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  54. def ensuring(cond: Boolean, msg: ⇒ Any): ByteString1C
    Implicit
    This member is added by an implicit conversion from ByteString1C to Ensuring[ByteString1C] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  55. def ensuring(cond: Boolean): ByteString1C
    Implicit
    This member is added by an implicit conversion from ByteString1C to Ensuring[ByteString1C] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  56. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  57. def equals(that: Any): Boolean
    Definition Classes
    GenSeqLike → Equals → Any
  58. def exists(p: (Byte) ⇒ Boolean): Boolean
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  59. def filter(p: (Byte) ⇒ Boolean): ByteString
    Definition Classes
    TraversableLike → GenTraversableLike
  60. def filterNot(p: (Byte) ⇒ Boolean): ByteString
    Definition Classes
    TraversableLike → GenTraversableLike
  61. def find(p: (Byte) ⇒ Boolean): Option[Byte]
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  62. def flatMap[B, That](f: (Byte) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[ByteString, B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  63. def flatten[B](implicit asTraversable: (Byte) ⇒ GenTraversableOnce[B]): IndexedSeq[B]
    Definition Classes
    GenericTraversableTemplate
  64. def fold[A1 >: Byte](z: A1)(op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  65. def foldLeft[B](z: B)(op: (B, Byte) ⇒ B): B
    Definition Classes
    IndexedSeqOptimized → TraversableOnce → GenTraversableOnce
  66. def foldRight[B](z: B)(op: (Byte, B) ⇒ B): B
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableOnce → GenTraversableOnce
  67. def forall(p: (Byte) ⇒ Boolean): Boolean
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  68. def foreach[U](f: (Byte) ⇒ U): Unit
    Definition Classes
    ByteString → IndexedSeqOptimized → IterableLike → GenericTraversableTemplate → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  69. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ByteString1C to StringFormat[ByteString1C] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  70. def genericBuilder[B]: Builder[B, IndexedSeq[B]]
    Definition Classes
    GenericTraversableTemplate
  71. 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
  72. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  73. def groupBy[K](f: (Byte) ⇒ K): Map[K, ByteString]
    Definition Classes
    TraversableLike → GenTraversableLike
  74. def grouped(size: Int): Iterator[ByteString]
    Definition Classes
    ByteString → IterableLike
  75. def hasDefiniteSize: Boolean
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  76. def hashCode(): Int
    Definition Classes
    IndexedSeqLike → GenSeqLike → Any
  77. def head: Byte
    Definition Classes
    ByteString → IndexedSeqOptimized → IterableLike → GenericTraversableTemplate → TraversableLike → GenTraversableLike
  78. def headOption: Option[Byte]
    Definition Classes
    TraversableLike → GenTraversableLike
  79. def indexOf[B >: Byte](elem: B, from: Int): Int
    Definition Classes
    ByteString1C → GenSeqLike
  80. def indexOf[B >: Byte](elem: B): Int
    Definition Classes
    ByteString1CByteString → GenSeqLike
  81. def indexOfSlice[B >: Byte](that: GenSeq[B], from: Int): Int
    Definition Classes
    SeqLike
  82. def indexOfSlice[B >: Byte](that: GenSeq[B]): Int
    Definition Classes
    SeqLike
  83. def indexWhere(p: (Byte) ⇒ Boolean): Int
    Definition Classes
    ByteString → GenSeqLike
  84. def indexWhere(p: (Byte) ⇒ Boolean, from: Int): Int
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  85. def indices: Range
    Definition Classes
    SeqLike
  86. def init: ByteString
    Definition Classes
    ByteString → IndexedSeqOptimized → TraversableLike → GenTraversableLike
  87. def inits: Iterator[ByteString]
    Definition Classes
    TraversableLike
  88. def intersect[B >: Byte](that: GenSeq[B]): ByteString
    Definition Classes
    SeqLike → GenSeqLike
  89. 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
  90. def isDefinedAt(idx: Int): Boolean
    Definition Classes
    GenSeqLike
  91. def isEmpty: Boolean
    Definition Classes
    IndexedSeqOptimized → SeqLike → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  92. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  93. final def isTraversableAgain: Boolean
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  94. def iterator: ByteArrayIterator
    Definition Classes
    ByteString1CByteString → IndexedSeqLike → IterableLike → GenIterableLike
  95. def last: Byte
    Definition Classes
    ByteString → IndexedSeqOptimized → TraversableLike → GenTraversableLike
  96. def lastIndexOf[B >: Byte](elem: B, end: Int): Int
    Definition Classes
    GenSeqLike
  97. def lastIndexOf[B >: Byte](elem: B): Int
    Definition Classes
    GenSeqLike
  98. def lastIndexOfSlice[B >: Byte](that: GenSeq[B], end: Int): Int
    Definition Classes
    SeqLike
  99. def lastIndexOfSlice[B >: Byte](that: GenSeq[B]): Int
    Definition Classes
    SeqLike
  100. def lastIndexWhere(p: (Byte) ⇒ Boolean, end: Int): Int
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  101. def lastIndexWhere(p: (Byte) ⇒ Boolean): Int
    Definition Classes
    GenSeqLike
  102. def lastOption: Option[Byte]
    Definition Classes
    TraversableLike → GenTraversableLike
  103. def length: Int
    Definition Classes
    ByteString1C → SeqLike → GenSeqLike
  104. def lengthCompare(len: Int): Int
    Definition Classes
    IndexedSeqOptimized → SeqLike
  105. def lift: (Int) ⇒ Option[Byte]
    Definition Classes
    PartialFunction
  106. def map[B, That](f: (Byte) ⇒ B)(implicit bf: CanBuildFrom[ByteString, B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  107. 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
  108. def max[B >: Byte](implicit cmp: Ordering[B]): Byte
    Definition Classes
    TraversableOnce → GenTraversableOnce
  109. def maxBy[B](f: (Byte) ⇒ B)(implicit cmp: Ordering[B]): Byte
    Definition Classes
    TraversableOnce → GenTraversableOnce
  110. def min[B >: Byte](implicit cmp: Ordering[B]): Byte
    Definition Classes
    TraversableOnce → GenTraversableOnce
  111. def minBy[B](f: (Byte) ⇒ B)(implicit cmp: Ordering[B]): Byte
    Definition Classes
    TraversableOnce → GenTraversableOnce
  112. def mkString: String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  113. def mkString(sep: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  114. def mkString(start: String, sep: String, end: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  115. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  116. def newBuilder: ByteStringBuilder
    Attributes
    protected[this]
    Definition Classes
    ByteString → GenericTraversableTemplate → TraversableLike → HasNewBuilder
  117. def nonEmpty: Boolean
    Definition Classes
    TraversableOnce → GenTraversableOnce
  118. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  119. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  120. def orElse[A1 <: Int, B1 >: Byte](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
    Definition Classes
    PartialFunction
  121. def padTo[B >: Byte, That](len: Int, elem: B)(implicit bf: CanBuildFrom[ByteString, B, That]): That
    Definition Classes
    SeqLike → GenSeqLike
  122. def par: ParSeq[Byte]
    Definition Classes
    Parallelizable
  123. def parCombiner: Combiner[Byte, ParSeq[Byte]]
    Attributes
    protected[this]
    Definition Classes
    Seq → SeqLike → Iterable → TraversableLike → Parallelizable
  124. def partition(p: (Byte) ⇒ Boolean): (ByteString, ByteString)
    Definition Classes
    TraversableLike → GenTraversableLike
  125. def patch[B >: Byte, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[ByteString, B, That]): That
    Definition Classes
    SeqLike → GenSeqLike
  126. def permutations: Iterator[ByteString]
    Definition Classes
    SeqLike
  127. def prefixLength(p: (Byte) ⇒ Boolean): Int
    Definition Classes
    GenSeqLike
  128. def product[B >: Byte](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  129. def reduce[A1 >: Byte](op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  130. def reduceLeft[B >: Byte](op: (B, Byte) ⇒ B): B
    Definition Classes
    IndexedSeqOptimized → TraversableOnce
  131. def reduceLeftOption[B >: Byte](op: (B, Byte) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  132. def reduceOption[A1 >: Byte](op: (A1, A1) ⇒ A1): Option[A1]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  133. def reduceRight[B >: Byte](op: (Byte, B) ⇒ B): B
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableOnce → GenTraversableOnce
  134. def reduceRightOption[B >: Byte](op: (Byte, B) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  135. def repr: ByteString
    Definition Classes
    TraversableLike → GenTraversableLike
  136. def reverse: ByteString
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  137. def reverseIterator: Iterator[Byte]
    Definition Classes
    IndexedSeqOptimized → SeqLike
  138. def reverseMap[B, That](f: (Byte) ⇒ B)(implicit bf: CanBuildFrom[ByteString, B, That]): That
    Definition Classes
    SeqLike → GenSeqLike
  139. def reversed: List[Byte]
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  140. def runWith[U](action: (Byte) ⇒ U): (Int) ⇒ Boolean
    Definition Classes
    PartialFunction
  141. def sameElements[B >: Byte](that: GenIterable[B]): Boolean
    Definition Classes
    IndexedSeqOptimized → IterableLike → GenIterableLike
  142. def scan[B >: Byte, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[ByteString, B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  143. def scanLeft[B, That](z: B)(op: (B, Byte) ⇒ B)(implicit bf: CanBuildFrom[ByteString, B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  144. def scanRight[B, That](z: B)(op: (Byte, B) ⇒ B)(implicit bf: CanBuildFrom[ByteString, 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.

  145. def segmentLength(p: (Byte) ⇒ Boolean, from: Int): Int
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  146. def seq: IndexedSeq[Byte]
    Definition Classes
    IndexedSeq → IndexedSeq → IndexedSeqLike → Seq → Seq → GenSeq → GenSeqLike → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  147. def size: Int
    Definition Classes
    SeqLike → GenTraversableLike → TraversableOnce → GenTraversableOnce
  148. def sizeHintIfCheap: Int
    Attributes
    protected[scala.collection]
    Definition Classes
    IndexedSeqLike → GenTraversableOnce
  149. def slice(from: Int, until: Int): ByteString
    Definition Classes
    ByteString1CByteString → IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  150. def sliding(size: Int, step: Int): Iterator[ByteString]
    Definition Classes
    IterableLike
  151. def sliding(size: Int): Iterator[ByteString]
    Definition Classes
    IterableLike
  152. def sortBy[B](f: (Byte) ⇒ B)(implicit ord: Ordering[B]): ByteString
    Definition Classes
    SeqLike
  153. def sortWith(lt: (Byte, Byte) ⇒ Boolean): ByteString
    Definition Classes
    SeqLike
  154. def sorted[B >: Byte](implicit ord: Ordering[B]): ByteString
    Definition Classes
    SeqLike
  155. def span(p: (Byte) ⇒ Boolean): (ByteString, ByteString)
    Definition Classes
    ByteString → IndexedSeqOptimized → TraversableLike → GenTraversableLike
  156. def splitAt(n: Int): (ByteString, ByteString)
    Definition Classes
    ByteString → IndexedSeqOptimized → TraversableLike → GenTraversableLike
  157. def startsWith[B](that: GenSeq[B], offset: Int): Boolean
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  158. def startsWith[B](that: GenSeq[B]): Boolean
    Definition Classes
    GenSeqLike
  159. final def stringPrefix: String
    Definition Classes
    ByteString → TraversableLike → GenTraversableLike
  160. def sum[B >: Byte](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  161. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  162. def tail: ByteString
    Definition Classes
    ByteString → IndexedSeqOptimized → TraversableLike → GenTraversableLike
  163. def tails: Iterator[ByteString]
    Definition Classes
    TraversableLike
  164. def take(n: Int): ByteString
    Definition Classes
    ByteString1CByteString → IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  165. def takeRight(n: Int): ByteString
    Definition Classes
    ByteString → IndexedSeqOptimized → IterableLike
  166. def takeWhile(p: (Byte) ⇒ Boolean): ByteString
    Definition Classes
    ByteString → IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  167. def thisCollection: IndexedSeq[Byte]
    Attributes
    protected[this]
    Definition Classes
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  168. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Byte, Col[Byte]]): Col[Byte]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  169. def toArray[B >: Byte](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    ByteString → TraversableOnce → GenTraversableOnce
  170. def toArray: Array[Byte]

    Java API: copy this ByteString into a fresh byte array

    Java API: copy this ByteString into a fresh byte array

    returns

    this ByteString copied into a byte array

    Attributes
    protected[akka.util.ByteString]
    Definition Classes
    ByteString
  171. def toBuffer[A1 >: Byte]: Buffer[A1]
    Definition Classes
    IndexedSeqLike → TraversableOnce → GenTraversableOnce
  172. 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
  173. def toCollection(repr: ByteString): IndexedSeq[Byte]
    Attributes
    protected[this]
    Definition Classes
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  174. def toIndexedSeq: IndexedSeq[Byte]
    Definition Classes
    IndexedSeq → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  175. def toIterable: Iterable[Byte]
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  176. def toIterator: Iterator[Byte]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  177. def toList: List[Byte]
    Definition Classes
    IndexedSeqOptimized → TraversableOnce → GenTraversableOnce
  178. def toMap[T, U](implicit ev: <:<[Byte, (T, U)]): Map[T, U]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  179. def toParArray: ParArray[T]
    Implicit
    This member is added by an implicit conversion from ByteString1C to CollectionsHaveToParArray[ByteString1C, T] performed by method CollectionsHaveToParArray in scala.collection.parallel. This conversion will take place only if an implicit value of type (ByteString1C) ⇒ GenTraversableOnce[T] is in scope.
    Definition Classes
    CollectionsHaveToParArray
  180. def toSeq: Seq[Byte]
    Definition Classes
    Seq → SeqLike → GenSeqLike → TraversableOnce → GenTraversableOnce
  181. def toSet[B >: Byte]: Set[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  182. def toStream: Stream[Byte]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  183. def toString(): String
    Definition Classes
    ByteString → SeqLike → Function1 → TraversableLike → AnyRef → Any
  184. def toTraversable: Traversable[Byte]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  185. def toVector: Vector[Byte]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  186. def transpose[B](implicit asTraversable: (Byte) ⇒ GenTraversableOnce[B]): IndexedSeq[IndexedSeq[B]]
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  187. def union[B >: Byte, That](that: GenSeq[B])(implicit bf: CanBuildFrom[ByteString, B, That]): That
    Definition Classes
    SeqLike → GenSeqLike
  188. def unzip[A1, A2](implicit asPair: (Byte) ⇒ (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])
    Definition Classes
    GenericTraversableTemplate
  189. def unzip3[A1, A2, A3](implicit asTriple: (Byte) ⇒ (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])
    Definition Classes
    GenericTraversableTemplate
  190. def updated[B >: Byte, That](index: Int, elem: B)(implicit bf: CanBuildFrom[ByteString, B, That]): That
    Definition Classes
    SeqLike → GenSeqLike
  191. 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
  192. def view(from: Int, until: Int): SeqView[Byte, ByteString]
    Definition Classes
    SeqLike → IterableLike → TraversableLike
  193. def view: SeqView[Byte, ByteString]
    Definition Classes
    SeqLike → IterableLike → TraversableLike
  194. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  195. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  196. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  197. def withFilter(p: (Byte) ⇒ Boolean): FilterMonadic[Byte, ByteString]
    Definition Classes
    TraversableLike → FilterMonadic
  198. def zip[A1 >: Byte, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[ByteString, (A1, B), That]): That
    Definition Classes
    IndexedSeqOptimized → IterableLike → GenIterableLike
  199. def zipAll[B, A1 >: Byte, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[ByteString, (A1, B), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  200. def zipWithIndex[A1 >: Byte, That](implicit bf: CanBuildFrom[ByteString, (A1, Int), That]): That
    Definition Classes
    IndexedSeqOptimized → IterableLike → GenIterableLike
  201. def [B](y: B): (ByteString1C, B)
    Implicit
    This member is added by an implicit conversion from ByteString1C to ArrowAssoc[ByteString1C] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def filter(p: (Byte) ⇒ Boolean): TraversableOnce[Byte]
    Implicit
    This member is added by an implicit conversion from ByteString1C to MonadOps[Byte] performed by method MonadOps in scala.collection.TraversableOnce.
    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:
    (byteString1C: MonadOps[Byte]).filter(p)
    Definition Classes
    MonadOps
  2. def flatMap[B](f: (Byte) ⇒ GenTraversableOnce[B]): TraversableOnce[B]
    Implicit
    This member is added by an implicit conversion from ByteString1C to MonadOps[Byte] performed by method MonadOps in scala.collection.TraversableOnce.
    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:
    (byteString1C: MonadOps[Byte]).flatMap(f)
    Definition Classes
    MonadOps
  3. def map[B](f: (Byte) ⇒ B): TraversableOnce[B]
    Implicit
    This member is added by an implicit conversion from ByteString1C to MonadOps[Byte] performed by method MonadOps in scala.collection.TraversableOnce.
    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:
    (byteString1C: MonadOps[Byte]).map(f)
    Definition Classes
    MonadOps
  4. def withFilter(p: (Byte) ⇒ Boolean): Iterator[Byte]
    Implicit
    This member is added by an implicit conversion from ByteString1C to MonadOps[Byte] performed by method MonadOps in scala.collection.TraversableOnce.
    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:
    (byteString1C: MonadOps[Byte]).withFilter(p)
    Definition Classes
    MonadOps

Deprecated Value Members

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

    (Since version ) see corresponding Javadoc for more information.

Inherited from CompactByteString

Inherited from Serializable

Inherited from Serializable

Inherited from ByteString

Inherited from IndexedSeq[Byte]

Inherited from IndexedSeq[Byte]

Inherited from IndexedSeqLike[Byte, ByteString]

Inherited from Seq[Byte]

Inherited from Seq[Byte]

Inherited from SeqLike[Byte, ByteString]

Inherited from GenSeq[Byte]

Inherited from GenSeqLike[Byte, ByteString]

Inherited from PartialFunction[Int, Byte]

Inherited from (Int) ⇒ Byte

Inherited from Iterable[Byte]

Inherited from Iterable[Byte]

Inherited from IterableLike[Byte, ByteString]

Inherited from Equals

Inherited from GenIterable[Byte]

Inherited from GenIterableLike[Byte, ByteString]

Inherited from Traversable[Byte]

Inherited from Immutable

Inherited from Traversable[Byte]

Inherited from GenTraversable[Byte]

Inherited from TraversableLike[Byte, ByteString]

Inherited from Parallelizable[Byte, ParSeq[Byte]]

Inherited from TraversableOnce[Byte]

Inherited from GenTraversableOnce[Byte]

Inherited from FilterMonadic[Byte, ByteString]

Inherited from HasNewBuilder[Byte, ByteString]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion CollectionsHaveToParArray from ByteString1C to CollectionsHaveToParArray[ByteString1C, T]

Inherited by implicit conversion MonadOps from ByteString1C to MonadOps[Byte]

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

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

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

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

Inherited by implicit conversion alternateImplicit from ByteString1C to ForceImplicitAmbiguity

Ungrouped