reactivemongo.bson.buffer

BSONIterator

Related Docs: object BSONIterator | package buffer

sealed trait BSONIterator extends Iterator[BSONElement]

Linear Supertypes
Iterator[BSONElement], TraversableOnce[BSONElement], GenTraversableOnce[BSONElement], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. BSONIterator
  2. Iterator
  3. TraversableOnce
  4. GenTraversableOnce
  5. AnyRef
  6. 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
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

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

    Definition Classes
    Iterator

Abstract Value Members

  1. abstract val buffer: ReadableBuffer

Concrete 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 information
    This member is added by an implicit conversion from BSONIterator to any2stringadd[BSONIterator] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ++[B >: BSONElement](that: ⇒ GenTraversableOnce[B]): Iterator[B]

    Definition Classes
    Iterator
  5. def ->[B](y: B): (BSONIterator, B)

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  7. def :\[B](z: B)(op: (BSONElement, B) ⇒ B): B

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

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

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

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

    Definition Classes
    TraversableOnce
  12. def aggregate[B](z: ⇒ B)(seqop: (B, BSONElement) ⇒ B, combop: (B, B) ⇒ B): B

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

    Definition Classes
    Any
  14. def buffered: BufferedIterator[BSONElement]

    Definition Classes
    Iterator
  15. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  16. def collect[B](pf: PartialFunction[BSONElement, 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.

  17. def collectFirst[B](pf: PartialFunction[BSONElement, B]): Option[B]

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

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

    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  20. def copyToArray[B >: BSONElement](xs: Array[B]): Unit

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  22. def copyToBuffer[B >: BSONElement](dest: Buffer[B]): Unit

    Definition Classes
    TraversableOnce
  23. def corresponds[B](that: GenTraversableOnce[B])(p: (BSONElement, B) ⇒ Boolean): Boolean

    Definition Classes
    Iterator
  24. def count(p: (BSONElement) ⇒ Boolean): Int

    Definition Classes
    TraversableOnce → GenTraversableOnce
  25. val documentSize: Int

  26. def drop(n: Int): Iterator[BSONElement]

    Definition Classes
    Iterator
  27. def dropWhile(p: (BSONElement) ⇒ Boolean): Iterator[BSONElement]

    Definition Classes
    Iterator
  28. def duplicate: (Iterator[BSONElement], Iterator[BSONElement])

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

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

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

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

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

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

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

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

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

    Definition Classes
    Iterator
  38. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  39. def find(p: (BSONElement) ⇒ Boolean): Option[BSONElement]

    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  40. def flatMap[B](f: (BSONElement) ⇒ GenTraversableOnce[B]): Iterator[B]

    Definition Classes
    Iterator
  41. def fold[A1 >: BSONElement](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  42. def foldLeft[B](z: B)(op: (B, BSONElement) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  43. def foldRight[B](z: B)(op: (BSONElement, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  44. def forall(p: (BSONElement) ⇒ Boolean): Boolean

    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  45. def foreach[U](f: (BSONElement) ⇒ U): Unit

    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  46. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from BSONIterator to StringFormat[BSONIterator] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  47. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  48. def grouped[B >: BSONElement](size: Int): GroupedIterator[B]

    Definition Classes
    Iterator
  49. def hasDefiniteSize: Boolean

    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  50. def hasNext: Boolean

    Definition Classes
    BSONIterator → Iterator
  51. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  52. def indexOf[B >: BSONElement](elem: B): Int

    Definition Classes
    Iterator
  53. def indexWhere(p: (BSONElement) ⇒ Boolean): Int

    Definition Classes
    Iterator
  54. def isEmpty: Boolean

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

    Definition Classes
    Any
  56. def isTraversableAgain: Boolean

    Definition Classes
    Iterator → GenTraversableOnce
  57. def length: Int

    Definition Classes
    Iterator
  58. def map[B](f: (BSONElement) ⇒ B): Iterator[B]

    Definition Classes
    Iterator
  59. def mapped: Map[String, BSONElement]

  60. def max[B >: BSONElement](implicit cmp: Ordering[B]): BSONElement

    Definition Classes
    TraversableOnce → GenTraversableOnce
  61. def maxBy[B](f: (BSONElement) ⇒ B)(implicit cmp: Ordering[B]): BSONElement

    Definition Classes
    TraversableOnce → GenTraversableOnce
  62. def min[B >: BSONElement](implicit cmp: Ordering[B]): BSONElement

    Definition Classes
    TraversableOnce → GenTraversableOnce
  63. def minBy[B](f: (BSONElement) ⇒ B)(implicit cmp: Ordering[B]): BSONElement

    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. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  68. def next(): BSONElement

    Definition Classes
    BSONIterator → Iterator
  69. def nonEmpty: Boolean

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

    Definition Classes
    AnyRef
  71. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  72. def padTo[A1 >: BSONElement](len: Int, elem: A1): Iterator[A1]

    Definition Classes
    Iterator
  73. def partition(p: (BSONElement) ⇒ Boolean): (Iterator[BSONElement], Iterator[BSONElement])

    Definition Classes
    Iterator
  74. def patch[B >: BSONElement](from: Int, patchElems: Iterator[B], replaced: Int): Iterator[B]

    Definition Classes
    Iterator
  75. def product[B >: BSONElement](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  76. def reduce[A1 >: BSONElement](op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  77. def reduceLeft[B >: BSONElement](op: (B, BSONElement) ⇒ B): B

    Definition Classes
    TraversableOnce
  78. def reduceLeftOption[B >: BSONElement](op: (B, BSONElement) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  79. def reduceOption[A1 >: BSONElement](op: (A1, A1) ⇒ A1): Option[A1]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  80. def reduceRight[B >: BSONElement](op: (BSONElement, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  81. def reduceRightOption[B >: BSONElement](op: (BSONElement, B) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  82. def reversed: List[BSONElement]

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

    Definition Classes
    Iterator
  84. def scanLeft[B](z: B)(op: (B, BSONElement) ⇒ B): Iterator[B]

    Definition Classes
    Iterator
  85. def scanRight[B](z: B)(op: (BSONElement, B) ⇒ B): Iterator[B]

    Definition Classes
    Iterator
  86. def seq: Iterator[BSONElement]

    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  87. def size: Int

    Definition Classes
    TraversableOnce → GenTraversableOnce
  88. def slice(from: Int, until: Int): Iterator[BSONElement]

    Definition Classes
    Iterator
  89. def sliding[B >: BSONElement](size: Int, step: Int): GroupedIterator[B]

    Definition Classes
    Iterator
  90. def span(p: (BSONElement) ⇒ Boolean): (Iterator[BSONElement], Iterator[BSONElement])

    Definition Classes
    Iterator
  91. val startIndex: Int

  92. def sum[B >: BSONElement](implicit num: Numeric[B]): B

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

    Definition Classes
    AnyRef
  94. def take(n: Int): Iterator[BSONElement]

    Definition Classes
    Iterator
  95. def takeWhile(p: (BSONElement) ⇒ Boolean): Iterator[BSONElement]

    Definition Classes
    Iterator
  96. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, BSONElement, Col[BSONElement]]): Col[BSONElement]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  97. def toArray[B >: BSONElement](implicit arg0: ClassTag[B]): Array[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  98. def toBuffer[B >: BSONElement]: Buffer[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  99. def toIndexedSeq: IndexedSeq[BSONElement]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  100. def toIterable: Iterable[BSONElement]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  101. def toIterator: Iterator[BSONElement]

    Definition Classes
    Iterator → GenTraversableOnce
  102. def toList: List[BSONElement]

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  104. def toSeq: Seq[BSONElement]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  105. def toSet[B >: BSONElement]: Set[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  106. def toStream: Stream[BSONElement]

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

    Definition Classes
    Iterator → AnyRef → Any
  108. def toTraversable: Traversable[BSONElement]

    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  109. def toVector: Vector[BSONElement]

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  113. def withFilter(p: (BSONElement) ⇒ Boolean): Iterator[BSONElement]

    Definition Classes
    Iterator
  114. def zip[B](that: Iterator[B]): Iterator[(BSONElement, B)]

    Definition Classes
    Iterator
  115. def zipAll[B, A1 >: BSONElement, B1 >: B](that: Iterator[B], thisElem: A1, thatElem: B1): Iterator[(A1, B1)]

    Definition Classes
    Iterator
  116. def zipWithIndex: Iterator[(BSONElement, Int)]

    Definition Classes
    Iterator
  117. def [B](y: B): (BSONIterator, B)

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

Shadowed Implicit Value Members

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

    Implicit information
    This member is added by an implicit conversion from BSONIterator to MonadOps[BSONElement] 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:
    (bSONIterator: MonadOps[BSONElement]).filter(p)
    Definition Classes
    MonadOps
  2. def flatMap[B](f: (BSONElement) ⇒ GenTraversableOnce[B]): TraversableOnce[B]

    Implicit information
    This member is added by an implicit conversion from BSONIterator to MonadOps[BSONElement] 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:
    (bSONIterator: MonadOps[BSONElement]).flatMap(f)
    Definition Classes
    MonadOps
  3. def map[B](f: (BSONElement) ⇒ B): TraversableOnce[B]

    Implicit information
    This member is added by an implicit conversion from BSONIterator to MonadOps[BSONElement] 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:
    (bSONIterator: MonadOps[BSONElement]).map(f)
    Definition Classes
    MonadOps
  4. def withFilter(p: (BSONElement) ⇒ Boolean): Iterator[BSONElement]

    Implicit information
    This member is added by an implicit conversion from BSONIterator to MonadOps[BSONElement] 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:
    (bSONIterator: MonadOps[BSONElement]).withFilter(p)
    Definition Classes
    MonadOps

Inherited from Iterator[BSONElement]

Inherited from TraversableOnce[BSONElement]

Inherited from GenTraversableOnce[BSONElement]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion MonadOps from BSONIterator to MonadOps[BSONElement]

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

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

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

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

Inherited by implicit conversion alternateImplicit from BSONIterator to ForceImplicitAmbiguity

Ungrouped