Class/Object

akka.util

ByteIterator

Related Docs: object ByteIterator | package util

Permalink

abstract class ByteIterator extends BufferedIterator[Byte]

An iterator over a ByteString.

Source
ByteIterator.scala
Linear Supertypes
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ByteIterator
  2. BufferedIterator
  3. Iterator
  4. TraversableOnce
  5. GenTraversableOnce
  6. AnyRef
  7. Any
Implicitly
  1. by MonadOps
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  6. by alternateImplicit
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ByteIterator()

    Permalink

Type Members

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

    Permalink
    Definition Classes
    Iterator

Abstract Value Members

  1. abstract def asInputStream: InputStream

    Permalink

    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 clear(): Unit

    Permalink
    Attributes
    protected
  3. abstract def copyToBuffer(buffer: ByteBuffer): Int

    Permalink

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

  4. abstract def getBytes(xs: Array[Byte], offset: Int, n: Int): ByteIterator.this.type

    Permalink

    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.

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

    Permalink

    Get a number of Doubles from this iterator.

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

    Permalink

    Get a number of Floats from this iterator.

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

    Permalink

    Get a number of Ints from this iterator.

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

    Permalink

    Get a number of Longs from this iterator.

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

    Permalink

    Get a number of Shorts from this iterator.

  10. abstract def hasNext: Boolean

    Permalink
    Definition Classes
    Iterator
  11. abstract def head: Byte

    Permalink
    Definition Classes
    ByteIterator → BufferedIterator
  12. abstract def len: Int

    Permalink
  13. abstract def next(): Byte

    Permalink
    Definition Classes
    ByteIterator → Iterator
  14. abstract def toByteString: ByteString

    Permalink

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from ByteIterator to any2stringadd[ByteIterator] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ++(that: TraversableOnce[Byte]): ByteIterator

    Permalink
  5. def ++[B >: Byte](that: ⇒ GenTraversableOnce[B]): Iterator[B]

    Permalink
    Definition Classes
    Iterator
  6. def ->[B](y: B): (ByteIterator, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from ByteIterator to ArrowAssoc[ByteIterator] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  7. def /:[B](z: B)(op: (B, Byte) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  8. def :\[B](z: B)(op: (Byte, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  9. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. def addString(b: StringBuilder): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  11. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  12. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  13. def aggregate[B](z: ⇒ B)(seqop: (B, Byte) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  14. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  15. def buffered: ByteIterator.this.type

    Permalink
    Definition Classes
    BufferedIterator → Iterator
  16. def clone(): ByteIterator

    Permalink
    Definition Classes
    ByteIterator → AnyRef
  17. def collect[B](pf: PartialFunction[Byte, B]): Iterator[B]

    Permalink
    Definition Classes
    Iterator
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) collect has changed. The previous behavior can be reproduced with toSeq.

  18. def collectFirst[B](pf: PartialFunction[Byte, B]): Option[B]

    Permalink
    Definition Classes
    TraversableOnce
  19. def contains(elem: Any): Boolean

    Permalink
    Definition Classes
    Iterator
  20. def copyToArray[B >: Byte](xs: Array[B], start: Int, len: Int): Unit

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  21. def copyToArray[B >: Byte](xs: Array[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  22. def copyToArray[B >: Byte](xs: Array[B], start: Int): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  23. def copyToBuffer[B >: Byte](dest: Buffer[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce
  24. def corresponds[B](that: GenTraversableOnce[B])(p: (Byte, B) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    Iterator
  25. def count(p: (Byte) ⇒ Boolean): Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  26. def drop(n: Int): ByteIterator.this.type

    Permalink
    Definition Classes
    ByteIterator → Iterator
  27. def dropWhile(p: (Byte) ⇒ Boolean): ByteIterator.this.type

    Permalink
    Definition Classes
    ByteIterator → Iterator
  28. def duplicate: (ByteIterator, ByteIterator)

    Permalink
    Definition Classes
    ByteIterator → Iterator
  29. def ensuring(cond: (ByteIterator) ⇒ Boolean, msg: ⇒ Any): ByteIterator

    Permalink
    Implicit information
    This member is added by an implicit conversion from ByteIterator to Ensuring[ByteIterator] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  30. def ensuring(cond: (ByteIterator) ⇒ Boolean): ByteIterator

    Permalink
    Implicit information
    This member is added by an implicit conversion from ByteIterator to Ensuring[ByteIterator] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  31. def ensuring(cond: Boolean, msg: ⇒ Any): ByteIterator

    Permalink
    Implicit information
    This member is added by an implicit conversion from ByteIterator to Ensuring[ByteIterator] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  32. def ensuring(cond: Boolean): ByteIterator

    Permalink
    Implicit information
    This member is added by an implicit conversion from ByteIterator to Ensuring[ByteIterator] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  33. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  34. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  35. def exists(p: (Byte) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  36. def filter(p: (Byte) ⇒ Boolean): Iterator[Byte]

    Permalink
    Definition Classes
    Iterator
  37. def filterNot(p: (Byte) ⇒ Boolean): Iterator[Byte]

    Permalink
    Definition Classes
    Iterator
  38. def find(p: (Byte) ⇒ Boolean): Option[Byte]

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  39. def flatMap[B](f: (Byte) ⇒ GenTraversableOnce[B]): Iterator[B]

    Permalink
    Definition Classes
    Iterator
  40. def fold[A1 >: Byte](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  41. def foldLeft[B](z: B)(op: (B, Byte) ⇒ B): B

    Permalink
    Definition Classes
    ByteIterator → TraversableOnce → GenTraversableOnce
  42. def foldRight[B](z: B)(op: (Byte, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  43. def forall(p: (Byte) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  44. def foreach[U](f: (Byte) ⇒ U): Unit

    Permalink
    Definition Classes
    ByteIterator → Iterator → TraversableOnce → GenTraversableOnce
  45. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from ByteIterator to StringFormat[ByteIterator] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  46. def getByte: Byte

    Permalink

    Get a single Byte from this iterator.

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

  47. def getByteString(n: Int): ByteString

    Permalink

    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.

  48. def getBytes(n: Int): Array[Byte]

    Permalink

    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.

  49. def getBytes(xs: Array[Byte]): ByteIterator.this.type

    Permalink

    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.

  50. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  51. def getDouble(implicit byteOrder: ByteOrder): Double

    Permalink
  52. def getDoubles(xs: Array[Double])(implicit byteOrder: ByteOrder): ByteIterator.this.type

    Permalink

    Get a number of Doubles from this iterator.

  53. def getFloat(implicit byteOrder: ByteOrder): Float

    Permalink
  54. def getFloats(xs: Array[Float])(implicit byteOrder: ByteOrder): ByteIterator.this.type

    Permalink

    Get a number of Floats from this iterator.

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

    Permalink

    Get a single Int from this iterator.

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

    Permalink

    Get a number of Ints from this iterator.

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

    Permalink

    Get a single Long from this iterator.

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

    Permalink

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

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

    Permalink

    Get a number of Longs from this iterator.

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

    Permalink

    Get a single Short from this iterator.

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

    Permalink

    Get a number of Shorts from this iterator.

  62. def grouped[B >: Byte](size: Int): GroupedIterator[B]

    Permalink
    Definition Classes
    Iterator
  63. def hasDefiniteSize: Boolean

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  64. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  65. def indexOf[B >: Byte](elem: B): Int

    Permalink
    Definition Classes
    ByteIterator → Iterator
  66. def indexOf(elem: Byte): Int

    Permalink
  67. def indexWhere(p: (Byte) ⇒ Boolean): Int

    Permalink
    Definition Classes
    ByteIterator → Iterator
  68. def isEmpty: Boolean

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  69. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  70. def isTraversableAgain: Boolean

    Permalink
    Definition Classes
    Iterator → GenTraversableOnce
  71. def length: Int

    Permalink
    Definition Classes
    Iterator
  72. def map[B](f: (Byte) ⇒ B): Iterator[B]

    Permalink
    Definition Classes
    Iterator
  73. def max[B >: Byte](implicit cmp: Ordering[B]): Byte

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  74. def maxBy[B](f: (Byte) ⇒ B)(implicit cmp: Ordering[B]): Byte

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  75. def min[B >: Byte](implicit cmp: Ordering[B]): Byte

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  76. def minBy[B](f: (Byte) ⇒ B)(implicit cmp: Ordering[B]): Byte

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  77. def mkString: String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  78. def mkString(sep: String): String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  79. def mkString(start: String, sep: String, end: String): String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  80. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  81. def nonEmpty: Boolean

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  82. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  83. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  84. def padTo[A1 >: Byte](len: Int, elem: A1): Iterator[A1]

    Permalink
    Definition Classes
    Iterator
  85. def partition(p: (Byte) ⇒ Boolean): (Iterator[Byte], Iterator[Byte])

    Permalink
    Definition Classes
    Iterator
  86. def patch[B >: Byte](from: Int, patchElems: Iterator[B], replaced: Int): Iterator[B]

    Permalink
    Definition Classes
    Iterator
  87. def product[B >: Byte](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  88. def reduce[A1 >: Byte](op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  89. def reduceLeft[B >: Byte](op: (B, Byte) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce
  90. def reduceLeftOption[B >: Byte](op: (B, Byte) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  91. def reduceOption[A1 >: Byte](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  92. def reduceRight[B >: Byte](op: (Byte, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  93. def reduceRightOption[B >: Byte](op: (Byte, B) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  94. def reversed: List[Byte]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  95. def sameElements(that: Iterator[_]): Boolean

    Permalink
    Definition Classes
    Iterator
  96. def scanLeft[B](z: B)(op: (B, Byte) ⇒ B): Iterator[B]

    Permalink
    Definition Classes
    Iterator
  97. def scanRight[B](z: B)(op: (Byte, B) ⇒ B): Iterator[B]

    Permalink
    Definition Classes
    Iterator
  98. def seq: Iterator[Byte]

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  99. def size: Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  100. def slice(from: Int, until: Int): ByteIterator.this.type

    Permalink
    Definition Classes
    ByteIterator → Iterator
  101. def sliding[B >: Byte](size: Int, step: Int): GroupedIterator[B]

    Permalink
    Definition Classes
    Iterator
  102. def span(p: (Byte) ⇒ Boolean): (ByteIterator, ByteIterator)

    Permalink
    Definition Classes
    ByteIterator → Iterator
  103. def sum[B >: Byte](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  104. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  105. def take(n: Int): ByteIterator.this.type

    Permalink
    Definition Classes
    ByteIterator → Iterator
  106. def takeWhile(p: (Byte) ⇒ Boolean): ByteIterator.this.type

    Permalink
    Definition Classes
    ByteIterator → Iterator
  107. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Byte, Col[Byte]]): Col[Byte]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  108. def toArray[B >: Byte](implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Definition Classes
    ByteIterator → TraversableOnce → GenTraversableOnce
  109. def toBuffer[B >: Byte]: Buffer[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  110. def toIndexedSeq: IndexedSeq[Byte]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  111. def toIterable: Iterable[Byte]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  112. def toIterator: Iterator[Byte]

    Permalink
    Definition Classes
    Iterator → GenTraversableOnce
  113. def toList: List[Byte]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  114. def toMap[T, U](implicit ev: <:<[Byte, (T, U)]): Map[T, U]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  115. def toSeq: ByteString

    Permalink
    Definition Classes
    ByteIterator → TraversableOnce → GenTraversableOnce
  116. def toSet[B >: Byte]: Set[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  117. def toStream: Stream[Byte]

    Permalink
    Definition Classes
    Iterator → GenTraversableOnce
  118. def toString(): String

    Permalink
    Definition Classes
    Iterator → AnyRef → Any
  119. def toTraversable: Traversable[Byte]

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  120. def toVector: Vector[Byte]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  121. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  122. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  123. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  124. def withFilter(p: (Byte) ⇒ Boolean): Iterator[Byte]

    Permalink
    Definition Classes
    Iterator
  125. def zip[B](that: Iterator[B]): Iterator[(Byte, B)]

    Permalink
    Definition Classes
    Iterator
  126. def zipAll[B, A1 >: Byte, B1 >: B](that: Iterator[B], thisElem: A1, thatElem: B1): Iterator[(A1, B1)]

    Permalink
    Definition Classes
    Iterator
  127. def zipWithIndex: Iterator[(Byte, Int)]

    Permalink
    Definition Classes
    Iterator
  128. def [B](y: B): (ByteIterator, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from ByteIterator to ArrowAssoc[ByteIterator] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def filter(p: (Byte) ⇒ Boolean): TraversableOnce[Byte]

    Permalink
    Implicit information
    This member is added by an implicit conversion from ByteIterator to MonadOps[Byte] performed by method MonadOps in scala.collection.TraversableOnce.
    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: MonadOps[Byte]).filter(p)
    Definition Classes
    MonadOps
  2. def flatMap[B](f: (Byte) ⇒ GenTraversableOnce[B]): TraversableOnce[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from ByteIterator to MonadOps[Byte] performed by method MonadOps in scala.collection.TraversableOnce.
    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: MonadOps[Byte]).flatMap(f)
    Definition Classes
    MonadOps
  3. def map[B](f: (Byte) ⇒ B): TraversableOnce[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from ByteIterator to MonadOps[Byte] performed by method MonadOps in scala.collection.TraversableOnce.
    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: MonadOps[Byte]).map(f)
    Definition Classes
    MonadOps
  4. def withFilter(p: (Byte) ⇒ Boolean): Iterator[Byte]

    Permalink
    Implicit information
    This member is added by an implicit conversion from ByteIterator to MonadOps[Byte] performed by method MonadOps in scala.collection.TraversableOnce.
    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: MonadOps[Byte]).withFilter(p)
    Definition Classes
    MonadOps

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from BufferedIterator[Byte]

Inherited from Iterator[Byte]

Inherited from TraversableOnce[Byte]

Inherited from GenTraversableOnce[Byte]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion MonadOps from ByteIterator to MonadOps[Byte]

Inherited by implicit conversion any2stringadd from ByteIterator to any2stringadd[ByteIterator]

Inherited by implicit conversion StringFormat from ByteIterator to StringFormat[ByteIterator]

Inherited by implicit conversion Ensuring from ByteIterator to Ensuring[ByteIterator]

Inherited by implicit conversion ArrowAssoc from ByteIterator to ArrowAssoc[ByteIterator]

Inherited by implicit conversion alternateImplicit from ByteIterator to ForceImplicitAmbiguity

Ungrouped