ByteString

com.google.protobuf.ByteString
See theByteString companion object

Attributes

Companion
object
Graph
Supertypes
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]
class AbstractSeq[Byte]
trait Seq[Byte]
trait SeqOps[Byte, IndexedSeq, ByteString]
trait Iterable[Byte]
class AbstractSeq[Byte]
trait Seq[Byte]
trait Equals
trait SeqOps[Byte, IndexedSeq, ByteString]
trait PartialFunction[Int, Byte]
trait Int => Byte
class AbstractIterable[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
Show all

Members list

Value members

Concrete methods

def apply(i: Int): Byte
def copyTo(target: Array[Byte], sourceOffset: Int, targetOffset: Int, numberToCopy: Int): Unit

Copies bytes into a buffer.

Copies bytes into a buffer.

Value parameters

numberToCopy

number of bytes to copy

sourceOffset

offset within these bytes

target

buffer to copy into

targetOffset

offset within the target buffer

Attributes

Throws
IndexOutOfBoundsException

if an offset or size is negative or too large

override def equals(that: 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)).

Value parameters

that

the object to compare against this object for equality.

Attributes

Returns

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

Definition Classes
Seq -> Equals -> Any
override def hashCode(): Int

Calculates a hash code value for the object.

Calculates 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
def isValidUtf8(): Boolean
def length: Int
def newInput(): InputStream
override def slice(from: Int, until: Int): ByteString

Attributes

Definition Classes
IndexedSeqOps -> IndexedSeqOps -> IterableOps -> IterableOnceOps
def toByteArray(): Array[Byte]
def toString(charsetName: String): String
def toString(charset: Charset): String

Constructs a new String by decoding the bytes using the specified charset. Returns the same empty String if empty.

Constructs a new String by decoding the bytes using the specified charset. Returns the same empty String if empty.

Value parameters

charset

encode using this charset

Attributes

Returns

new string

def toStringUtf8(): String
def writeTo(out: OutputStream): Unit

Inherited methods

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

Definition Classes
StrictOptimizedSeqOps -> SeqOps
Inherited from:
StrictOptimizedSeqOps
override def appendedAll[B >: Byte](suffix: IterableOnce[B]): IndexedSeq[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
override def collect[B](pf: PartialFunction[Byte, B]): IndexedSeq[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[ByteString]

Attributes

Inherited from:
SeqOps
def compose[R](k: PartialFunction[R, Int]): PartialFunction[R, Byte]

Attributes

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

Attributes

Inherited from:
Function1
final override def concat[B >: Byte](suffix: IterableOnce[B]): IndexedSeq[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
def copyToArray[B >: Byte](xs: Array[B], start: Int, len: Int): Int

Attributes

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

Attributes

Inherited from:
IterableOnceOps
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]): ByteString

Attributes

Definition Classes
StrictOptimizedSeqOps -> SeqOps
Inherited from:
StrictOptimizedSeqOps

Attributes

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

Attributes

Definition Classes
StrictOptimizedSeqOps -> StrictOptimizedSeqOps -> SeqOps
Inherited from:
StrictOptimizedSeqOps
override def drop(n: Int): ByteString

Attributes

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

Attributes

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

Attributes

Inherited from:
IterableOps
def elementWise: ElementWiseExtractor[Int, Byte]

Attributes

Inherited from:
PartialFunction
override def empty: ByteString

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

Definition Classes
StrictOptimizedIterableOps -> IterableOps -> IterableOnceOps
Inherited from:
StrictOptimizedIterableOps
override def flatten[B](implicit toIterableOnce: Byte => IterableOnce[B]): IndexedSeq[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
def foreach[U](f: Byte => U): Unit

Attributes

Inherited from:
IterableOnceOps
override def fromSpecific(coll: IterableOnce[Byte]): ByteString

Attributes

Definition Classes
ByteStringParent -> IterableFactoryDefaults -> IterableOps
Inherited from:
ByteStringParent
def groupBy[K](f: Byte => K): Map[K, ByteString]

Attributes

Inherited from:
IterableOps
def groupMap[K, B](key: Byte => K)(f: Byte => B): Map[K, IndexedSeq[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
def grouped(size: Int): Iterator[ByteString]

Attributes

Inherited from:
IterableOps
override def head: Byte

Attributes

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

Attributes

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

Attributes

Inherited from:
SeqOps
def indexOf[B >: Byte](elem: B, from: Int): 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
def indexWhere(p: Byte => Boolean): Int

Attributes

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

Attributes

Inherited from:
SeqOps
def indices: Range

Attributes

Inherited from:
SeqOps

Attributes

Inherited from:
IterableOps
def inits: Iterator[ByteString]

Attributes

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

Attributes

Definition Classes
StrictOptimizedSeqOps -> SeqOps
Inherited from:
StrictOptimizedSeqOps
def isDefinedAt(idx: Int): Boolean

Attributes

Inherited from:
SeqOps
override def isEmpty: Boolean

Attributes

Definition Classes
SeqOps -> IterableOnceOps
Inherited from:
SeqOps
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
def iterator: Iterator[Byte]

Attributes

Inherited from:
IndexedSeqOps
override def knownSize: Int

Attributes

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

Attributes

Definition Classes
IndexedSeqOps -> IterableOps
Inherited from:
IndexedSeqOps
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[Byte]

Attributes

Inherited from:
IterableOps
def lazyZip[B](that: Iterable[B]): LazyZip2[Byte, B, Iterable.this.type]

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: Int => Option[Byte]

Attributes

Inherited from:
PartialFunction
override def map[B](f: Byte => B): IndexedSeq[B]

Attributes

Definition Classes
StrictOptimizedIterableOps -> IterableOps -> IterableOnceOps
Inherited from:
StrictOptimizedIterableOps
def max[B >: Byte](implicit ord: Ordering[B]): Byte

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

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
override def newSpecificBuilder: Builder[Byte, ByteString]

Attributes

Definition Classes
ByteStringParent -> IterableFactoryDefaults -> IterableOps
Inherited from:
ByteStringParent
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): IndexedSeq[B]

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

Definition Classes
StrictOptimizedSeqOps -> SeqOps
Inherited from:
StrictOptimizedSeqOps
override def prependedAll[B >: Byte](prefix: IterableOnce[B]): IndexedSeq[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: ByteString

Attributes

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

Attributes

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

Attributes

Definition Classes
IndexedSeqOps -> IterableOnceOps
Inherited from:
IndexedSeqOps
def runWith[U](action: Byte => U): Int => 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]): IndexedSeq[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

Attributes

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

Attributes

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

Attributes

Definition Classes
StrictOptimizedIterableOps -> IterableOps -> IterableOnceOps
Inherited from:
StrictOptimizedIterableOps
def scanRight[B](z: B)(op: (Byte, B) => B): IndexedSeq[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[ByteString]

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

Inherited from:
IterableOps
def tails: Iterator[ByteString]

Attributes

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

Attributes

Definition Classes
IndexedSeqOps -> IterableOps -> IterableOnceOps
Inherited from:
IndexedSeqOps
override def takeRight(n: Int): ByteString

Attributes

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

Attributes

Inherited from:
IterableOps
override def tapEach[U](f: Byte => U): ByteString

Attributes

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

Attributes

Inherited from:
IterableOnceOps
def toArray[B >: Byte : ClassTag]: Array[B]

Attributes

Inherited from:
IterableOnceOps
final def toBuffer[B >: Byte]: Buffer[B]

Attributes

Inherited from:
IterableOnceOps
final override def toIndexedSeq: IndexedSeq[Byte]

Attributes

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

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
Seq -> Function1 -> Iterable -> Any
Inherited from:
Seq
def toVector: Vector[Byte]

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

Definition Classes
StrictOptimizedSeqOps -> SeqOps
Inherited from:
StrictOptimizedSeqOps
override def view: IndexedSeqView[Byte]

Attributes

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

Attributes

Inherited from:
IterableOps
override def zip[B](that: IterableOnce[B]): IndexedSeq[(Byte, B)]

Attributes

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

Attributes

Inherited from:
IterableOps
override def zipWithIndex: IndexedSeq[(Byte, 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[IndexedSeq]

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: ByteString

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): IndexedSeq[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[Byte]

Attributes

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

Attributes

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

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]): IndexedSeq[B]

Attributes

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

Attributes

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

Concrete fields

val bytes: Array[Byte]