ByteString1C

izumi.sick.thirdparty.akka.util.ByteString$.ByteString1C
final class ByteString1C extends CompactByteString

A compact (unsliced) and unfragmented ByteString, implementation of ByteString1C.

Attributes

Graph
Supertypes
trait Serializable
trait StrictOptimizedSeqOps[Byte, IndexedSeq, ByteString]
trait StrictOptimizedSeqOps[Byte, IndexedSeq, ByteString]
trait StrictOptimizedIterableOps[Byte, IndexedSeq, ByteString]
trait IndexedSeq[Byte]
trait IndexedSeqOps[Byte, IndexedSeq, ByteString]
trait IndexedSeq[Byte]
trait IndexedSeqOps[Byte, IndexedSeq, ByteString]
trait Seq[Byte]
trait SeqOps[Byte, IndexedSeq, ByteString]
trait Seq[Byte]
trait Equals
trait SeqOps[Byte, IndexedSeq, ByteString]
trait PartialFunction[Int, Byte]
trait Int => Byte
trait Iterable[Byte]
trait Iterable[Byte]
trait IterableFactoryDefaults[Byte, IndexedSeq]
trait IterableOps[Byte, IndexedSeq, ByteString]
trait IterableOnceOps[Byte, IndexedSeq, ByteString]
trait IterableOnce[Byte]
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Concrete methods

override def ++(that: ByteString): ByteString

Efficiently concatenate another ByteString.

Efficiently concatenate another ByteString.

Attributes

Definition Classes
def apply(idx: Int): Byte
override 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.

Attributes

Definition Classes
override def asByteBuffers: Iterable[ByteBuffer]

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

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

Attributes

Definition Classes
override def copyToArray[B >: Byte](dest: Array[B], start: Int, len: Int): Int

Attributes

Definition Classes
ByteString -> IterableOnceOps
override def copyToBuffer(buffer: ByteBuffer): Int

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

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

Attributes

buffer

a ByteBuffer to copy bytes to

Returns:

the number of bytes actually copied

Definition Classes
override def decodeBase64: ByteString

Attributes

Definition Classes
override def decodeString(charset: String): 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.

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.

Attributes

Definition Classes
override def decodeString(charset: Charset): 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).

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

Attributes

Definition Classes
override def drop(n: Int): ByteString

Attributes

Definition Classes
ByteString -> IndexedSeqOps -> IterableOps -> IterableOnceOps
override def dropRight(n: Int): ByteString

Attributes

Definition Classes
ByteString -> StrictOptimizedIterableOps -> IndexedSeqOps -> IterableOps
override 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

Attributes

Definition Classes
override def indexOf[B >: Byte](elem: B, from: Int): Int

Attributes

Definition Classes
ByteString -> SeqOps
override def iterator: ByteArrayIterator

Attributes

Definition Classes
ByteString -> IndexedSeqOps -> IterableOnce
override def length: Int

Attributes

Definition Classes
SeqOps
override def slice(from: Int, until: Int): ByteString

Attributes

Definition Classes
ByteString -> IndexedSeqOps -> IndexedSeqOps -> IterableOps -> IterableOnceOps
override def take(n: Int): ByteString

Attributes

Definition Classes
ByteString -> IndexedSeqOps -> IterableOps -> IterableOnceOps
override 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.

Attributes

Definition Classes

Inherited methods

final def ++[B >: Byte](suffix: IterableOnce[B]): CC[B]

Attributes

Inherited from:
IterableOps
final override def ++:[B >: Byte](prefix: IterableOnce[B]): CC[B]

Attributes

Definition Classes
SeqOps -> IterableOps
Inherited from:
SeqOps
final def +:[B >: Byte](elem: B): CC[B]

Attributes

Inherited from:
SeqOps
final def :+[B >: Byte](elem: B): CC[B]

Attributes

Inherited from:
SeqOps
final def :++[B >: Byte](suffix: IterableOnce[B]): CC[B]

Attributes

Inherited from:
SeqOps
final def addString(b: StringBuilder): StringBuilder

Attributes

Inherited from:
IterableOnceOps
final def addString(b: StringBuilder, sep: String): StringBuilder

Attributes

Inherited from:
IterableOnceOps
def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

Attributes

Inherited from:
IterableOnceOps
def andThen[C](k: PartialFunction[Byte, C]): PartialFunction[A, C]

Attributes

Inherited from:
PartialFunction
override def andThen[C](k: Byte => C): PartialFunction[A, C]

Attributes

Definition Classes
PartialFunction -> Function1
Inherited from:
PartialFunction
override def appended[B >: Byte](elem: B): CC[B]

Attributes

Definition Classes
StrictOptimizedSeqOps -> SeqOps
Inherited from:
StrictOptimizedSeqOps
override def appendedAll[B >: Byte](suffix: IterableOnce[B]): CC[B]

Attributes

Definition Classes
StrictOptimizedSeqOps -> SeqOps
Inherited from:
StrictOptimizedSeqOps
def applyOrElse[A1 <: Int, B1 >: Byte](x: A1, default: A1 => B1): B1

Attributes

Inherited from:
PartialFunction
override def canEqual(that: Any): Boolean

Attributes

Definition Classes
IndexedSeq -> Seq -> Equals
Inherited from:
IndexedSeq
final override def className: String

Attributes

Definition Classes
ByteString -> Iterable
Inherited from:
ByteString
override def collect[B](pf: PartialFunction[Byte, B]): CC[B]

Attributes

Definition Classes
StrictOptimizedIterableOps -> IterableOps -> IterableOnceOps
Inherited from:
StrictOptimizedIterableOps
def collectFirst[B](pf: PartialFunction[Byte, B]): Option[B]

Attributes

Inherited from:
IterableOnceOps
def combinations(n: Int): Iterator[C]

Attributes

Inherited from:
SeqOps
def compact: CompactByteString.this.type

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.

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.

Attributes

Inherited from:
CompactByteString
def compose[R](k: PartialFunction[R, Int]): PartialFunction[R, B]

Attributes

Inherited from:
PartialFunction
def compose[A](g: A => Int): A => R

Attributes

Inherited from:
Function1

Java API: efficiently concatenate another ByteString.

Java API: efficiently concatenate another ByteString.

Attributes

Inherited from:
ByteString
final override def concat[B >: Byte](suffix: IterableOnce[B]): CC[B]

Attributes

Definition Classes
SeqOps -> IterableOps
Inherited from:
SeqOps
def contains[A1 >: Byte](elem: A1): Boolean

Attributes

Inherited from:
SeqOps
def containsSlice[B >: Byte](that: Seq[B]): Boolean

Attributes

Inherited from:
SeqOps
final override def copyToArray[B >: Byte](xs: Array[B], start: Int): Int

Attributes

Definition Classes
ByteString -> IterableOnceOps
Inherited from:
ByteString
def copyToArray[B >: Byte](xs: Array[B]): Int

Attributes

Inherited from:
IterableOnceOps
def corresponds[B](that: IterableOnce[B])(p: (Byte, B) => Boolean): Boolean

Attributes

Inherited from:
IterableOnceOps
def corresponds[B](that: Seq[B])(p: (Byte, B) => Boolean): Boolean

Attributes

Inherited from:
SeqOps
def count(p: Byte => Boolean): Int

Attributes

Inherited from:
IterableOnceOps
override def diff[B >: Byte](that: Seq[B]): C

Attributes

Definition Classes
StrictOptimizedSeqOps -> SeqOps
Inherited from:
StrictOptimizedSeqOps
def distinct: C

Attributes

Inherited from:
SeqOps
override def distinctBy[B](f: Byte => B): C

Attributes

Definition Classes
StrictOptimizedSeqOps -> StrictOptimizedSeqOps -> SeqOps
Inherited from:
StrictOptimizedSeqOps
override def dropWhile(p: Byte => Boolean): ByteString

Attributes

Definition Classes
ByteString -> IterableOps -> IterableOnceOps
Inherited from:
ByteString
def elementWise: ElementWiseExtractor[A, B]

Attributes

Inherited from:
PartialFunction
override def empty: ByteString

Attributes

Definition Classes
ByteString -> IterableFactoryDefaults -> IterableOps
Inherited from:
ByteString
def endsWith[B >: Byte](that: Iterable[B]): Boolean

Attributes

Inherited from:
SeqOps
override def equals(o: Any): Boolean

Compares the receiver object (this) with the argument object (that) for equivalence.

Compares the receiver object (this) with the argument object (that) for equivalence.

Any implementation of this method should be an equivalence relation:

  • It is reflexive: for any instance x of type Any, x.equals(x) should return true.
  • It is symmetric: for any instances x and y of type Any, x.equals(y) should return true if and only if y.equals(x) returns true.
  • It is transitive: for any instances x, y, and z of type Any if x.equals(y) returns true and y.equals(z) returns true, then x.equals(z) should return true.

If you override this method, you should verify that your implementation remains an equivalence relation. Additionally, when overriding this method it is usually necessary to override hashCode to ensure that objects which are "equal" (o1.equals(o2) returns true) hash to the same scala.Int. (o1.hashCode.equals(o2.hashCode)).

Attributes

that

the object to compare against this object for equality.

Returns:

true if the receiver object is equivalent to the argument; false otherwise.

Definition Classes
Seq -> Equals -> Any
Inherited from:
Seq
def exists(p: Byte => Boolean): Boolean

Attributes

Inherited from:
IterableOnceOps
override def filter(pred: Byte => Boolean): C

Attributes

Definition Classes
StrictOptimizedIterableOps -> IterableOps -> IterableOnceOps
Inherited from:
StrictOptimizedIterableOps
override def filterNot(pred: Byte => Boolean): C

Attributes

Definition Classes
StrictOptimizedIterableOps -> IterableOps -> IterableOnceOps
Inherited from:
StrictOptimizedIterableOps
def find(p: Byte => Boolean): Option[A]

Attributes

Inherited from:
IterableOnceOps
def findLast(p: Byte => Boolean): Option[A]

Attributes

Inherited from:
SeqOps
override def flatMap[B](f: Byte => IterableOnce[B]): CC[B]

Attributes

Definition Classes
StrictOptimizedIterableOps -> IterableOps -> IterableOnceOps
Inherited from:
StrictOptimizedIterableOps
override def flatten[B](implicit toIterableOnce: Byte => IterableOnce[B]): CC[B]

Attributes

Definition Classes
StrictOptimizedIterableOps -> IterableOps -> IterableOnceOps
Inherited from:
StrictOptimizedIterableOps
def fold[A1 >: Byte](z: A1)(op: (A1, A1) => A1): A1

Attributes

Inherited from:
IterableOnceOps
def foldLeft[B](z: B)(op: (B, Byte) => B): B

Attributes

Inherited from:
IterableOnceOps
override def foldRight[B](z: B)(op: (Byte, B) => B): B

Attributes

Definition Classes
IndexedSeqOps -> IterableOnceOps
Inherited from:
IndexedSeqOps
def forall(p: Byte => Boolean): Boolean

Attributes

Inherited from:
IterableOnceOps
override def foreach[U](f: Byte => U): Unit

Attributes

Definition Classes
ByteString -> IterableOnceOps
Inherited from:
ByteString
def getByteBuffers(): Iterable[ByteBuffer]

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

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

Attributes

Inherited from:
ByteString
def groupBy[K](f: Byte => K): Map[K, C]

Attributes

Inherited from:
IterableOps
def groupMap[K, B](key: Byte => K)(f: Byte => B): Map[K, CC[B]]

Attributes

Inherited from:
IterableOps
def groupMapReduce[K, B](key: Byte => K)(f: Byte => B)(reduce: (B, B) => B): Map[K, B]

Attributes

Inherited from:
IterableOps
override def grouped(size: Int): Iterator[ByteString]

Attributes

Definition Classes
ByteString -> IterableOps
Inherited from:
ByteString
override def hashCode(): Int

Calculate a hash code value for the object.

Calculate a hash code value for the object.

The default hashing algorithm is platform dependent.

Note that it is allowed for two objects to have identical hash codes (o1.hashCode.equals(o2.hashCode)) yet not be equal (o1.equals(o2) returns false). A degenerate implementation could always return 0. However, it is required that if two objects are equal (o1.equals(o2) returns true) that they have identical hash codes (o1.hashCode.equals(o2.hashCode)). Therefore, when overriding this method, be sure to verify that the behavior is consistent with the equals method.

Attributes

Returns:

the hash code value for this object.

Definition Classes
Seq -> Any
Inherited from:
Seq
override def head: Byte

Attributes

Definition Classes
ByteString -> IndexedSeqOps -> IterableOps
Inherited from:
ByteString
override def headOption: Option[A]

Attributes

Definition Classes
IndexedSeqOps -> IterableOps
Inherited from:
IndexedSeqOps
def indexOf[B >: Byte](elem: B): Int

Attributes

Inherited from:
SeqOps
def indexOfSlice[B >: Byte](that: Seq[B]): Int

Attributes

Inherited from:
SeqOps
def indexOfSlice[B >: Byte](that: Seq[B], from: Int): Int

Attributes

Inherited from:
SeqOps
override def indexWhere(p: Byte => Boolean, from: Int): Int

Attributes

Definition Classes
ByteString -> SeqOps
Inherited from:
ByteString
def indexWhere(p: Byte => Boolean): Int

Attributes

Inherited from:
SeqOps
def indices: Range

Attributes

Inherited from:
SeqOps
override def init: ByteString

Attributes

Definition Classes
ByteString -> IterableOps
Inherited from:
ByteString
def inits: Iterator[C]

Attributes

Inherited from:
IterableOps
override def intersect[B >: Byte](that: Seq[B]): C

Attributes

Definition Classes
StrictOptimizedSeqOps -> SeqOps
Inherited from:
StrictOptimizedSeqOps
def isCompact: Boolean

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.

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.

Attributes

Inherited from:
CompactByteString
def isDefinedAt(idx: Int): Boolean

Attributes

Inherited from:
SeqOps
override def isEmpty: Boolean

Attributes

Definition Classes
ByteString -> SeqOps -> IterableOnceOps
Inherited from:
ByteString
override def isTraversableAgain: Boolean

Attributes

Definition Classes
IterableOps -> IterableOnceOps
Inherited from:
IterableOps
override def iterableFactory: SeqFactory[IndexedSeq]

Attributes

Definition Classes
IndexedSeq -> IndexedSeq -> Seq -> Seq -> Iterable -> Iterable -> IterableOps
Inherited from:
IndexedSeq
override def knownSize: Int

Attributes

Definition Classes
IndexedSeqOps -> IterableOnce
Inherited from:
IndexedSeqOps
override def last: Byte

Attributes

Definition Classes
ByteString -> IndexedSeqOps -> IterableOps
Inherited from:
ByteString
def lastIndexOf[B >: Byte](elem: B, end: Int): Int

Attributes

Inherited from:
SeqOps
def lastIndexOfSlice[B >: Byte](that: Seq[B]): Int

Attributes

Inherited from:
SeqOps
def lastIndexOfSlice[B >: Byte](that: Seq[B], end: Int): Int

Attributes

Inherited from:
SeqOps
def lastIndexWhere(p: Byte => Boolean): Int

Attributes

Inherited from:
SeqOps
def lastIndexWhere(p: Byte => Boolean, end: Int): Int

Attributes

Inherited from:
SeqOps
def lastOption: Option[A]

Attributes

Inherited from:
IterableOps
def lazyZip[B](that: Iterable[B]): LazyZip2[A, B, Iterable]

Attributes

Inherited from:
Iterable
final override def lengthCompare(that: Iterable[_]): Int

Attributes

Definition Classes
IndexedSeqOps -> SeqOps
Inherited from:
IndexedSeqOps
final override def lengthCompare(len: Int): Int

Attributes

Definition Classes
IndexedSeqOps -> SeqOps
Inherited from:
IndexedSeqOps
final def lengthIs: SizeCompareOps

Attributes

Inherited from:
SeqOps
def lift: A => Option[B]

Attributes

Inherited from:
PartialFunction
def map[A](f: Byte => Byte): ByteString

Attributes

Inherited from:
ByteString
override def map[B](f: Byte => B): CC[B]

Attributes

Definition Classes
StrictOptimizedIterableOps -> IterableOps -> IterableOnceOps
Inherited from:
StrictOptimizedIterableOps
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.

Attributes

Inherited from:
ByteString
def max[B >: Byte](implicit ord: Ordering[B]): A

Attributes

Inherited from:
IterableOnceOps
def maxBy[B](f: Byte => B)(implicit cmp: Ordering[B]): A

Attributes

Inherited from:
IterableOnceOps
def maxByOption[B](f: Byte => B)(implicit cmp: Ordering[B]): Option[A]

Attributes

Inherited from:
IterableOnceOps
def maxOption[B >: Byte](implicit ord: Ordering[B]): Option[A]

Attributes

Inherited from:
IterableOnceOps
def min[B >: Byte](implicit ord: Ordering[B]): A

Attributes

Inherited from:
IterableOnceOps
def minBy[B](f: Byte => B)(implicit cmp: Ordering[B]): A

Attributes

Inherited from:
IterableOnceOps
def minByOption[B](f: Byte => B)(implicit cmp: Ordering[B]): Option[A]

Attributes

Inherited from:
IterableOnceOps
def minOption[B >: Byte](implicit ord: Ordering[B]): Option[A]

Attributes

Inherited from:
IterableOnceOps
final def mkString: String

Attributes

Inherited from:
IterableOnceOps
final def mkString(sep: String): String

Attributes

Inherited from:
IterableOnceOps
final def mkString(start: String, sep: String, end: String): String

Attributes

Inherited from:
IterableOnceOps
def nonEmpty: Boolean

Attributes

Inherited from:
IterableOnceOps
def orElse[A1 <: Int, B1 >: Byte](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]

Attributes

Inherited from:
PartialFunction
override def padTo[B >: Byte](len: Int, elem: B): CC[B]

Attributes

Definition Classes
StrictOptimizedSeqOps -> SeqOps
Inherited from:
StrictOptimizedSeqOps
override def partition(p: Byte => Boolean): (C, C)

Attributes

Definition Classes
StrictOptimizedIterableOps -> IterableOps
Inherited from:
StrictOptimizedIterableOps
override def partitionMap[A1, A2](f: Byte => Either[A1, A2]): (CC[A1], CC[A2])

Attributes

Definition Classes
StrictOptimizedIterableOps -> IterableOps
Inherited from:
StrictOptimizedIterableOps
override def patch[B >: Byte](from: Int, other: IterableOnce[B], replaced: Int): CC[B]

Attributes

Definition Classes
StrictOptimizedSeqOps -> SeqOps
Inherited from:
StrictOptimizedSeqOps
def permutations: Iterator[C]

Attributes

Inherited from:
SeqOps
override def prepended[B >: Byte](elem: B): CC[B]

Attributes

Definition Classes
StrictOptimizedSeqOps -> SeqOps
Inherited from:
StrictOptimizedSeqOps
override def prependedAll[B >: Byte](prefix: IterableOnce[B]): CC[B]

Attributes

Definition Classes
StrictOptimizedSeqOps -> SeqOps
Inherited from:
StrictOptimizedSeqOps
def product[B >: Byte](implicit num: Numeric[B]): B

Attributes

Inherited from:
IterableOnceOps
def reduce[B >: Byte](op: (B, B) => B): B

Attributes

Inherited from:
IterableOnceOps
def reduceLeft[B >: Byte](op: (B, Byte) => B): B

Attributes

Inherited from:
IterableOnceOps
def reduceLeftOption[B >: Byte](op: (B, Byte) => B): Option[B]

Attributes

Inherited from:
IterableOnceOps
def reduceOption[B >: Byte](op: (B, B) => B): Option[B]

Attributes

Inherited from:
IterableOnceOps
def reduceRight[B >: Byte](op: (Byte, B) => B): B

Attributes

Inherited from:
IterableOnceOps
def reduceRightOption[B >: Byte](op: (Byte, B) => B): Option[B]

Attributes

Inherited from:
IterableOnceOps
override def reverse: C

Attributes

Definition Classes
IndexedSeqOps -> SeqOps
Inherited from:
IndexedSeqOps
override def reverseIterator: Iterator[A]

Attributes

Definition Classes
IndexedSeqOps -> SeqOps
Inherited from:
IndexedSeqOps
override protected def reversed: Iterable[A]

Attributes

Definition Classes
IndexedSeqOps -> IterableOnceOps
Inherited from:
IndexedSeqOps
def runWith[U](action: Byte => U): A => Boolean

Attributes

Inherited from:
PartialFunction
override def sameElements[B >: Byte](o: IterableOnce[B]): Boolean

Attributes

Definition Classes
IndexedSeq -> SeqOps
Inherited from:
IndexedSeq
def scala$collection$SeqOps$$super$concat[B >: Byte](suffix: IterableOnce[B]): CC[B]

Attributes

Inherited from:
SeqOps
def scala$collection$SeqOps$$super$sizeCompare(that: Iterable[_]): Int

Attributes

Inherited from:
SeqOps

Attributes

Inherited from:
SeqOps

Attributes

Inherited from:
IndexedSeq
def scala$collection$immutable$IndexedSeq$$super$sameElements[B >: Byte](that: IterableOnce[B]): Boolean

Attributes

Inherited from:
IndexedSeq

Attributes

Inherited from:
IndexedSeqOps
def scala$collection$immutable$StrictOptimizedSeqOps$$super$sorted[B >: Byte](implicit ord: Ordering[B]): C

Attributes

Inherited from:
StrictOptimizedSeqOps
def scan[B >: Byte](z: B)(op: (B, B) => B): CC[B]

Attributes

Inherited from:
IterableOps
override def scanLeft[B](z: B)(op: (B, Byte) => B): CC[B]

Attributes

Definition Classes
StrictOptimizedIterableOps -> IterableOps -> IterableOnceOps
Inherited from:
StrictOptimizedIterableOps
def scanRight[B](z: B)(op: (Byte, B) => B): CC[B]

Attributes

Inherited from:
IterableOps
override def search[B >: Byte](elem: B, from: Int, to: Int)(implicit ord: Ordering[B]): SearchResult

Attributes

Definition Classes
IndexedSeqOps -> SeqOps
Inherited from:
IndexedSeqOps
override def search[B >: Byte](elem: B)(implicit ord: Ordering[B]): SearchResult

Attributes

Definition Classes
IndexedSeqOps -> SeqOps
Inherited from:
IndexedSeqOps
def segmentLength(p: Byte => Boolean, from: Int): Int

Attributes

Inherited from:
SeqOps
final def segmentLength(p: Byte => Boolean): Int

Attributes

Inherited from:
SeqOps
final override def size: Int

Attributes

Definition Classes
SeqOps -> IterableOnceOps
Inherited from:
SeqOps
final override def sizeCompare(that: Iterable[_]): Int

Attributes

Definition Classes
SeqOps -> IterableOps
Inherited from:
SeqOps
final override def sizeCompare(otherSize: Int): Int

Attributes

Definition Classes
SeqOps -> IterableOps
Inherited from:
SeqOps
final def sizeIs: SizeCompareOps

Attributes

Inherited from:
IterableOps
def sliding(size: Int, step: Int): Iterator[C]

Attributes

Inherited from:
IterableOps
def sliding(size: Int): Iterator[C]

Attributes

Inherited from:
IterableOps
def sortBy[B](f: Byte => B)(implicit ord: Ordering[B]): C

Attributes

Inherited from:
SeqOps
def sortWith(lt: (Byte, Byte) => Boolean): C

Attributes

Inherited from:
SeqOps
override def sorted[B >: Byte](implicit ord: Ordering[B]): C

Attributes

Definition Classes
StrictOptimizedSeqOps -> SeqOps
Inherited from:
StrictOptimizedSeqOps
override def span(p: Byte => Boolean): (ByteString, ByteString)

Attributes

Definition Classes
ByteString -> StrictOptimizedIterableOps -> IterableOps -> IterableOnceOps
Inherited from:
ByteString
override def splitAt(n: Int): (ByteString, ByteString)

Attributes

Definition Classes
ByteString -> IterableOps -> IterableOnceOps
Inherited from:
ByteString
def startsWith[B >: Byte](that: IterableOnce[B], offset: Int): Boolean

Attributes

Inherited from:
SeqOps
override def stepper[S <: Stepper[_]](implicit shape: StepperShape[Byte, S]): S & EfficientSplit

Attributes

Definition Classes
IndexedSeqOps -> IterableOnce
Inherited from:
IndexedSeqOps
def sum[B >: Byte](implicit num: Numeric[B]): B

Attributes

Inherited from:
IterableOnceOps
override def tail: ByteString

Attributes

Definition Classes
ByteString -> IterableOps
Inherited from:
ByteString
def tails: Iterator[C]

Attributes

Inherited from:
IterableOps
override def takeRight(n: Int): ByteString

Attributes

Definition Classes
ByteString -> StrictOptimizedIterableOps -> IndexedSeqOps -> IterableOps
Inherited from:
ByteString
override def takeWhile(p: Byte => Boolean): ByteString

Attributes

Definition Classes
ByteString -> IterableOps -> IterableOnceOps
Inherited from:
ByteString
override def tapEach[U](f: Byte => U): C

Attributes

Definition Classes
StrictOptimizedIterableOps -> IterableOps -> IterableOnceOps
Inherited from:
StrictOptimizedIterableOps
def to[C1](factory: Factory[Byte, C1]): C1

Attributes

Inherited from:
IterableOnceOps
final override def toArray[B >: Byte](implicit arg0: ClassTag[B]): Array[B]

Attributes

Definition Classes
ByteString -> IterableOnceOps
Inherited from:
ByteString
final def toBuffer[B >: Byte]: Buffer[B]

Attributes

Inherited from:
IterableOnceOps
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.

Attributes

Inherited from:
ByteString
final override def toIndexedSeq: IndexedSeq[A]

Attributes

Definition Classes
IndexedSeq -> IterableOnceOps
Inherited from:
IndexedSeq
def toList: List[A]

Attributes

Inherited from:
IterableOnceOps
def toMap[K, V](implicit ev: Byte <:< (K, V)): Map[K, V]

Attributes

Inherited from:
IterableOnceOps
final override def toSeq: Seq.this.type

Attributes

Definition Classes
Seq -> IterableOnceOps
Inherited from:
Seq
def toSet[B >: Byte]: Set[B]

Attributes

Inherited from:
IterableOnceOps
override def toString(): String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns:

a string representation of the object.

Definition Classes
ByteString -> Seq -> Function1 -> Iterable -> Any
Inherited from:
ByteString
def toVector: Vector[A]

Attributes

Inherited from:
IterableOnceOps
def transpose[B](implicit asIterable: Byte => Iterable[B]): CC[CC[B]]

Attributes

Inherited from:
IterableOps
def unapply(a: Int): Option[B]

Attributes

Inherited from:
PartialFunction
override def unzip[A1, A2](implicit asPair: Byte => (A1, A2)): (CC[A1], CC[A2])

Attributes

Definition Classes
StrictOptimizedIterableOps -> IterableOps
Inherited from:
StrictOptimizedIterableOps
override def unzip3[A1, A2, A3](implicit asTriple: Byte => (A1, A2, A3)): (CC[A1], CC[A2], CC[A3])

Attributes

Definition Classes
StrictOptimizedIterableOps -> IterableOps
Inherited from:
StrictOptimizedIterableOps
override def updated[B >: Byte](index: Int, elem: B): CC[B]

Attributes

Definition Classes
StrictOptimizedSeqOps -> SeqOps
Inherited from:
StrictOptimizedSeqOps
final def utf8String: String

Decodes this ByteString as a UTF-8 encoded String.

Decodes this ByteString as a UTF-8 encoded String.

Attributes

Inherited from:
ByteString
override def view: IndexedSeqView[A]

Attributes

Definition Classes
IndexedSeqOps -> SeqOps -> IterableOps
Inherited from:
IndexedSeqOps
def withFilter(p: Byte => Boolean): WithFilter[A, CC]

Attributes

Inherited from:
IterableOps
override def zip[B](that: IterableOnce[B]): CC[(A, B)]

Attributes

Definition Classes
StrictOptimizedIterableOps -> IterableOps
Inherited from:
StrictOptimizedIterableOps
def zipAll[A1 >: Byte, B](that: Iterable[B], thisElem: A1, thatElem: B): CC[(A1, B)]

Attributes

Inherited from:
IterableOps
override def zipWithIndex: CC[(A, Int)]

Attributes

Definition Classes
StrictOptimizedIterableOps -> IterableOps -> IterableOnceOps
Inherited from:
StrictOptimizedIterableOps

Deprecated and Inherited methods

final def /:[B](z: B)(op: (B, Byte) => B): B

Attributes

Deprecated
[Since version 2.13.0] Use foldLeft instead of /:
Inherited from:
IterableOnceOps
final def :\[B](z: B)(op: (Byte, B) => B): B

Attributes

Deprecated
[Since version 2.13.0] Use foldRight instead of :\\
Inherited from:
IterableOnceOps
def aggregate[B](z: => B)(seqop: (B, Byte) => B, combop: (B, B) => B): B

Attributes

Deprecated
[Since version 2.13.0] `aggregate` is not relevant for sequential collections. Use `foldLeft(z)(seqop)` instead.
Inherited from:
IterableOnceOps
def companion: IterableFactory[CC]

Attributes

Deprecated
[Since version 2.13.0] Use iterableFactory instead
Inherited from:
IterableOps
final def copyToBuffer[B >: Byte](dest: Buffer[B]): Unit

Attributes

Deprecated
[Since version 2.13.0] Use `dest ++= coll` instead
Inherited from:
IterableOnceOps
def hasDefiniteSize: Boolean

Attributes

Deprecated
[Since version 2.13.0] Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)
Inherited from:
IterableOnceOps
final def prefixLength(p: Byte => Boolean): Int

Attributes

Deprecated
[Since version 2.13.0] Use segmentLength instead of prefixLength
Inherited from:
SeqOps
final def repr: C

Attributes

Deprecated
[Since version 2.13.0] Use coll instead of repr in a collection implementation, use the collection value itself from the outside
Inherited from:
IterableOps
def reverseMap[B](f: Byte => B): CC[B]

Attributes

Deprecated
[Since version 2.13.0] Use .reverseIterator.map(f).to(...) instead of .reverseMap(f)
Inherited from:
SeqOps
def seq: Iterable.this.type

Attributes

Deprecated
[Since version 2.13.0] Iterable.seq always returns the iterable itself
Inherited from:
Iterable
final def toIterable: Iterable.this.type

Attributes

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
Inherited from:
Iterable
final def toIterator: Iterator[A]

Attributes

Deprecated
[Since version 2.13.0] Use .iterator instead of .toIterator
Inherited from:
IterableOnceOps
final def toStream: Stream[A]

Attributes

Deprecated
[Since version 2.13.0] Use .to(LazyList) instead of .toStream
Inherited from:
IterableOnceOps
final def toTraversable: Iterable[A]

Attributes

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
Inherited from:
IterableOps
final def union[B >: Byte](that: Seq[B]): CC[B]

Attributes

Deprecated
[Since version 2.13.0] Use `concat` instead
Inherited from:
SeqOps
override def view(from: Int, until: Int): IndexedSeqView[A]

Attributes

Deprecated
[Since version 2.13.0] Use .view.slice(from, until) instead of .view(from, until)
Definition Classes
IndexedSeqOps -> IterableOps
Inherited from:
IndexedSeqOps