reactivemongo.bson.buffer

BSONIterator

sealed trait BSONIterator extends Iterator[(String, BSONValue)]

Annotations
@deprecated
Deprecated

(Since version 0.12.8) Use reactivemongo.bson.BSONIterator

Linear Supertypes
Iterator[(String, BSONValue)], TraversableOnce[(String, BSONValue)], GenTraversableOnce[(String, BSONValue)], 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 any2stringfmt
  4. by any2ArrowAssoc
  5. by any2Ensuring
  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: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Implicit information
    This member is added by an implicit conversion from BSONIterator to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ++[B >: (String, BSONValue)](that: ⇒ GenTraversableOnce[B]): Iterator[B]

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

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

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

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

    Definition Classes
    AnyRef
  10. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  11. def addString(b: StringBuilder): StringBuilder

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

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

    Definition Classes
    TraversableOnce
  14. def aggregate[B](z: B)(seqop: (B, (String, BSONValue)) ⇒ B, combop: (B, B) ⇒ B): B

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

    Definition Classes
    Any
  16. def buffered: BufferedIterator[(String, BSONValue)]

    Definition Classes
    Iterator
  17. def clone(): AnyRef

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

  19. def collectFirst[B](pf: PartialFunction[(String, BSONValue), B]): Option[B]

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

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

    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  22. def copyToArray[B >: (String, BSONValue)](xs: Array[B]): Unit

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  24. def copyToBuffer[B >: (String, BSONValue)](dest: Buffer[B]): Unit

    Definition Classes
    TraversableOnce
  25. def corresponds[B](that: GenTraversableOnce[B])(p: ((String, BSONValue), B) ⇒ Boolean): Boolean

    Definition Classes
    Iterator
  26. def count(p: ((String, BSONValue)) ⇒ Boolean): Int

    Definition Classes
    TraversableOnce → GenTraversableOnce
  27. val documentSize: Int

  28. def drop(n: Int): Iterator[(String, BSONValue)]

    Definition Classes
    Iterator
  29. def dropWhile(p: ((String, BSONValue)) ⇒ Boolean): Iterator[(String, BSONValue)]

    Definition Classes
    Iterator
  30. def duplicate: (Iterator[(String, BSONValue)], Iterator[(String, BSONValue)])

    Definition Classes
    Iterator
  31. 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 any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  32. def ensuring(cond: (BSONIterator) ⇒ Boolean): BSONIterator

    Implicit information
    This member is added by an implicit conversion from BSONIterator to Ensuring[BSONIterator] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  33. 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 any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  34. def ensuring(cond: Boolean): BSONIterator

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

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

    Definition Classes
    AnyRef → Any
  37. def exists(p: ((String, BSONValue)) ⇒ Boolean): Boolean

    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  38. def filter(p: ((String, BSONValue)) ⇒ Boolean): Iterator[(String, BSONValue)]

    Definition Classes
    Iterator
  39. def filterNot(p: ((String, BSONValue)) ⇒ Boolean): Iterator[(String, BSONValue)]

    Definition Classes
    Iterator
  40. def finalize(): Unit

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

    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  42. def flatMap[B](f: ((String, BSONValue)) ⇒ GenTraversableOnce[B]): Iterator[B]

    Definition Classes
    Iterator
  43. def fold[A1 >: (String, BSONValue)](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  44. def foldLeft[B](z: B)(op: (B, (String, BSONValue)) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  45. def foldRight[B](z: B)(op: ((String, BSONValue), B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  46. def forall(p: ((String, BSONValue)) ⇒ Boolean): Boolean

    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  47. def foreach[U](f: ((String, BSONValue)) ⇒ U): Unit

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

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

    Definition Classes
    AnyRef → Any
  50. def grouped[B >: (String, BSONValue)](size: Int): GroupedIterator[B]

    Definition Classes
    Iterator
  51. def hasDefiniteSize: Boolean

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

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

    Definition Classes
    AnyRef → Any
  54. def indexOf[B >: (String, BSONValue)](elem: B): Int

    Definition Classes
    Iterator
  55. def indexWhere(p: ((String, BSONValue)) ⇒ Boolean): Int

    Definition Classes
    Iterator
  56. def isEmpty: Boolean

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

    Definition Classes
    Any
  58. def isTraversableAgain: Boolean

    Definition Classes
    Iterator → GenTraversableOnce
  59. def length: Int

    Definition Classes
    Iterator
  60. def map[B](f: ((String, BSONValue)) ⇒ B): Iterator[B]

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

  62. def max[B >: (String, BSONValue)](implicit cmp: Ordering[B]): (String, BSONValue)

    Definition Classes
    TraversableOnce → GenTraversableOnce
  63. def maxBy[B](f: ((String, BSONValue)) ⇒ B)(implicit cmp: Ordering[B]): (String, BSONValue)

    Definition Classes
    TraversableOnce → GenTraversableOnce
  64. def min[B >: (String, BSONValue)](implicit cmp: Ordering[B]): (String, BSONValue)

    Definition Classes
    TraversableOnce → GenTraversableOnce
  65. def minBy[B](f: ((String, BSONValue)) ⇒ B)(implicit cmp: Ordering[B]): (String, BSONValue)

    Definition Classes
    TraversableOnce → GenTraversableOnce
  66. def mkString: String

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

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

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

    Definition Classes
    AnyRef
  70. def next(): (String, BSONValue)

    Definition Classes
    BSONIterator → Iterator
    Annotations
    @SuppressWarnings()
  71. def nonEmpty: Boolean

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

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

    Definition Classes
    AnyRef
  74. def padTo[A1 >: (String, BSONValue)](len: Int, elem: A1): Iterator[A1]

    Definition Classes
    Iterator
  75. def partition(p: ((String, BSONValue)) ⇒ Boolean): (Iterator[(String, BSONValue)], Iterator[(String, BSONValue)])

    Definition Classes
    Iterator
  76. def patch[B >: (String, BSONValue)](from: Int, patchElems: Iterator[B], replaced: Int): Iterator[B]

    Definition Classes
    Iterator
  77. def product[B >: (String, BSONValue)](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  78. def reduce[A1 >: (String, BSONValue)](op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  79. def reduceLeft[B >: (String, BSONValue)](op: (B, (String, BSONValue)) ⇒ B): B

    Definition Classes
    TraversableOnce
  80. def reduceLeftOption[B >: (String, BSONValue)](op: (B, (String, BSONValue)) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  81. def reduceOption[A1 >: (String, BSONValue)](op: (A1, A1) ⇒ A1): Option[A1]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  82. def reduceRight[B >: (String, BSONValue)](op: ((String, BSONValue), B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  83. def reduceRightOption[B >: (String, BSONValue)](op: ((String, BSONValue), B) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  84. def reversed: List[(String, BSONValue)]

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

    Definition Classes
    Iterator
  86. def scanLeft[B](z: B)(op: (B, (String, BSONValue)) ⇒ B): Iterator[B]

    Definition Classes
    Iterator
  87. def scanRight[B](z: B)(op: ((String, BSONValue), B) ⇒ B): Iterator[B]

    Definition Classes
    Iterator
  88. def seq: Iterator[(String, BSONValue)]

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  90. def slice(from: Int, until: Int): Iterator[(String, BSONValue)]

    Definition Classes
    Iterator
  91. def sliding[B >: (String, BSONValue)](size: Int, step: Int): GroupedIterator[B]

    Definition Classes
    Iterator
  92. def span(p: ((String, BSONValue)) ⇒ Boolean): (Iterator[(String, BSONValue)], Iterator[(String, BSONValue)])

    Definition Classes
    Iterator
  93. val startIndex: Int

  94. def sum[B >: (String, BSONValue)](implicit num: Numeric[B]): B

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

    Definition Classes
    AnyRef
  96. def take(n: Int): Iterator[(String, BSONValue)]

    Definition Classes
    Iterator
  97. def takeWhile(p: ((String, BSONValue)) ⇒ Boolean): Iterator[(String, BSONValue)]

    Definition Classes
    Iterator
  98. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, (String, BSONValue), Col[(String, BSONValue)]]): Col[(String, BSONValue)]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  99. def toArray[B >: (String, BSONValue)](implicit arg0: ClassTag[B]): Array[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  100. def toBuffer[B >: (String, BSONValue)]: Buffer[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  101. def toIndexedSeq: IndexedSeq[(String, BSONValue)]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  102. def toIterable: Iterable[(String, BSONValue)]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  103. def toIterator: Iterator[(String, BSONValue)]

    Definition Classes
    Iterator → GenTraversableOnce
  104. def toList: List[(String, BSONValue)]

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  106. def toSeq: Seq[(String, BSONValue)]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  107. def toSet[B >: (String, BSONValue)]: Set[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  108. def toStream: Stream[(String, BSONValue)]

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

    Definition Classes
    Iterator → AnyRef → Any
  110. def toTraversable: Traversable[(String, BSONValue)]

    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  111. def toVector: Vector[(String, BSONValue)]

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  115. def withFilter(p: ((String, BSONValue)) ⇒ Boolean): Iterator[(String, BSONValue)]

    Definition Classes
    Iterator
  116. def zip[B](that: Iterator[B]): Iterator[((String, BSONValue), B)]

    Definition Classes
    Iterator
  117. def zipAll[B, A1 >: (String, BSONValue), B1 >: B](that: Iterator[B], thisElem: A1, thatElem: B1): Iterator[(A1, B1)]

    Definition Classes
    Iterator
  118. def zipWithIndex: Iterator[((String, BSONValue), Int)]

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

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

Shadowed Implicit Value Members

  1. def filter(p: ((String, BSONValue)) ⇒ Boolean): TraversableOnce[(String, BSONValue)]

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

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

    Implicit information
    This member is added by an implicit conversion from BSONIterator to MonadOps[(String, BSONValue)] 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[(String, BSONValue)]).map(f)
    Definition Classes
    MonadOps
  4. val self: Any

    Implicit information
    This member is added by an implicit conversion from BSONIterator to StringAdd performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (bSONIterator: StringAdd).self
    Definition Classes
    StringAdd
  5. val self: Any

    Implicit information
    This member is added by an implicit conversion from BSONIterator to StringFormat performed by method any2stringfmt in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (bSONIterator: StringFormat).self
    Definition Classes
    StringFormat
  6. def withFilter(p: ((String, BSONValue)) ⇒ Boolean): Iterator[(String, BSONValue)]

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

Deprecated Value Members

  1. def /:\[A1 >: (String, BSONValue)](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) use fold instead

  2. def x: BSONIterator

    Implicit information
    This member is added by an implicit conversion from BSONIterator to ArrowAssoc[BSONIterator] performed by method any2ArrowAssoc in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (bSONIterator: ArrowAssoc[BSONIterator]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  3. def x: BSONIterator

    Implicit information
    This member is added by an implicit conversion from BSONIterator to Ensuring[BSONIterator] performed by method any2Ensuring in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (bSONIterator: Ensuring[BSONIterator]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from Iterator[(String, BSONValue)]

Inherited from TraversableOnce[(String, BSONValue)]

Inherited from GenTraversableOnce[(String, BSONValue)]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion MonadOps from BSONIterator to MonadOps[(String, BSONValue)]

Inherited by implicit conversion any2stringadd from BSONIterator to StringAdd

Inherited by implicit conversion any2stringfmt from BSONIterator to StringFormat

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

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

Inherited by implicit conversion alternateImplicit from BSONIterator to ForceImplicitAmbiguity

Ungrouped