ByteString

sealed abstract class ByteString extends IndexedSeq[Byte] with IndexedSeqOps[Byte, [A] =>> IndexedSeq[A], ByteString] with StrictOptimizedSeqOps[Byte, [A] =>> IndexedSeq[A], ByteString]

A rope-like immutable data structure containing bytes. The goal of this structure is to reduce copying of arrays when concatenating and slicing sequences of bytes, and also providing a thread safe way of working with bytes.

TODO: Add performance characteristics

Companion:
object
Source:
ByteString.scala
trait Seq[Byte]
trait SeqOps[Byte, [A] =>> IndexedSeq[A], ByteString]
trait Seq[Byte]
trait Equals
trait SeqOps[Byte, [A] =>> IndexedSeq[A], ByteString]
trait Int => Byte
trait Iterable[Byte]
trait Iterable[Byte]
class Object
trait Matchable
class Any

Value members

Abstract methods

Efficiently concatenate another ByteString.

Efficiently concatenate another ByteString.

Source:
ByteString.scala
def apply(idx: Int): Byte
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.

Source:
ByteString.scala
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.

Source:
ByteString.scala

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.

Source:
ByteString.scala
def copyToBuffer(@unused 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.

Value parameters:
buffer

a ByteBuffer to copy bytes to

Returns:

the number of bytes actually copied

Source:
ByteString.scala
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.

Source:
ByteString.scala
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).

Source:
ByteString.scala

Returns a ByteString which is the Base64 representation of this ByteString

Returns a ByteString which is the Base64 representation of this ByteString

Source:
ByteString.scala

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.

Source:
ByteString.scala

Concrete methods

final override def className: String
Definition Classes
Source:
ByteString.scala

Java API: efficiently concatenate another ByteString.

Java API: efficiently concatenate another ByteString.

Source:
ByteString.scala
final override def copyToArray[B >: Byte](xs: Array[B], start: Int): Int
Definition Classes
Source:
ByteString.scala
override def copyToArray[B >: Byte](xs: Array[B], start: Int, len: Int): Int
Definition Classes
Source:
ByteString.scala
override def drop(n: Int): ByteString
override def dropWhile(p: Byte => Boolean): ByteString
Definition Classes
Source:
ByteString.scala
override def empty: ByteString
override def foreach[@specialized U](f: Byte => U): Unit
Definition Classes
Source:
ByteString.scala
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.

Source:
ByteString.scala
override def grouped(size: Int): Iterator[ByteString]
Definition Classes
Source:
ByteString.scala
override def head: Byte
Definition Classes
Source:
ByteString.scala
override def indexOf[B >: Byte](elem: B, from: Int): Int
Definition Classes
Source:
ByteString.scala
override def indexWhere(p: Byte => Boolean, from: Int): Int
Definition Classes
Source:
ByteString.scala
override def init: ByteString
Definition Classes
Source:
ByteString.scala
override def isEmpty: Boolean
Definition Classes
Source:
ByteString.scala
override def iterator: ByteIterator
Definition Classes
Source:
ByteString.scala
override def last: Byte
Definition Classes
Source:
ByteString.scala
def map[A](f: Byte => Byte): ByteString
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.

Source:
ByteString.scala
override def slice(from: Int, until: Int): ByteString
override def splitAt(n: Int): (ByteString, ByteString)
Definition Classes
Source:
ByteString.scala
override def tail: ByteString
Definition Classes
Source:
ByteString.scala
override def take(n: Int): ByteString
override def takeWhile(p: Byte => Boolean): ByteString
Definition Classes
Source:
ByteString.scala
final override def toArray[B >: Byte](implicit arg0: ClassTag[B]): Array[B]
Definition Classes
Source:
ByteString.scala

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.

Source:
ByteString.scala
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.

Source:
ByteString.scala
override def toString(): String
Definition Classes
Seq -> Function1 -> Iterable -> Any
Source:
ByteString.scala
final def utf8String: String

Decodes this ByteString as a UTF-8 encoded String.

Decodes this ByteString as a UTF-8 encoded String.

Source:
ByteString.scala

Inherited methods

final def ++[B >: Byte](suffix: IterableOnce[B]): IndexedSeq[B]
Inherited from:
IterableOps
final override def ++:[B >: Byte](prefix: IterableOnce[B]): IndexedSeq[B]
Definition Classes
Inherited from:
SeqOps
final def +:[B >: Byte](elem: B): IndexedSeq[B]
Inherited from:
SeqOps
final def :+[B >: Byte](elem: B): IndexedSeq[B]
Inherited from:
SeqOps
final def :++[B >: Byte](suffix: IterableOnce[B]): IndexedSeq[B]
Inherited from:
SeqOps
Inherited from:
IterableOnceOps
override def andThen[C](k: Byte => C): PartialFunction[Int, C]
Definition Classes
Inherited from:
PartialFunction
override def appended[B >: Byte](elem: B): IndexedSeq[B]
Definition Classes
Inherited from:
StrictOptimizedSeqOps
override def appendedAll[B >: Byte](suffix: IterableOnce[B]): IndexedSeq[B]
Definition Classes
Inherited from:
StrictOptimizedSeqOps
def applyOrElse[A1 <: Int, B1 >: Byte](x: A1, default: A1 => B1): B1
Inherited from:
PartialFunction
override def canEqual(that: Any): Boolean
Definition Classes
Inherited from:
IndexedSeq
Inherited from:
IterableOnceOps
Inherited from:
SeqOps
def compose[A](g: A => Int): A => Byte
Inherited from:
Function1
final override def concat[B >: Byte](suffix: IterableOnce[B]): IndexedSeq[B]
Definition Classes
Inherited from:
SeqOps
def contains[A1 >: Byte](elem: A1): Boolean
Inherited from:
SeqOps
def containsSlice[B >: Byte](that: Seq[B]): Boolean
Inherited from:
SeqOps
@deprecatedOverriding(message = "This should always forward to the 3-arg version of this method", since = "2.13.4")
def copyToArray[B >: Byte](xs: Array[B]): Int
Inherited from:
IterableOnceOps
def corresponds[B](that: IterableOnce[B])(p: (Byte, B) => Boolean): Boolean
Inherited from:
IterableOnceOps
def corresponds[B](that: Seq[B])(p: (Byte, B) => Boolean): Boolean
Inherited from:
SeqOps
def count(p: Byte => Boolean): Int
Inherited from:
IterableOnceOps
override def diff[B >: Byte](that: Seq[B]): ByteString
Definition Classes
Inherited from:
StrictOptimizedSeqOps
Inherited from:
SeqOps
override def distinctBy[B](f: Byte => B): ByteString
def endsWith[B >: Byte](that: Iterable[B]): Boolean
Inherited from:
SeqOps
override def equals(o: Any): Boolean
Definition Classes
Seq -> Equals -> Any
Inherited from:
Seq
Inherited from:
IterableOnceOps
def find(p: Byte => Boolean): Option[Byte]
Inherited from:
IterableOnceOps
Inherited from:
SeqOps
override def flatten[B](implicit toIterableOnce: Byte => IterableOnce[B]): IndexedSeq[B]
def fold[A1 >: Byte](z: A1)(op: (A1, A1) => A1): A1
Inherited from:
IterableOnceOps
def foldLeft[B](z: B)(op: (B, Byte) => B): B
Inherited from:
IterableOnceOps
override def foldRight[B](z: B)(op: (Byte, B) => B): B
Definition Classes
Inherited from:
IndexedSeqOps
Inherited from:
IterableOnceOps
def groupBy[K](f: Byte => K): Map[K, ByteString]
Inherited from:
IterableOps
def groupMap[K, B](key: Byte => K)(f: Byte => B): Map[K, IndexedSeq[B]]
Inherited from:
IterableOps
def groupMapReduce[K, B](key: Byte => K)(f: Byte => B)(reduce: (B, B) => B): Map[K, B]
Inherited from:
IterableOps
override def hashCode(): Int
Definition Classes
Seq -> Any
Inherited from:
Seq
override def headOption: Option[Byte]
Definition Classes
Inherited from:
IndexedSeqOps
@deprecatedOverriding(message = "Override indexOf(elem, from) instead - indexOf(elem) calls indexOf(elem, 0)", since = "2.13.0")
def indexOf[B >: Byte](elem: B): Int
Inherited from:
SeqOps
@deprecatedOverriding(message = "Override indexOfSlice(that, from) instead - indexOfSlice(that) calls indexOfSlice(that, 0)", since = "2.13.0")
def indexOfSlice[B >: Byte](that: Seq[B]): Int
Inherited from:
SeqOps
def indexOfSlice[B >: Byte](that: Seq[B], from: Int): Int
Inherited from:
SeqOps
@deprecatedOverriding(message = "Override indexWhere(p, from) instead - indexWhere(p) calls indexWhere(p, 0)", since = "2.13.0")
Inherited from:
SeqOps
Inherited from:
SeqOps
Inherited from:
IterableOps
override def intersect[B >: Byte](that: Seq[B]): ByteString
Definition Classes
Inherited from:
StrictOptimizedSeqOps
Inherited from:
SeqOps
Definition Classes
Inherited from:
IterableOps
override def iterableFactory: SeqFactory[[A] =>> IndexedSeq[A]]
Definition Classes
Inherited from:
IndexedSeq
override def knownSize: Int
Definition Classes
Inherited from:
IndexedSeqOps
def lastIndexOf[B >: Byte](elem: B, end: Int): Int
Inherited from:
SeqOps
@deprecatedOverriding(message = "Override lastIndexOfSlice(that, end) instead - lastIndexOfSlice(that) calls lastIndexOfSlice(that, Int.MaxValue)", since = "2.13.0")
def lastIndexOfSlice[B >: Byte](that: Seq[B]): Int
Inherited from:
SeqOps
def lastIndexOfSlice[B >: Byte](that: Seq[B], end: Int): Int
Inherited from:
SeqOps
@deprecatedOverriding(message = "Override lastIndexWhere(p, end) instead - lastIndexWhere(p) calls lastIndexWhere(p, Int.MaxValue)", since = "2.13.0")
Inherited from:
SeqOps
def lastIndexWhere(p: Byte => Boolean, end: Int): Int
Inherited from:
SeqOps
Inherited from:
IterableOps
def lazyZip[B](that: Iterable[B]): LazyZip2[Byte, B, ByteString]
Inherited from:
Iterable
def length: Int
Inherited from:
SeqOps
final override def lengthCompare(that: Iterable[_]): Int
Definition Classes
Inherited from:
IndexedSeqOps
final override def lengthCompare(len: Int): Int
Definition Classes
Inherited from:
IndexedSeqOps
Inherited from:
SeqOps
def lift: Int => Option[Byte]
Inherited from:
PartialFunction
override def map[B](f: Byte => B): IndexedSeq[B]
def max[B >: Byte](implicit ord: Ordering[B]): Byte
Inherited from:
IterableOnceOps
def maxBy[B](f: Byte => B)(implicit cmp: Ordering[B]): Byte
Inherited from:
IterableOnceOps
def maxByOption[B](f: Byte => B)(implicit cmp: Ordering[B]): Option[Byte]
Inherited from:
IterableOnceOps
def maxOption[B >: Byte](implicit ord: Ordering[B]): Option[Byte]
Inherited from:
IterableOnceOps
def min[B >: Byte](implicit ord: Ordering[B]): Byte
Inherited from:
IterableOnceOps
def minBy[B](f: Byte => B)(implicit cmp: Ordering[B]): Byte
Inherited from:
IterableOnceOps
def minByOption[B](f: Byte => B)(implicit cmp: Ordering[B]): Option[Byte]
Inherited from:
IterableOnceOps
def minOption[B >: Byte](implicit ord: Ordering[B]): Option[Byte]
Inherited from:
IterableOnceOps
final def mkString: String
Inherited from:
IterableOnceOps
final def mkString(sep: String): String
Inherited from:
IterableOnceOps
final def mkString(start: String, sep: String, end: String): String
Inherited from:
IterableOnceOps
@deprecatedOverriding(message = "nonEmpty is defined as !isEmpty; override isEmpty instead", since = "2.13.0")
Inherited from:
IterableOnceOps
def orElse[A1 <: Int, B1 >: Byte](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
Inherited from:
PartialFunction
override def padTo[B >: Byte](len: Int, elem: B): IndexedSeq[B]
Definition Classes
Inherited from:
StrictOptimizedSeqOps
override def partitionMap[A1, A2](f: Byte => Either[A1, A2]): (IndexedSeq[A1], IndexedSeq[A2])
override def patch[B >: Byte](from: Int, other: IterableOnce[B], replaced: Int): IndexedSeq[B]
Definition Classes
Inherited from:
StrictOptimizedSeqOps
override def prepended[B >: Byte](elem: B): IndexedSeq[B]
Definition Classes
Inherited from:
StrictOptimizedSeqOps
override def prependedAll[B >: Byte](prefix: IterableOnce[B]): IndexedSeq[B]
Definition Classes
Inherited from:
StrictOptimizedSeqOps
def product[B >: Byte](implicit num: Numeric[B]): B
Inherited from:
IterableOnceOps
def reduce[B >: Byte](op: (B, B) => B): B
Inherited from:
IterableOnceOps
def reduceLeft[B >: Byte](op: (B, Byte) => B): B
Inherited from:
IterableOnceOps
def reduceLeftOption[B >: Byte](op: (B, Byte) => B): Option[B]
Inherited from:
IterableOnceOps
def reduceOption[B >: Byte](op: (B, B) => B): Option[B]
Inherited from:
IterableOnceOps
def reduceRight[B >: Byte](op: (Byte, B) => B): B
Inherited from:
IterableOnceOps
def reduceRightOption[B >: Byte](op: (Byte, B) => B): Option[B]
Inherited from:
IterableOnceOps
override def reverse: ByteString
Definition Classes
Inherited from:
IndexedSeqOps
Definition Classes
Inherited from:
IndexedSeqOps
override protected def reversed: Iterable[Byte]
Definition Classes
Inherited from:
IndexedSeqOps
def runWith[U](action: Byte => U): Int => Boolean
Inherited from:
PartialFunction
override def sameElements[B >: Byte](o: IterableOnce[B]): Boolean
Definition Classes
Inherited from:
IndexedSeq
def scan[B >: Byte](z: B)(op: (B, B) => B): IndexedSeq[B]
Inherited from:
IterableOps
override def scanLeft[B](z: B)(op: (B, Byte) => B): IndexedSeq[B]
def scanRight[B](z: B)(op: (Byte, B) => B): IndexedSeq[B]
Inherited from:
IterableOps
override def search[B >: Byte](elem: B, from: Int, to: Int)(implicit ord: Ordering[B]): SearchResult
Definition Classes
Inherited from:
IndexedSeqOps
override def search[B >: Byte](elem: B)(implicit ord: Ordering[B]): SearchResult
Definition Classes
Inherited from:
IndexedSeqOps
def segmentLength(p: Byte => Boolean, from: Int): Int
Inherited from:
SeqOps
final def segmentLength(p: Byte => Boolean): Int
Inherited from:
SeqOps
final override def size: Int
Definition Classes
Inherited from:
SeqOps
final override def sizeCompare(that: Iterable[_]): Int
Definition Classes
Inherited from:
SeqOps
final override def sizeCompare(otherSize: Int): Int
Definition Classes
Inherited from:
SeqOps
Inherited from:
IterableOps
def sliding(size: Int, step: Int): Iterator[ByteString]
Inherited from:
IterableOps
Inherited from:
IterableOps
def sortBy[B](f: Byte => B)(implicit ord: Ordering[B]): ByteString
Inherited from:
SeqOps
Inherited from:
SeqOps
override def sorted[B >: Byte](implicit ord: Ordering[B]): ByteString
Definition Classes
Inherited from:
StrictOptimizedSeqOps
def startsWith[B >: Byte](that: IterableOnce[B], offset: Int): Boolean
Inherited from:
SeqOps
override def stepper[S <: Stepper[_]](implicit shape: StepperShape[Byte, S]): S & EfficientSplit
Definition Classes
Inherited from:
IndexedSeqOps
def sum[B >: Byte](implicit num: Numeric[B]): B
Inherited from:
IterableOnceOps
Inherited from:
IterableOps
override def tapEach[U](f: Byte => U): ByteString
def to[C1](factory: Factory[Byte, C1]): C1
Inherited from:
IterableOnceOps
final def toBuffer[B >: Byte]: Buffer[B]
Inherited from:
IterableOnceOps
final override def toIndexedSeq: IndexedSeq[Byte]
Definition Classes
Inherited from:
IndexedSeq
Inherited from:
Iterable
Inherited from:
IterableOnceOps
def toMap[K, V](implicit ev: Byte <:< (K, V)): Map[K, V]
Inherited from:
IterableOnceOps
final override def toSeq: ByteString
Definition Classes
Inherited from:
Seq
def toSet[B >: Byte]: Set[B]
Inherited from:
IterableOnceOps
Inherited from:
IterableOnceOps
def transpose[B](implicit asIterable: Byte => Iterable[B]): IndexedSeq[IndexedSeq[B]]
Inherited from:
IterableOps
Inherited from:
PartialFunction
override def unzip[A1, A2](implicit asPair: Byte => (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])
override def unzip3[A1, A2, A3](implicit asTriple: Byte => (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])
override def updated[B >: Byte](index: Int, elem: B): IndexedSeq[B]
Definition Classes
Inherited from:
StrictOptimizedSeqOps
override def view: IndexedSeqView[Byte]
Definition Classes
Inherited from:
IndexedSeqOps
def withFilter(p: Byte => Boolean): WithFilter[Byte, [A] =>> IndexedSeq[A]]
Inherited from:
IterableOps
override def zip[B](that: IterableOnce[B]): IndexedSeq[(Byte, B)]
def zipAll[A1 >: Byte, B](that: Iterable[B], thisElem: A1, thatElem: B): IndexedSeq[(A1, B)]
Inherited from:
IterableOps

Deprecated and Inherited methods

@inline @deprecated(message = "Use foldLeft instead of /:", since = "2.13.0")
final def /:[B](z: B)(op: (B, Byte) => B): B
Deprecated
[Since version 2.13.0] Use foldLeft instead of /:
Inherited from:
IterableOnceOps
@inline @deprecated(message = "Use foldRight instead of :\\", since = "2.13.0")
final def :\[B](z: B)(op: (Byte, B) => B): B
Deprecated
[Since version 2.13.0] Use foldRight instead of :\\
Inherited from:
IterableOnceOps
@deprecated(message = "`aggregate` is not relevant for sequential collections. Use `foldLeft(z)(seqop)` instead.", since = "2.13.0")
def aggregate[B](z: => B)(seqop: (B, Byte) => B, combop: (B, B) => B): B
Deprecated
[Since version 2.13.0] `aggregate` is not relevant for sequential collections. Use `foldLeft(z)(seqop)` instead.
Inherited from:
IterableOnceOps
@inline @deprecatedOverriding(message = "Use iterableFactory instead", since = "2.13.0") @deprecated(message = "Use iterableFactory instead", since = "2.13.0")
Deprecated
[Since version 2.13.0] Use iterableFactory instead
Inherited from:
IterableOps
@inline @deprecated(message = "Use `dest ++= coll` instead", since = "2.13.0")
final def copyToBuffer[B >: Byte](dest: Buffer[B]): Unit
Deprecated
[Since version 2.13.0] Use `dest ++= coll` instead
Inherited from:
IterableOnceOps
@deprecated(message = "Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)", since = "2.13.0")
Deprecated
[Since version 2.13.0] Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)
Inherited from:
IterableOnceOps
@inline @deprecated(message = "Use segmentLength instead of prefixLength", since = "2.13.0")
final def prefixLength(p: Byte => Boolean): Int
Deprecated
[Since version 2.13.0] Use segmentLength instead of prefixLength
Inherited from:
SeqOps
@deprecated(message = "Use coll instead of repr in a collection implementation, use the collection value itself from the outside", since = "2.13.0")
final def repr: ByteString
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
@deprecated(message = "Use .reverseIterator.map(f).to(...) instead of .reverseMap(f)", since = "2.13.0")
def reverseMap[B](f: Byte => B): IndexedSeq[B]
Deprecated
[Since version 2.13.0] Use .reverseIterator.map(f).to(...) instead of .reverseMap(f)
Inherited from:
SeqOps
@deprecated(message = "Iterable.seq always returns the iterable itself", since = "2.13.0")
Deprecated
[Since version 2.13.0] Iterable.seq always returns the iterable itself
Inherited from:
Iterable
@inline @deprecated(message = "Use .iterator instead of .toIterator", since = "2.13.0")
Deprecated
[Since version 2.13.0] Use .iterator instead of .toIterator
Inherited from:
IterableOnceOps
@inline @deprecated(message = "Use .to(LazyList) instead of .toStream", since = "2.13.0")
final def toStream: Stream[Byte]
Deprecated
[Since version 2.13.0] Use .to(LazyList) instead of .toStream
Inherited from:
IterableOnceOps
@deprecated(message = "Use toIterable instead", since = "2.13.0")
Deprecated
[Since version 2.13.0] Use toIterable instead
Inherited from:
IterableOps
@inline @deprecated(message = "Use `concat` instead", since = "2.13.0")
final def union[B >: Byte](that: Seq[B]): IndexedSeq[B]
Deprecated
[Since version 2.13.0] Use `concat` instead
Inherited from:
SeqOps
@deprecated(message = "Use .view.slice(from, until) instead of .view(from, until)", since = "2.13.0")
override def view(from: Int, until: Int): IndexedSeqView[Byte]
Deprecated
[Since version 2.13.0] Use .view.slice(from, until) instead of .view(from, until)
Definition Classes
Inherited from:
IndexedSeqOps