abstract class ByteIterator extends BufferedIterator[Byte]

An iterator over a ByteString.

Source
ByteIterator.scala
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ByteIterator
  2. BufferedIterator
  3. Iterator
  4. IterableOnceOps
  5. IterableOnce
  6. AnyRef
  7. 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

Instance Constructors

  1. new ByteIterator()

Type Members

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

Abstract Value Members

  1. abstract 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.

  2. abstract def copyToBuffer(buffer: ByteBuffer): Int

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

  3. abstract def getBytes(xs: Array[Byte], offset: Int, n: Int): ByteIterator.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.

  4. abstract def getDoubles(xs: Array[Double], offset: Int, n: Int)(implicit byteOrder: ByteOrder): ByteIterator.this.type

    Get a number of Doubles from this iterator.

  5. abstract def getFloats(xs: Array[Float], offset: Int, n: Int)(implicit byteOrder: ByteOrder): ByteIterator.this.type

    Get a number of Floats from this iterator.

  6. abstract def getInts(xs: Array[Int], offset: Int, n: Int)(implicit byteOrder: ByteOrder): ByteIterator.this.type

    Get a number of Ints from this iterator.

  7. abstract def getLongs(xs: Array[Long], offset: Int, n: Int)(implicit byteOrder: ByteOrder): ByteIterator.this.type

    Get a number of Longs from this iterator.

  8. abstract def getShorts(xs: Array[Short], offset: Int, n: Int)(implicit byteOrder: ByteOrder): ByteIterator.this.type

    Get a number of Shorts from this iterator.

  9. abstract def hasNext: Boolean
    Definition Classes
    Iterator
  10. abstract def head: Byte
    Definition Classes
    ByteIterator → BufferedIterator
  11. abstract def len: Int
  12. abstract def next(): Byte
    Definition Classes
    ByteIterator → Iterator
  13. abstract def toByteString: ByteString

Concrete Value Members

  1. def ++(that: IterableOnce[Byte]): ByteIterator
  2. final def ++[B >: Byte](xs: => IterableOnce[B]): Iterator[B]
    Definition Classes
    Iterator
    Annotations
    @inline()
  3. final def addString(b: StringBuilder): b.type
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  4. final def addString(b: StringBuilder, sep: String): b.type
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  5. def addString(b: StringBuilder, start: String, sep: String, end: String): b.type
    Definition Classes
    IterableOnceOps
  6. def buffered: ByteIterator.this.type
    Definition Classes
    BufferedIterator → Iterator
  7. def clone(): ByteIterator
    Definition Classes
    ByteIterator → AnyRef
  8. def collect[B](pf: PartialFunction[Byte, B]): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  9. def collectFirst[B](pf: PartialFunction[Byte, B]): Option[B]
    Definition Classes
    IterableOnceOps
  10. def concat[B >: Byte](xs: => IterableOnce[B]): Iterator[B]
    Definition Classes
    Iterator
  11. def contains(elem: Any): Boolean
    Definition Classes
    Iterator
  12. def copyToArray[B >: Byte](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  13. def copyToArray[B >: Byte](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  14. def copyToArray[B >: Byte](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  15. def corresponds[B](that: IterableOnce[B])(p: (Byte, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  16. def count(p: (Byte) => Boolean): Int
    Definition Classes
    IterableOnceOps
  17. def distinct: Iterator[Byte]
    Definition Classes
    Iterator
  18. def distinctBy[B](f: (Byte) => B): Iterator[Byte]
    Definition Classes
    Iterator
  19. def drop(n: Int): ByteIterator.this.type
    Definition Classes
    ByteIterator → Iterator → IterableOnceOps
  20. def dropWhile(p: (Byte) => Boolean): ByteIterator.this.type
    Definition Classes
    ByteIterator → Iterator → IterableOnceOps
  21. def duplicate: (ByteIterator, ByteIterator)
    Definition Classes
    ByteIterator → Iterator
  22. def exists(p: (Byte) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  23. def filter(p: (Byte) => Boolean): Iterator[Byte]
    Definition Classes
    Iterator → IterableOnceOps
  24. def filterNot(p: (Byte) => Boolean): Iterator[Byte]
    Definition Classes
    Iterator → IterableOnceOps
  25. def find(p: (Byte) => Boolean): Option[Byte]
    Definition Classes
    IterableOnceOps
  26. def flatMap[B](f: (Byte) => IterableOnce[B]): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  27. def flatten[B](implicit ev: (Byte) => IterableOnce[B]): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  28. def fold[A1 >: Byte](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  29. def foldLeft[B](z: B)(op: (B, Byte) => B): B
    Definition Classes
    ByteIterator → IterableOnceOps
  30. def foldRight[B](z: B)(op: (Byte, B) => B): B
    Definition Classes
    IterableOnceOps
  31. def forall(p: (Byte) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  32. def foreach[U](f: (Byte) => U): Unit
    Definition Classes
    ByteIterator → IterableOnceOps
  33. def getByte: Byte

    Get a single Byte from this iterator.

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

  34. 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.

  35. 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.

  36. def getBytes(xs: Array[Byte]): ByteIterator.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.

  37. def getDouble(implicit byteOrder: ByteOrder): Double
  38. def getDoubles(xs: Array[Double])(implicit byteOrder: ByteOrder): ByteIterator.this.type

    Get a number of Doubles from this iterator.

  39. def getFloat(implicit byteOrder: ByteOrder): Float
  40. def getFloats(xs: Array[Float])(implicit byteOrder: ByteOrder): ByteIterator.this.type

    Get a number of Floats from this iterator.

  41. def getInt(implicit byteOrder: ByteOrder): Int

    Get a single Int from this iterator.

  42. def getInts(xs: Array[Int])(implicit byteOrder: ByteOrder): ByteIterator.this.type

    Get a number of Ints from this iterator.

  43. def getLong(implicit byteOrder: ByteOrder): Long

    Get a single Long from this iterator.

  44. def getLongPart(n: Int)(implicit byteOrder: ByteOrder): Long

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

  45. def getLongs(xs: Array[Long])(implicit byteOrder: ByteOrder): ByteIterator.this.type

    Get a number of Longs from this iterator.

  46. def getShort(implicit byteOrder: ByteOrder): Short

    Get a single Short from this iterator.

  47. def getShorts(xs: Array[Short])(implicit byteOrder: ByteOrder): ByteIterator.this.type

    Get a number of Shorts from this iterator.

  48. def grouped[B >: Byte](size: Int): GroupedIterator[B]
    Definition Classes
    Iterator
  49. def headOption: Option[Byte]
    Definition Classes
    BufferedIterator
  50. def indexOf[B >: Byte](elem: B, from: Int): Int
    Definition Classes
    ByteIterator → Iterator
  51. def indexOf[B >: Byte](elem: B): Int
    Definition Classes
    ByteIterator → Iterator
  52. def indexOf(elem: Byte, from: Int): Int
  53. def indexOf(elem: Byte): Int
  54. def indexWhere(p: (Byte) => Boolean, from: Int = 0): Int
    Definition Classes
    ByteIterator → Iterator
  55. def isEmpty: Boolean
    Definition Classes
    Iterator → IterableOnceOps
    Annotations
    @deprecatedOverriding()
  56. def isTraversableAgain: Boolean
    Definition Classes
    IterableOnceOps
  57. final def iterator: Iterator[Byte]
    Definition Classes
    Iterator → IterableOnce
    Annotations
    @inline()
  58. def knownSize: Int
    Definition Classes
    IterableOnce
  59. final def length: Int
    Definition Classes
    Iterator
    Annotations
    @inline()
  60. def map[B](f: (Byte) => B): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  61. def max[B >: Byte](implicit ord: Ordering[B]): Byte
    Definition Classes
    IterableOnceOps
  62. def maxBy[B](f: (Byte) => B)(implicit ord: Ordering[B]): Byte
    Definition Classes
    IterableOnceOps
  63. def maxByOption[B](f: (Byte) => B)(implicit ord: Ordering[B]): Option[Byte]
    Definition Classes
    IterableOnceOps
  64. def maxOption[B >: Byte](implicit ord: Ordering[B]): Option[Byte]
    Definition Classes
    IterableOnceOps
  65. def min[B >: Byte](implicit ord: Ordering[B]): Byte
    Definition Classes
    IterableOnceOps
  66. def minBy[B](f: (Byte) => B)(implicit ord: Ordering[B]): Byte
    Definition Classes
    IterableOnceOps
  67. def minByOption[B](f: (Byte) => B)(implicit ord: Ordering[B]): Option[Byte]
    Definition Classes
    IterableOnceOps
  68. def minOption[B >: Byte](implicit ord: Ordering[B]): Option[Byte]
    Definition Classes
    IterableOnceOps
  69. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  70. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  71. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  72. def nextOption(): Option[Byte]
    Definition Classes
    Iterator
  73. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  74. def padTo[B >: Byte](len: Int, elem: B): Iterator[B]
    Definition Classes
    Iterator
  75. def partition(p: (Byte) => Boolean): (Iterator[Byte], Iterator[Byte])
    Definition Classes
    Iterator
  76. def patch[B >: Byte](from: Int, patchElems: Iterator[B], replaced: Int): Iterator[B]
    Definition Classes
    Iterator
  77. def product[B >: Byte](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  78. def reduce[B >: Byte](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  79. def reduceLeft[B >: Byte](op: (B, Byte) => B): B
    Definition Classes
    IterableOnceOps
  80. def reduceLeftOption[B >: Byte](op: (B, Byte) => B): Option[B]
    Definition Classes
    IterableOnceOps
  81. def reduceOption[B >: Byte](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  82. def reduceRight[B >: Byte](op: (Byte, B) => B): B
    Definition Classes
    IterableOnceOps
  83. def reduceRightOption[B >: Byte](op: (Byte, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  84. def sameElements[B >: Byte](that: IterableOnce[B]): Boolean
    Definition Classes
    Iterator
  85. def scanLeft[B](z: B)(op: (B, Byte) => B): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  86. def size: Int
    Definition Classes
    IterableOnceOps
  87. def slice(from: Int, until: Int): ByteIterator.this.type
    Definition Classes
    ByteIterator → Iterator → IterableOnceOps
  88. def sliding[B >: Byte](size: Int, step: Int): GroupedIterator[B]
    Definition Classes
    Iterator
  89. def span(p: (Byte) => Boolean): (ByteIterator, ByteIterator)
    Definition Classes
    ByteIterator → Iterator → IterableOnceOps
  90. def splitAt(n: Int): (Iterator[Byte], Iterator[Byte])
    Definition Classes
    IterableOnceOps
  91. def stepper[S <: Stepper[_]](implicit shape: StepperShape[Byte, S]): S
    Definition Classes
    IterableOnce
  92. def sum[B >: Byte](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  93. def take(n: Int): ByteIterator.this.type
    Definition Classes
    ByteIterator → Iterator → IterableOnceOps
  94. def takeWhile(p: (Byte) => Boolean): ByteIterator.this.type
    Definition Classes
    ByteIterator → Iterator → IterableOnceOps
  95. def tapEach[U](f: (Byte) => U): Iterator[Byte]
    Definition Classes
    Iterator → IterableOnceOps
  96. def to[C1](factory: Factory[Byte, C1]): C1
    Definition Classes
    IterableOnceOps
  97. def toArray[B >: Byte](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    ByteIterator → IterableOnceOps
  98. final def toBuffer[B >: Byte]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  99. def toIndexedSeq: IndexedSeq[Byte]
    Definition Classes
    IterableOnceOps
  100. def toList: List[Byte]
    Definition Classes
    IterableOnceOps
  101. def toMap[K, V](implicit ev: <:<[Byte, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  102. def toSeq: ByteString
    Definition Classes
    ByteIterator → IterableOnceOps
  103. def toSet[B >: Byte]: Set[B]
    Definition Classes
    IterableOnceOps
  104. def toString(): String
    Definition Classes
    Iterator → AnyRef → Any
  105. def toVector: Vector[Byte]
    Definition Classes
    IterableOnceOps
  106. def withFilter(p: (Byte) => Boolean): Iterator[Byte]
    Definition Classes
    Iterator
  107. def zip[B](that: IterableOnce[B]): Iterator[(Byte, B)]
    Definition Classes
    Iterator
  108. def zipAll[A1 >: Byte, B](that: IterableOnce[B], thisElem: A1, thatElem: B): Iterator[(A1, B)]
    Definition Classes
    Iterator
  109. 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 ByteIterator 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:
    (byteIterator: 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 ByteIterator 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:
    (byteIterator: 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) For sequential collections, prefer foldLeft(z)(seqop). For parallel collections, use ParIterableLike#aggregate.

  6. def collectFirst[B](f: PartialFunction[Byte, B]): Option[B]
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: 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 ByteIterator 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:
    (byteIterator: 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 ByteIterator 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:
    (byteIterator: 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 ByteIterator 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:
    (byteIterator: 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 ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).filter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  12. def find(p: (Byte) => Boolean): Option[Byte]
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).find(p)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.find instead

  13. def flatMap[B](f: (Byte) => IterableOnce[B]): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).flatMap(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  14. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).fold(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.fold instead

  15. def foldLeft[B](z: B)(op: (B, Byte) => B): B
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).foldLeft(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  16. def foldRight[B](z: B)(op: (Byte, B) => B): B
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).foldRight(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  17. def forall(f: (Byte) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).forall(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  18. def foreach[U](f: (Byte) => U): Unit
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).foreach(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  19. 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

  20. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).isEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.isEmpty instead

  21. def map[B](f: (Byte) => B): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).map(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  22. def max(implicit ord: Ordering[Byte]): Byte
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).max(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.max instead

  23. def maxBy[B](f: (Byte) => B)(implicit cmp: Ordering[B]): Byte
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).maxBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  24. def min(implicit ord: Ordering[Byte]): Byte
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).min(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.min instead

  25. def minBy[B](f: (Byte) => B)(implicit cmp: Ordering[B]): Byte
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).minBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  26. def mkString: String
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).mkString
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  27. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).mkString(sep)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  28. def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).mkString(start, sep, end)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  29. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).nonEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.nonEmpty instead

  30. def product(implicit num: Numeric[Byte]): Byte
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).product(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.product instead

  31. def reduce(f: (Byte, Byte) => Byte): Byte
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).reduce(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  32. def reduceLeft(f: (Byte, Byte) => Byte): Byte
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).reduceLeft(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  33. def reduceLeftOption(f: (Byte, Byte) => Byte): Option[Byte]
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).reduceLeftOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  34. def reduceOption(f: (Byte, Byte) => Byte): Option[Byte]
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).reduceOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  35. def reduceRight(f: (Byte, Byte) => Byte): Byte
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).reduceRight(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  36. def reduceRightOption(f: (Byte, Byte) => Byte): Option[Byte]
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).reduceRightOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  37. def sameElements[B >: A](that: IterableOnce[B]): Boolean
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).sameElements(that)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sameElements instead

  38. 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.

  39. def seq: ByteIterator.this.type
    Definition Classes
    Iterator
    Annotations
    @deprecated
    Deprecated

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

  40. def size: Int
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).size
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.size instead

  41. def sum(implicit num: Numeric[Byte]): Byte
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).sum(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sum instead

  42. def to[C1](factory: Factory[Byte, C1]): C1
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).to(factory)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  43. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).toArray(arg0)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toArray

  44. def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).toBuffer
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  45. def toIndexedSeq: IndexedSeq[Byte]
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).toIndexedSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toIndexedSeq instead

  46. final def toIterable: Iterable[Byte]
    Implicit
    This member is added by an implicit conversion from ByteIterator 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

  47. def toIterator: Iterator[Byte]
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).toIterator
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead

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

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

  49. def toList: List[Byte]
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).toList
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  50. def toMap[K, V](implicit ev: <:<[Byte, (K, V)]): Map[K, V]
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).toMap(ev)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  51. def toSeq: Seq[Byte]
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).toSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  52. def toSet[B >: A]: Set[B]
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).toSet
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  53. def toStream: Stream[Byte]
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).toStream
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

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

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

  55. final def toTraversable: Traversable[Byte]
    Implicit
    This member is added by an implicit conversion from ByteIterator 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

  56. def toVector: Vector[Byte]
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).toVector
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  57. def withFilter(f: (Byte) => Boolean): Iterator[Byte]
    Implicit
    This member is added by an implicit conversion from ByteIterator 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:
    (byteIterator: IterableOnceExtensionMethods[Byte]).withFilter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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