Packages

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

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BSONIterator
  2. Iterator
  3. IterableOnceOps
  4. IterableOnce
  5. AnyRef
  6. 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

Type Members

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

Abstract Value Members

  1. abstract val buffer: ReadableBuffer

Concrete Value Members

  1. final def ++[B >: (String, BSONValue)](xs: => IterableOnce[B]): Iterator[B]
    Definition Classes
    Iterator
    Annotations
    @inline()
  2. final def addString(b: StringBuilder): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  3. final def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  4. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    IterableOnceOps
  5. def buffered: BufferedIterator[(String, BSONValue)]
    Definition Classes
    Iterator
  6. def collect[B](pf: PartialFunction[(String, BSONValue), B]): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  7. def collectFirst[B](pf: PartialFunction[(String, BSONValue), B]): Option[B]
    Definition Classes
    IterableOnceOps
  8. def concat[B >: (String, BSONValue)](xs: => IterableOnce[B]): Iterator[B]
    Definition Classes
    Iterator
  9. def contains(elem: Any): Boolean
    Definition Classes
    Iterator
  10. def copyToArray[B >: (String, BSONValue)](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  11. def copyToArray[B >: (String, BSONValue)](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
  12. def copyToArray[B >: (String, BSONValue)](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
  13. def corresponds[B](that: IterableOnce[B])(p: ((String, BSONValue), B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  14. def count(p: ((String, BSONValue)) => Boolean): Int
    Definition Classes
    IterableOnceOps
  15. def distinct: Iterator[(String, BSONValue)]
    Definition Classes
    Iterator
  16. def distinctBy[B](f: ((String, BSONValue)) => B): Iterator[(String, BSONValue)]
    Definition Classes
    Iterator
  17. val documentSize: Int
  18. def drop(n: Int): Iterator[(String, BSONValue)]
    Definition Classes
    Iterator → IterableOnceOps
  19. def dropWhile(p: ((String, BSONValue)) => Boolean): Iterator[(String, BSONValue)]
    Definition Classes
    Iterator → IterableOnceOps
  20. def duplicate: (Iterator[(String, BSONValue)], Iterator[(String, BSONValue)])
    Definition Classes
    Iterator
  21. def exists(p: ((String, BSONValue)) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  22. def filter(p: ((String, BSONValue)) => Boolean): Iterator[(String, BSONValue)]
    Definition Classes
    Iterator → IterableOnceOps
  23. def filterNot(p: ((String, BSONValue)) => Boolean): Iterator[(String, BSONValue)]
    Definition Classes
    Iterator → IterableOnceOps
  24. def find(p: ((String, BSONValue)) => Boolean): Option[(String, BSONValue)]
    Definition Classes
    IterableOnceOps
  25. def flatMap[B](f: ((String, BSONValue)) => IterableOnce[B]): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  26. def flatten[B](implicit ev: ((String, BSONValue)) => IterableOnce[B]): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  27. def fold[A1 >: (String, BSONValue)](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  28. def foldLeft[B](z: B)(op: (B, (String, BSONValue)) => B): B
    Definition Classes
    IterableOnceOps
  29. def foldRight[B](z: B)(op: ((String, BSONValue), B) => B): B
    Definition Classes
    IterableOnceOps
  30. def forall(p: ((String, BSONValue)) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  31. def foreach[U](f: ((String, BSONValue)) => U): Unit
    Definition Classes
    IterableOnceOps
  32. def grouped[B >: (String, BSONValue)](size: Int): GroupedIterator[B]
    Definition Classes
    Iterator
  33. def hasNext: Boolean
    Definition Classes
    BSONIterator → Iterator
  34. def indexOf[B >: (String, BSONValue)](elem: B, from: Int): Int
    Definition Classes
    Iterator
  35. def indexOf[B >: (String, BSONValue)](elem: B): Int
    Definition Classes
    Iterator
  36. def indexWhere(p: ((String, BSONValue)) => Boolean, from: Int): Int
    Definition Classes
    Iterator
  37. def isEmpty: Boolean
    Definition Classes
    Iterator → IterableOnceOps
    Annotations
    @deprecatedOverriding("isEmpty is defined as !hasNext; override hasNext instead", "2.13.0")
  38. def isTraversableAgain: Boolean
    Definition Classes
    IterableOnceOps
  39. final def iterator: Iterator[(String, BSONValue)]
    Definition Classes
    Iterator → IterableOnce
    Annotations
    @inline()
  40. def knownSize: Int
    Definition Classes
    IterableOnce
  41. final def length: Int
    Definition Classes
    Iterator
    Annotations
    @inline()
  42. def map[B](f: ((String, BSONValue)) => B): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  43. def mapped: Map[String, BSONElement]
  44. def max[B >: (String, BSONValue)](implicit ord: Ordering[B]): (String, BSONValue)
    Definition Classes
    IterableOnceOps
  45. def maxBy[B](f: ((String, BSONValue)) => B)(implicit cmp: Ordering[B]): (String, BSONValue)
    Definition Classes
    IterableOnceOps
  46. def maxByOption[B](f: ((String, BSONValue)) => B)(implicit cmp: Ordering[B]): Option[(String, BSONValue)]
    Definition Classes
    IterableOnceOps
  47. def maxOption[B >: (String, BSONValue)](implicit ord: Ordering[B]): Option[(String, BSONValue)]
    Definition Classes
    IterableOnceOps
  48. def min[B >: (String, BSONValue)](implicit ord: Ordering[B]): (String, BSONValue)
    Definition Classes
    IterableOnceOps
  49. def minBy[B](f: ((String, BSONValue)) => B)(implicit cmp: Ordering[B]): (String, BSONValue)
    Definition Classes
    IterableOnceOps
  50. def minByOption[B](f: ((String, BSONValue)) => B)(implicit cmp: Ordering[B]): Option[(String, BSONValue)]
    Definition Classes
    IterableOnceOps
  51. def minOption[B >: (String, BSONValue)](implicit ord: Ordering[B]): Option[(String, BSONValue)]
    Definition Classes
    IterableOnceOps
  52. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  53. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  54. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  55. def next(): (String, BSONValue)
    Definition Classes
    BSONIterator → Iterator
    Annotations
    @SuppressWarnings()
  56. def nextOption(): Option[(String, BSONValue)]
    Definition Classes
    Iterator
  57. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  58. def padTo[B >: (String, BSONValue)](len: Int, elem: B): Iterator[B]
    Definition Classes
    Iterator
  59. def partition(p: ((String, BSONValue)) => Boolean): (Iterator[(String, BSONValue)], Iterator[(String, BSONValue)])
    Definition Classes
    Iterator
  60. def patch[B >: (String, BSONValue)](from: Int, patchElems: Iterator[B], replaced: Int): Iterator[B]
    Definition Classes
    Iterator
  61. def product[B >: (String, BSONValue)](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  62. def reduce[B >: (String, BSONValue)](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  63. def reduceLeft[B >: (String, BSONValue)](op: (B, (String, BSONValue)) => B): B
    Definition Classes
    IterableOnceOps
  64. def reduceLeftOption[B >: (String, BSONValue)](op: (B, (String, BSONValue)) => B): Option[B]
    Definition Classes
    IterableOnceOps
  65. def reduceOption[B >: (String, BSONValue)](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  66. def reduceRight[B >: (String, BSONValue)](op: ((String, BSONValue), B) => B): B
    Definition Classes
    IterableOnceOps
  67. def reduceRightOption[B >: (String, BSONValue)](op: ((String, BSONValue), B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  68. def sameElements[B >: (String, BSONValue)](that: IterableOnce[B]): Boolean
    Definition Classes
    Iterator
  69. def scanLeft[B](z: B)(op: (B, (String, BSONValue)) => B): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  70. def size: Int
    Definition Classes
    IterableOnceOps
  71. def slice(from: Int, until: Int): Iterator[(String, BSONValue)]
    Definition Classes
    Iterator → IterableOnceOps
  72. def sliding[B >: (String, BSONValue)](size: Int, step: Int): GroupedIterator[B]
    Definition Classes
    Iterator
  73. def span(p: ((String, BSONValue)) => Boolean): (Iterator[(String, BSONValue)], Iterator[(String, BSONValue)])
    Definition Classes
    Iterator → IterableOnceOps
  74. def splitAt(n: Int): (Iterator[(String, BSONValue)], Iterator[(String, BSONValue)])
    Definition Classes
    IterableOnceOps
  75. val startIndex: Int
  76. def stepper[S <: Stepper[_]](implicit shape: StepperShape[(String, BSONValue), S]): S
    Definition Classes
    IterableOnce
  77. def sum[B >: (String, BSONValue)](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  78. def take(n: Int): Iterator[(String, BSONValue)]
    Definition Classes
    Iterator → IterableOnceOps
  79. def takeWhile(p: ((String, BSONValue)) => Boolean): Iterator[(String, BSONValue)]
    Definition Classes
    Iterator → IterableOnceOps
  80. def tapEach[U](f: ((String, BSONValue)) => U): Iterator[(String, BSONValue)]
    Definition Classes
    Iterator → IterableOnceOps
  81. def to[C1](factory: Factory[(String, BSONValue), C1]): C1
    Definition Classes
    IterableOnceOps
  82. def toArray[B >: (String, BSONValue)](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  83. final def toBuffer[B >: (String, BSONValue)]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  84. def toIndexedSeq: IndexedSeq[(String, BSONValue)]
    Definition Classes
    IterableOnceOps
  85. def toList: List[(String, BSONValue)]
    Definition Classes
    IterableOnceOps
  86. def toMap[K, V](implicit ev: <:<[(String, BSONValue), (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  87. def toSeq: Seq[(String, BSONValue)]
    Definition Classes
    IterableOnceOps
  88. def toSet[B >: (String, BSONValue)]: Set[B]
    Definition Classes
    IterableOnceOps
  89. def toString(): String
    Definition Classes
    Iterator → AnyRef → Any
  90. def toVector: Vector[(String, BSONValue)]
    Definition Classes
    IterableOnceOps
  91. def withFilter(p: ((String, BSONValue)) => Boolean): Iterator[(String, BSONValue)]
    Definition Classes
    Iterator
  92. def zip[B](that: IterableOnce[B]): Iterator[((String, BSONValue), B)]
    Definition Classes
    Iterator
  93. def zipAll[A1 >: (String, BSONValue), B](that: IterableOnce[B], thisElem: A1, thatElem: B): Iterator[(A1, B)]
    Definition Classes
    Iterator
  94. def zipWithIndex: Iterator[((String, BSONValue), Int)]
    Definition Classes
    Iterator → IterableOnceOps

Deprecated Value Members

  1. def /:[B](z: B)(op: (B, (String, BSONValue)) => B): B
    Implicit
    This member is added by an implicit conversion from BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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:
    (bSONIterator: IterableOnceExtensionMethods[(String, BSONValue)])./:(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, (String, BSONValue)) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  3. def :\[B](z: B)(op: ((String, BSONValue), B) => B): B
    Implicit
    This member is added by an implicit conversion from BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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:
    (bSONIterator: IterableOnceExtensionMethods[(String, BSONValue)]).:\(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: ((String, BSONValue), 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, (String, BSONValue)) => B, combop: (B, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

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

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

  7. def copyToBuffer(dest: Buffer[(String, BSONValue)]): Unit
    Implicit
    This member is added by an implicit conversion from BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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:
    (bSONIterator: IterableOnceExtensionMethods[(String, BSONValue)]).copyToBuffer(dest)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  8. final def copyToBuffer[B >: (String, BSONValue)](dest: Buffer[B]): Unit
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  9. def count(f: ((String, BSONValue)) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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:
    (bSONIterator: IterableOnceExtensionMethods[(String, BSONValue)]).count(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  10. def exists(f: ((String, BSONValue)) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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:
    (bSONIterator: IterableOnceExtensionMethods[(String, BSONValue)]).exists(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  11. def filter(f: ((String, BSONValue)) => Boolean): Iterator[(String, BSONValue)]
    Implicit
    This member is added by an implicit conversion from BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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:
    (bSONIterator: IterableOnceExtensionMethods[(String, BSONValue)]).filter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

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

    (Since version 2.13.0) Use .iterator.find instead

  13. def flatMap[B](f: ((String, BSONValue)) => IterableOnce[B]): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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:
    (bSONIterator: IterableOnceExtensionMethods[(String, BSONValue)]).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 BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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:
    (bSONIterator: IterableOnceExtensionMethods[(String, BSONValue)]).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, (String, BSONValue)) => B): B
    Implicit
    This member is added by an implicit conversion from BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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:
    (bSONIterator: IterableOnceExtensionMethods[(String, BSONValue)]).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: ((String, BSONValue), B) => B): B
    Implicit
    This member is added by an implicit conversion from BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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:
    (bSONIterator: IterableOnceExtensionMethods[(String, BSONValue)]).foldRight(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

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

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

  18. def foreach[U](f: ((String, BSONValue)) => U): Unit
    Implicit
    This member is added by an implicit conversion from BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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:
    (bSONIterator: IterableOnceExtensionMethods[(String, BSONValue)]).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 BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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:
    (bSONIterator: IterableOnceExtensionMethods[(String, BSONValue)]).isEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.isEmpty instead

  21. def map[B](f: ((String, BSONValue)) => B): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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:
    (bSONIterator: IterableOnceExtensionMethods[(String, BSONValue)]).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[(String, BSONValue)]): (String, BSONValue)
    Implicit
    This member is added by an implicit conversion from BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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:
    (bSONIterator: IterableOnceExtensionMethods[(String, BSONValue)]).max(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.max instead

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

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

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

    (Since version 2.13.0) Use .iterator.min instead

  25. def minBy[B](f: ((String, BSONValue)) => B)(implicit cmp: Ordering[B]): (String, BSONValue)
    Implicit
    This member is added by an implicit conversion from BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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:
    (bSONIterator: IterableOnceExtensionMethods[(String, BSONValue)]).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 BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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:
    (bSONIterator: IterableOnceExtensionMethods[(String, BSONValue)]).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 BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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:
    (bSONIterator: IterableOnceExtensionMethods[(String, BSONValue)]).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 BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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:
    (bSONIterator: IterableOnceExtensionMethods[(String, BSONValue)]).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 BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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:
    (bSONIterator: IterableOnceExtensionMethods[(String, BSONValue)]).nonEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.nonEmpty instead

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

    (Since version 2.13.0) Use .iterator.product instead

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

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

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

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

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

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

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

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

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

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

  36. def reduceRightOption(f: ((String, BSONValue), (String, BSONValue)) => (String, BSONValue)): Option[(String, BSONValue)]
    Implicit
    This member is added by an implicit conversion from BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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:
    (bSONIterator: IterableOnceExtensionMethods[(String, BSONValue)]).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 BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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:
    (bSONIterator: IterableOnceExtensionMethods[(String, BSONValue)]).sameElements(that)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sameElements instead

  38. def scanRight[B](z: B)(op: ((String, BSONValue), B) => B): Iterator[B]
    Definition Classes
    Iterator
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Call scanRight on an Iterable instead.

  39. def seq: BSONIterator.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 BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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:
    (bSONIterator: IterableOnceExtensionMethods[(String, BSONValue)]).size
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.size instead

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

    (Since version 2.13.0) Use .iterator.sum instead

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

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

  45. def toIndexedSeq: IndexedSeq[(String, BSONValue)]
    Implicit
    This member is added by an implicit conversion from BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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:
    (bSONIterator: IterableOnceExtensionMethods[(String, BSONValue)]).toIndexedSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toIndexedSeq instead

  46. final def toIterable: Iterable[(String, BSONValue)]
    Implicit
    This member is added by an implicit conversion from BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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[(String, BSONValue)]
    Implicit
    This member is added by an implicit conversion from BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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:
    (bSONIterator: IterableOnceExtensionMethods[(String, BSONValue)]).toIterator
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead

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

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

  49. def toList: List[(String, BSONValue)]
    Implicit
    This member is added by an implicit conversion from BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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:
    (bSONIterator: IterableOnceExtensionMethods[(String, BSONValue)]).toList
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

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

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

  51. def toSeq: Seq[(String, BSONValue)]
    Implicit
    This member is added by an implicit conversion from BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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:
    (bSONIterator: IterableOnceExtensionMethods[(String, BSONValue)]).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 BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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:
    (bSONIterator: IterableOnceExtensionMethods[(String, BSONValue)]).toSet
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

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

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

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

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

  55. final def toTraversable: Traversable[(String, BSONValue)]
    Implicit
    This member is added by an implicit conversion from BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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[(String, BSONValue)]
    Implicit
    This member is added by an implicit conversion from BSONIterator toIterableOnceExtensionMethods[(String, BSONValue)] 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:
    (bSONIterator: IterableOnceExtensionMethods[(String, BSONValue)]).toVector
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

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

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