abstract class ByteIterator extends BufferedIterator[Byte]

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()

Type Members

  1. class GroupedIterator[B >: A] extends AbstractIterator[Seq[B]] with Iterator[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: TraversableOnce[Byte]): ByteIterator
  2. def ++[B >: Byte](that: ⇒ GenTraversableOnce[B]): Iterator[B]
    Definition Classes
    Iterator
  3. def /:[B](z: B)(op: (B, Byte) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  4. def :\[B](z: B)(op: (Byte, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  5. def addString(b: StringBuilder): StringBuilder
    Definition Classes
    TraversableOnce
  6. def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    TraversableOnce
  7. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    TraversableOnce
  8. def aggregate[B](z: ⇒ B)(seqop: (B, Byte) ⇒ B, combop: (B, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  9. def buffered: ByteIterator.this.type
    Definition Classes
    BufferedIterator → Iterator
  10. def clone(): ByteIterator
    Definition Classes
    ByteIterator → AnyRef
  11. def collect[B](pf: PartialFunction[Byte, B]): Iterator[B]
    Definition Classes
    Iterator
    Annotations
    @migration
    Migration

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

  12. def collectFirst[B](pf: PartialFunction[Byte, B]): Option[B]
    Definition Classes
    TraversableOnce
  13. def contains(elem: Any): Boolean
    Definition Classes
    Iterator
  14. def copyToArray[B >: Byte](xs: Array[B], start: Int, len: Int): Unit
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  15. def copyToArray[B >: Byte](xs: Array[B]): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  16. def copyToArray[B >: Byte](xs: Array[B], start: Int): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  17. def copyToBuffer[B >: Byte](dest: Buffer[B]): Unit
    Definition Classes
    TraversableOnce
  18. def corresponds[B](that: GenTraversableOnce[B])(p: (Byte, B) ⇒ Boolean): Boolean
    Definition Classes
    Iterator
  19. def count(p: (Byte) ⇒ Boolean): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  20. def drop(n: Int): ByteIterator.this.type
    Definition Classes
    ByteIterator → Iterator
  21. def dropWhile(p: (Byte) ⇒ Boolean): ByteIterator.this.type
    Definition Classes
    ByteIterator → Iterator
  22. def duplicate: (ByteIterator, ByteIterator)
    Definition Classes
    ByteIterator → Iterator
  23. def exists(p: (Byte) ⇒ Boolean): Boolean
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  24. def filter(p: (Byte) ⇒ Boolean): Iterator[Byte]
    Definition Classes
    Iterator
  25. def filterNot(p: (Byte) ⇒ Boolean): Iterator[Byte]
    Definition Classes
    Iterator
  26. def find(p: (Byte) ⇒ Boolean): Option[Byte]
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  27. def flatMap[B](f: (Byte) ⇒ GenTraversableOnce[B]): Iterator[B]
    Definition Classes
    Iterator
  28. def fold[A1 >: Byte](z: A1)(op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  29. def foldLeft[B](z: B)(op: (B, Byte) ⇒ B): B
    Definition Classes
    ByteIterator → TraversableOnce → GenTraversableOnce
  30. def foldRight[B](z: B)(op: (Byte, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  31. def forall(p: (Byte) ⇒ Boolean): Boolean
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  32. def foreach[U](f: (Byte) ⇒ U): Unit
    Definition Classes
    ByteIterator → Iterator → TraversableOnce → GenTraversableOnce
  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 hasDefiniteSize: Boolean
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  50. def headOption: Option[Byte]
    Definition Classes
    BufferedIterator
  51. def indexOf[B >: Byte](elem: B): Int
    Definition Classes
    ByteIterator → Iterator
  52. def indexOf(elem: Byte): Int
  53. def indexOf[B >: Byte](elem: B, from: Int): Int
    Definition Classes
    Iterator
  54. def indexWhere(p: (Byte) ⇒ Boolean): Int
    Definition Classes
    ByteIterator → Iterator
  55. def indexWhere(p: (Byte) ⇒ Boolean, from: Int): Int
    Definition Classes
    Iterator
  56. def isEmpty: Boolean
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  57. def isTraversableAgain: Boolean
    Definition Classes
    Iterator → GenTraversableOnce
  58. def length: Int
    Definition Classes
    Iterator
  59. def map[B](f: (Byte) ⇒ B): Iterator[B]
    Definition Classes
    Iterator
  60. def max[B >: Byte](implicit cmp: Ordering[B]): Byte
    Definition Classes
    TraversableOnce → GenTraversableOnce
  61. def maxBy[B](f: (Byte) ⇒ B)(implicit cmp: Ordering[B]): Byte
    Definition Classes
    TraversableOnce → GenTraversableOnce
  62. def min[B >: Byte](implicit cmp: Ordering[B]): Byte
    Definition Classes
    TraversableOnce → GenTraversableOnce
  63. def minBy[B](f: (Byte) ⇒ B)(implicit cmp: Ordering[B]): Byte
    Definition Classes
    TraversableOnce → GenTraversableOnce
  64. def mkString: String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  65. def mkString(sep: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  66. def mkString(start: String, sep: String, end: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  67. def nonEmpty: Boolean
    Definition Classes
    TraversableOnce → GenTraversableOnce
  68. def padTo[A1 >: Byte](len: Int, elem: A1): Iterator[A1]
    Definition Classes
    Iterator
  69. def partition(p: (Byte) ⇒ Boolean): (Iterator[Byte], Iterator[Byte])
    Definition Classes
    Iterator
  70. def patch[B >: Byte](from: Int, patchElems: Iterator[B], replaced: Int): Iterator[B]
    Definition Classes
    Iterator
  71. def product[B >: Byte](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  72. def reduce[A1 >: Byte](op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  73. def reduceLeft[B >: Byte](op: (B, Byte) ⇒ B): B
    Definition Classes
    TraversableOnce
  74. def reduceLeftOption[B >: Byte](op: (B, Byte) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  75. def reduceOption[A1 >: Byte](op: (A1, A1) ⇒ A1): Option[A1]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  76. def reduceRight[B >: Byte](op: (Byte, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  77. def reduceRightOption[B >: Byte](op: (Byte, B) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  78. def sameElements(that: Iterator[_]): Boolean
    Definition Classes
    Iterator
  79. def scanLeft[B](z: B)(op: (B, Byte) ⇒ B): Iterator[B]
    Definition Classes
    Iterator
  80. def scanRight[B](z: B)(op: (Byte, B) ⇒ B): Iterator[B]
    Definition Classes
    Iterator
  81. def seq: Iterator[Byte]
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  82. def size: Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  83. def slice(from: Int, until: Int): ByteIterator.this.type
    Definition Classes
    ByteIterator → Iterator
  84. def sliding[B >: Byte](size: Int, step: Int): GroupedIterator[B]
    Definition Classes
    Iterator
  85. def span(p: (Byte) ⇒ Boolean): (ByteIterator, ByteIterator)
    Definition Classes
    ByteIterator → Iterator
  86. def sum[B >: Byte](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  87. def take(n: Int): ByteIterator.this.type
    Definition Classes
    ByteIterator → Iterator
  88. def takeWhile(p: (Byte) ⇒ Boolean): ByteIterator.this.type
    Definition Classes
    ByteIterator → Iterator
  89. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Byte, Col[Byte]]): Col[Byte]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  90. def toArray[B >: Byte](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    ByteIterator → TraversableOnce → GenTraversableOnce
  91. def toBuffer[B >: Byte]: Buffer[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  92. def toIndexedSeq: IndexedSeq[Byte]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  93. def toIterable: Iterable[Byte]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  94. def toIterator: Iterator[Byte]
    Definition Classes
    Iterator → GenTraversableOnce
  95. def toList: List[Byte]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  96. def toMap[T, U](implicit ev: <:<[Byte, (T, U)]): Map[T, U]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  97. def toSeq: ByteString
    Definition Classes
    ByteIterator → TraversableOnce → GenTraversableOnce
  98. def toSet[B >: Byte]: Set[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  99. def toStream: Stream[Byte]
    Definition Classes
    Iterator → GenTraversableOnce
  100. def toString(): String
    Definition Classes
    Iterator → AnyRef → Any
  101. def toTraversable: Traversable[Byte]
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  102. def toVector: Vector[Byte]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  103. def withFilter(p: (Byte) ⇒ Boolean): Iterator[Byte]
    Definition Classes
    Iterator
  104. def zip[B](that: Iterator[B]): Iterator[(Byte, B)]
    Definition Classes
    Iterator
  105. def zipAll[B, A1 >: Byte, B1 >: B](that: Iterator[B], thisElem: A1, thatElem: B1): Iterator[(A1, B1)]
    Definition Classes
    Iterator
  106. def zipWithIndex: Iterator[(Byte, Int)]
    Definition Classes
    Iterator

Shadowed Implicit Value Members

  1. def filter(p: (Byte) ⇒ Boolean): TraversableOnce[Byte]
    Implicit
    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]
    Implicit
    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]
    Implicit
    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]
    Implicit
    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