Packages

class MultiByteArrayIterator extends ByteIterator

Source
ByteIterator.scala
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MultiByteArrayIterator
  2. ByteIterator
  3. BufferedIterator
  4. Iterator
  5. IterableOnceOps
  6. IterableOnce
  7. AnyRef
  8. Any
Implicitly
  1. by iterableOnceExtensionMethods
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. class GroupedIterator[B >: A] extends AbstractIterator[Seq[B]]
    Definition Classes
    Iterator

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 MultiByteArrayIterator toany2stringadd[MultiByteArrayIterator] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. final def ++(that: IterableOnce[Byte]): ByteIterator
    Definition Classes
    MultiByteArrayIteratorByteIterator
  5. final def ++[B >: Byte](xs: => IterableOnce[B]): Iterator[B]
    Definition Classes
    Iterator
    Annotations
    @inline()
  6. def ->[B](y: B): (MultiByteArrayIterator, B)
    Implicit
    This member is added by an implicit conversion from MultiByteArrayIterator toArrowAssoc[MultiByteArrayIterator] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  7. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. final def addString(b: StringBuilder): b.type
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  9. final def addString(b: StringBuilder, sep: String): b.type
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  10. def addString(b: StringBuilder, start: String, sep: String, end: String): b.type
    Definition Classes
    IterableOnceOps
  11. def asInputStream: InputStream

    Directly wraps this ByteIterator in an InputStream without copying.

    Directly wraps this ByteIterator in an InputStream without copying. Read and skip operations on the stream will advance the iterator accordingly.

    Definition Classes
    MultiByteArrayIteratorByteIterator
  12. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  13. def buffered: MultiByteArrayIterator.this.type
    Definition Classes
    BufferedIterator → Iterator
  14. def clear(): Unit
    Definition Classes
    MultiByteArrayIteratorByteIterator
    Annotations
    @inline()
  15. final def clone(): MultiByteArrayIterator
    Definition Classes
    MultiByteArrayIteratorByteIterator → AnyRef
  16. def collect[B](pf: PartialFunction[Byte, B]): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  17. def collectFirst[B](pf: PartialFunction[Byte, B]): Option[B]
    Definition Classes
    IterableOnceOps
  18. def concat[B >: Byte](xs: => IterableOnce[B]): Iterator[B]
    Definition Classes
    Iterator
  19. def contains(elem: Any): Boolean
    Definition Classes
    Iterator
  20. final def copyToArray[B >: Byte](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    MultiByteArrayIterator → IterableOnceOps
  21. def copyToArray[B >: Byte](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  22. def copyToArray[B >: Byte](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  23. def copyToBuffer(buffer: ByteBuffer): Int

    For performance sensitive code, call copyToBuffer() directly on ByteString (it's optimised there)

    For performance sensitive code, call copyToBuffer() directly on ByteString (it's optimised there)

    Definition Classes
    MultiByteArrayIteratorByteIterator
  24. def corresponds[B](that: IterableOnce[B])(p: (Byte, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  25. def count(p: (Byte) => Boolean): Int
    Definition Classes
    IterableOnceOps
  26. def distinct: Iterator[Byte]
    Definition Classes
    Iterator
  27. def distinctBy[B](f: (Byte) => B): Iterator[Byte]
    Definition Classes
    Iterator
  28. final def drop(n: Int): MultiByteArrayIterator.this.type

    For performance sensitive code, call drop() directly on ByteString (it's optimised there)

    For performance sensitive code, call drop() directly on ByteString (it's optimised there)

    Definition Classes
    MultiByteArrayIteratorByteIterator → Iterator → IterableOnceOps
  29. final def dropWhile(p: (Byte) => Boolean): MultiByteArrayIterator.this.type
    Definition Classes
    MultiByteArrayIteratorByteIterator → Iterator → IterableOnceOps
    Annotations
    @tailrec()
  30. def duplicate: (ByteIterator, ByteIterator)
    Definition Classes
    ByteIterator → Iterator
  31. def ensuring(cond: (MultiByteArrayIterator) => Boolean, msg: => Any): MultiByteArrayIterator
    Implicit
    This member is added by an implicit conversion from MultiByteArrayIterator toEnsuring[MultiByteArrayIterator] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  32. def ensuring(cond: (MultiByteArrayIterator) => Boolean): MultiByteArrayIterator
    Implicit
    This member is added by an implicit conversion from MultiByteArrayIterator toEnsuring[MultiByteArrayIterator] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  33. def ensuring(cond: Boolean, msg: => Any): MultiByteArrayIterator
    Implicit
    This member is added by an implicit conversion from MultiByteArrayIterator toEnsuring[MultiByteArrayIterator] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  34. def ensuring(cond: Boolean): MultiByteArrayIterator
    Implicit
    This member is added by an implicit conversion from MultiByteArrayIterator toEnsuring[MultiByteArrayIterator] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  35. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  36. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  37. def exists(p: (Byte) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  38. def filter(p: (Byte) => Boolean): Iterator[Byte]
    Definition Classes
    Iterator → IterableOnceOps
  39. def filterNot(p: (Byte) => Boolean): Iterator[Byte]
    Definition Classes
    Iterator → IterableOnceOps
  40. def find(p: (Byte) => Boolean): Option[Byte]
    Definition Classes
    IterableOnceOps
  41. def flatMap[B](f: (Byte) => IterableOnce[B]): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  42. def flatten[B](implicit ev: (Byte) => IterableOnce[B]): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  43. def fold[A1 >: Byte](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  44. def foldLeft[B](z: B)(op: (B, Byte) => B): B
    Definition Classes
    ByteIterator → IterableOnceOps
  45. def foldRight[B](z: B)(op: (Byte, B) => B): B
    Definition Classes
    IterableOnceOps
  46. def forall(p: (Byte) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  47. def foreach[U](f: (Byte) => U): Unit
    Definition Classes
    MultiByteArrayIteratorByteIterator → IterableOnceOps
  48. def getByte: Byte

    Get a single Byte from this iterator.

    Get a single Byte from this iterator. Identical to next().

    Definition Classes
    ByteIterator
  49. def getByteString(n: Int): ByteString

    Get a ByteString with specific number of Bytes from this iterator.

    Get a ByteString with specific number of Bytes from this iterator. In contrast to copyToArray, this method will fail if this.len < n.

    Definition Classes
    ByteIterator
  50. def getBytes(xs: Array[Byte], offset: Int, n: Int): MultiByteArrayIterator.this.type

    Get a specific number of Bytes from this iterator.

    Get a specific number of Bytes from this iterator. In contrast to copyToArray, this method will fail if length < n or if (xs.length - offset) < n.

    Definition Classes
    MultiByteArrayIteratorByteIterator
  51. def getBytes(n: Int): Array[Byte]

    Get a specific number of Bytes from this iterator.

    Get a specific number of Bytes from this iterator. In contrast to copyToArray, this method will fail if this.len < n.

    Definition Classes
    ByteIterator
  52. def getBytes(xs: Array[Byte]): MultiByteArrayIterator.this.type

    Get a specific number of Bytes from this iterator.

    Get a specific number of Bytes from this iterator. In contrast to copyToArray, this method will fail if this.len < xs.length.

    Definition Classes
    ByteIterator
  53. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  54. def getDouble(implicit byteOrder: ByteOrder): Double
    Definition Classes
    ByteIterator
  55. def getDoubles(xs: Array[Double], offset: Int, n: Int)(implicit byteOrder: ByteOrder): MultiByteArrayIterator.this.type

    Get a number of Doubles from this iterator.

    Get a number of Doubles from this iterator.

    Definition Classes
    MultiByteArrayIteratorByteIterator
  56. def getDoubles(xs: Array[Double])(implicit byteOrder: ByteOrder): MultiByteArrayIterator.this.type

    Get a number of Doubles from this iterator.

    Get a number of Doubles from this iterator.

    Definition Classes
    ByteIterator
  57. def getFloat(implicit byteOrder: ByteOrder): Float
    Definition Classes
    ByteIterator
  58. def getFloats(xs: Array[Float], offset: Int, n: Int)(implicit byteOrder: ByteOrder): MultiByteArrayIterator.this.type

    Get a number of Floats from this iterator.

    Get a number of Floats from this iterator.

    Definition Classes
    MultiByteArrayIteratorByteIterator
  59. def getFloats(xs: Array[Float])(implicit byteOrder: ByteOrder): MultiByteArrayIterator.this.type

    Get a number of Floats from this iterator.

    Get a number of Floats from this iterator.

    Definition Classes
    ByteIterator
  60. def getInt(implicit byteOrder: ByteOrder): Int

    Get a single Int from this iterator.

    Get a single Int from this iterator.

    Definition Classes
    ByteIterator
  61. def getInts(xs: Array[Int], offset: Int, n: Int)(implicit byteOrder: ByteOrder): MultiByteArrayIterator.this.type

    Get a number of Ints from this iterator.

    Get a number of Ints from this iterator.

    Definition Classes
    MultiByteArrayIteratorByteIterator
  62. def getInts(xs: Array[Int])(implicit byteOrder: ByteOrder): MultiByteArrayIterator.this.type

    Get a number of Ints from this iterator.

    Get a number of Ints from this iterator.

    Definition Classes
    ByteIterator
  63. def getLong(implicit byteOrder: ByteOrder): Long

    Get a single Long from this iterator.

    Get a single Long from this iterator.

    Definition Classes
    ByteIterator
  64. def getLongPart(n: Int)(implicit byteOrder: ByteOrder): Long

    Get a Long from this iterator where only the least significant n bytes were encoded.

    Get a Long from this iterator where only the least significant n bytes were encoded.

    Definition Classes
    ByteIterator
  65. def getLongs(xs: Array[Long], offset: Int, n: Int)(implicit byteOrder: ByteOrder): MultiByteArrayIterator.this.type

    Get a number of Longs from this iterator.

    Get a number of Longs from this iterator.

    Definition Classes
    MultiByteArrayIteratorByteIterator
  66. def getLongs(xs: Array[Long])(implicit byteOrder: ByteOrder): MultiByteArrayIterator.this.type

    Get a number of Longs from this iterator.

    Get a number of Longs from this iterator.

    Definition Classes
    ByteIterator
  67. def getShort(implicit byteOrder: ByteOrder): Short

    Get a single Short from this iterator.

    Get a single Short from this iterator.

    Definition Classes
    ByteIterator
  68. def getShorts(xs: Array[Short], offset: Int, n: Int)(implicit byteOrder: ByteOrder): MultiByteArrayIterator.this.type

    Get a number of Shorts from this iterator.

    Get a number of Shorts from this iterator.

    Definition Classes
    MultiByteArrayIteratorByteIterator
  69. def getShorts(xs: Array[Short])(implicit byteOrder: ByteOrder): MultiByteArrayIterator.this.type

    Get a number of Shorts from this iterator.

    Get a number of Shorts from this iterator.

    Definition Classes
    ByteIterator
  70. final def getToArray[A](xs: Array[A], offset: Int, n: Int, elemSize: Int)(getSingle: => A)(getMult: (Array[A], Int, Int) => Unit): MultiByteArrayIterator.this.type
    Attributes
    protected
    Annotations
    @tailrec()
  71. def grouped[B >: Byte](size: Int): GroupedIterator[B]
    Definition Classes
    Iterator
  72. final def hasNext: Boolean
    Definition Classes
    MultiByteArrayIterator → Iterator
    Annotations
    @inline()
  73. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  74. final def head: Byte
    Definition Classes
    MultiByteArrayIteratorByteIterator → BufferedIterator
    Annotations
    @inline()
  75. def headOption: Option[Byte]
    Definition Classes
    BufferedIterator
  76. def indexOf[B >: Byte](elem: B, from: Int): Int
    Definition Classes
    ByteIterator → Iterator
  77. def indexOf[B >: Byte](elem: B): Int
    Definition Classes
    ByteIterator → Iterator
  78. def indexOf(elem: Byte, from: Int): Int
    Definition Classes
    ByteIterator
  79. def indexOf(elem: Byte): Int
    Definition Classes
    ByteIterator
  80. def indexWhere(p: (Byte) => Boolean, from: Int = 0): Int
    Definition Classes
    ByteIterator → Iterator
  81. def isEmpty: Boolean
    Definition Classes
    Iterator → IterableOnceOps
    Annotations
    @deprecatedOverriding()
  82. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  83. def isTraversableAgain: Boolean
    Definition Classes
    IterableOnceOps
  84. final def iterator: Iterator[Byte]
    Definition Classes
    Iterator → IterableOnce
    Annotations
    @inline()
  85. def knownSize: Int
    Definition Classes
    IterableOnce
  86. final def len: Int
    Definition Classes
    MultiByteArrayIteratorByteIterator
  87. final def length: Int
    Definition Classes
    Iterator
    Annotations
    @inline()
  88. def map[B](f: (Byte) => B): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  89. def max[B >: Byte](implicit ord: Ordering[B]): Byte
    Definition Classes
    IterableOnceOps
  90. def maxBy[B](f: (Byte) => B)(implicit cmp: Ordering[B]): Byte
    Definition Classes
    IterableOnceOps
  91. def maxByOption[B](f: (Byte) => B)(implicit cmp: Ordering[B]): Option[Byte]
    Definition Classes
    IterableOnceOps
  92. def maxOption[B >: Byte](implicit ord: Ordering[B]): Option[Byte]
    Definition Classes
    IterableOnceOps
  93. def min[B >: Byte](implicit ord: Ordering[B]): Byte
    Definition Classes
    IterableOnceOps
  94. def minBy[B](f: (Byte) => B)(implicit cmp: Ordering[B]): Byte
    Definition Classes
    IterableOnceOps
  95. def minByOption[B](f: (Byte) => B)(implicit cmp: Ordering[B]): Option[Byte]
    Definition Classes
    IterableOnceOps
  96. def minOption[B >: Byte](implicit ord: Ordering[B]): Option[Byte]
    Definition Classes
    IterableOnceOps
  97. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  98. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  99. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  100. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  101. final def next(): Byte
    Definition Classes
    MultiByteArrayIteratorByteIterator → Iterator
  102. def nextOption(): Option[Byte]
    Definition Classes
    Iterator
  103. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  104. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  105. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  106. def padTo[B >: Byte](len: Int, elem: B): Iterator[B]
    Definition Classes
    Iterator
  107. def partition(p: (Byte) => Boolean): (Iterator[Byte], Iterator[Byte])
    Definition Classes
    Iterator
  108. def patch[B >: Byte](from: Int, patchElems: Iterator[B], replaced: Int): Iterator[B]
    Definition Classes
    Iterator
  109. def product[B >: Byte](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  110. def reduce[B >: Byte](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  111. def reduceLeft[B >: Byte](op: (B, Byte) => B): B
    Definition Classes
    IterableOnceOps
  112. def reduceLeftOption[B >: Byte](op: (B, Byte) => B): Option[B]
    Definition Classes
    IterableOnceOps
  113. def reduceOption[B >: Byte](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  114. def reduceRight[B >: Byte](op: (Byte, B) => B): B
    Definition Classes
    IterableOnceOps
  115. def reduceRightOption[B >: Byte](op: (Byte, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  116. def reversed: Iterable[Byte]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  117. def sameElements[B >: Byte](that: IterableOnce[B]): Boolean
    Definition Classes
    Iterator
  118. def scanLeft[B](z: B)(op: (B, Byte) => B): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  119. final def size: Int
    Definition Classes
    MultiByteArrayIterator → IterableOnceOps
  120. def slice(from: Int, until: Int): MultiByteArrayIterator.this.type
    Definition Classes
    ByteIterator → Iterator → IterableOnceOps
  121. def sliceIterator(from: Int, until: Int): Iterator[Byte]
    Attributes
    protected
    Definition Classes
    Iterator
  122. def sliding[B >: Byte](size: Int, step: Int): GroupedIterator[B]
    Definition Classes
    Iterator
  123. def span(p: (Byte) => Boolean): (ByteIterator, ByteIterator)
    Definition Classes
    ByteIterator → Iterator → IterableOnceOps
  124. def splitAt(n: Int): (Iterator[Byte], Iterator[Byte])
    Definition Classes
    IterableOnceOps
  125. def stepper[S <: Stepper[_]](implicit shape: StepperShape[Byte, S]): S
    Definition Classes
    IterableOnce
  126. def sum[B >: Byte](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  127. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  128. final def take(n: Int): MultiByteArrayIterator.this.type

    For performance sensitive code, call take() directly on ByteString (it's optimised there)

    For performance sensitive code, call take() directly on ByteString (it's optimised there)

    Definition Classes
    MultiByteArrayIteratorByteIterator → Iterator → IterableOnceOps
  129. final def takeWhile(p: (Byte) => Boolean): MultiByteArrayIterator.this.type
    Definition Classes
    MultiByteArrayIteratorByteIterator → Iterator → IterableOnceOps
  130. def tapEach[U](f: (Byte) => U): Iterator[Byte]
    Definition Classes
    Iterator → IterableOnceOps
  131. def to[C1](factory: Factory[Byte, C1]): C1
    Definition Classes
    IterableOnceOps
  132. def toArray[B >: Byte](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    ByteIterator → IterableOnceOps
  133. final def toBuffer[B >: Byte]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  134. final def toByteString: ByteString
    Definition Classes
    MultiByteArrayIteratorByteIterator
  135. def toIndexedSeq: IndexedSeq[Byte]
    Definition Classes
    IterableOnceOps
  136. def toList: List[Byte]
    Definition Classes
    IterableOnceOps
  137. def toMap[K, V](implicit ev: <:<[Byte, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  138. def toSeq: ByteString
    Definition Classes
    ByteIterator → IterableOnceOps
  139. def toSet[B >: Byte]: Set[B]
    Definition Classes
    IterableOnceOps
  140. def toString(): String
    Definition Classes
    Iterator → AnyRef → Any
  141. def toVector: Vector[Byte]
    Definition Classes
    IterableOnceOps
  142. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  143. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  144. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  145. def withFilter(p: (Byte) => Boolean): Iterator[Byte]
    Definition Classes
    Iterator
  146. def zip[B](that: IterableOnce[B]): Iterator[(Byte, B)]
    Definition Classes
    Iterator
  147. def zipAll[A1 >: Byte, B](that: IterableOnce[B], thisElem: A1, thatElem: B): Iterator[(A1, B)]
    Definition Classes
    Iterator
  148. def zipWithIndex: Iterator[(Byte, Int)]
    Definition Classes
    Iterator → IterableOnceOps

Deprecated Value Members

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

    (Since version 2.13.0) Use .iterator.foldLeft instead

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

    (Since version 2.13.0) Use foldLeft instead of /:

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

    (Since version 2.13.0) Use .iterator.foldRight instead

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

    (Since version 2.13.0) Use foldRight instead of :\

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

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

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

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

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

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

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

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

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

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

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

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

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

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

  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated
  13. def find(p: (Byte) => Boolean): Option[Byte]
    Implicit
    This member is added by an implicit conversion from MultiByteArrayIterator toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (multiByteArrayIterator: IterableOnceExtensionMethods[Byte]).find(p)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.find instead

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

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

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

    (Since version 2.13.0) Use .iterator.fold instead

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

    (Since version 2.13.0) Use .iterator.foldLeft instead

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

    (Since version 2.13.0) Use .iterator.foldRight instead

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

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

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

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

  20. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from MultiByteArrayIterator toStringFormat[MultiByteArrayIterator] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  21. final def hasDefiniteSize: Boolean
    Definition Classes
    Iterator → IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) hasDefiniteSize on Iterator is the same as isEmpty

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

    (Since version 2.13.0) Use .iterator.isEmpty instead

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

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

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

    (Since version 2.13.0) Use .iterator.max instead

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

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

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

    (Since version 2.13.0) Use .iterator.min instead

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

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

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

    (Since version 2.13.0) Use .iterator.mkString instead

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

    (Since version 2.13.0) Use .iterator.mkString instead

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

    (Since version 2.13.0) Use .iterator.mkString instead

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

    (Since version 2.13.0) Use .iterator.nonEmpty instead

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

    (Since version 2.13.0) Use .iterator.product instead

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

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

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

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

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

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

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

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

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

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

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

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

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

    (Since version 2.13.0) Use .iterator.sameElements instead

  40. def scanRight[B](z: B)(op: (Byte, B) => B): Iterator[B]
    Definition Classes
    Iterator
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Call scanRight on an Iterable instead.

  41. def seq: MultiByteArrayIterator.this.type
    Definition Classes
    Iterator
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterator.seq always returns the iterator itself

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

    (Since version 2.13.0) Use .iterator.size instead

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

    (Since version 2.13.0) Use .iterator.sum instead

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

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

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

    (Since version 2.13.0) Use .iterator.toArray

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

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

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

    (Since version 2.13.0) Use .iterator.toIndexedSeq instead

  48. final def toIterable: Iterable[Byte]
    Implicit
    This member is added by an implicit conversion from MultiByteArrayIterator toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

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

    (Since version 2.13.0) Use .iterator instead

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  57. final def toTraversable: Traversable[Byte]
    Implicit
    This member is added by an implicit conversion from MultiByteArrayIterator toIterableOnceExtensionMethods[Byte] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

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

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

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

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

  60. def [B](y: B): (MultiByteArrayIterator, B)
    Implicit
    This member is added by an implicit conversion from MultiByteArrayIterator toArrowAssoc[MultiByteArrayIterator] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from ByteIterator

Inherited from BufferedIterator[Byte]

Inherited from Iterator[Byte]

Inherited from IterableOnce[Byte]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion iterableOnceExtensionMethods fromMultiByteArrayIterator to IterableOnceExtensionMethods[Byte]

Inherited by implicit conversion any2stringadd fromMultiByteArrayIterator to any2stringadd[MultiByteArrayIterator]

Inherited by implicit conversion StringFormat fromMultiByteArrayIterator to StringFormat[MultiByteArrayIterator]

Inherited by implicit conversion Ensuring fromMultiByteArrayIterator to Ensuring[MultiByteArrayIterator]

Inherited by implicit conversion ArrowAssoc fromMultiByteArrayIterator to ArrowAssoc[MultiByteArrayIterator]

Ungrouped