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 !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from BSONIterator toany2stringadd[BSONIterator] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. final def ++[B >: (String, BSONValue)](xs: => IterableOnce[B]): Iterator[B]
    Definition Classes
    Iterator
    Annotations
    @inline()
  5. def ->[B](y: B): (BSONIterator, B)
    Implicit
    This member is added by an implicit conversion from BSONIterator toArrowAssoc[BSONIterator] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. final def addString(b: StringBuilder): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  8. final def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  9. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    IterableOnceOps
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. def buffered: BufferedIterator[(String, BSONValue)]
    Definition Classes
    Iterator
  12. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  13. def collect[B](pf: PartialFunction[(String, BSONValue), B]): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  14. def collectFirst[B](pf: PartialFunction[(String, BSONValue), B]): Option[B]
    Definition Classes
    IterableOnceOps
  15. def concat[B >: (String, BSONValue)](xs: => IterableOnce[B]): Iterator[B]
    Definition Classes
    Iterator
  16. def contains(elem: Any): Boolean
    Definition Classes
    Iterator
  17. def copyToArray[B >: (String, BSONValue)](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  18. def copyToArray[B >: (String, BSONValue)](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
  19. def copyToArray[B >: (String, BSONValue)](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
  20. def corresponds[B](that: IterableOnce[B])(p: ((String, BSONValue), B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  21. def count(p: ((String, BSONValue)) => Boolean): Int
    Definition Classes
    IterableOnceOps
  22. def distinct: Iterator[(String, BSONValue)]
    Definition Classes
    Iterator
  23. def distinctBy[B](f: ((String, BSONValue)) => B): Iterator[(String, BSONValue)]
    Definition Classes
    Iterator
  24. val documentSize: Int
  25. def drop(n: Int): Iterator[(String, BSONValue)]
    Definition Classes
    Iterator → IterableOnceOps
  26. def dropWhile(p: ((String, BSONValue)) => Boolean): Iterator[(String, BSONValue)]
    Definition Classes
    Iterator → IterableOnceOps
  27. def duplicate: (Iterator[(String, BSONValue)], Iterator[(String, BSONValue)])
    Definition Classes
    Iterator
  28. def ensuring(cond: (BSONIterator) => Boolean, msg: => Any): BSONIterator
    Implicit
    This member is added by an implicit conversion from BSONIterator toEnsuring[BSONIterator] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  29. def ensuring(cond: (BSONIterator) => Boolean): BSONIterator
    Implicit
    This member is added by an implicit conversion from BSONIterator toEnsuring[BSONIterator] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  30. def ensuring(cond: Boolean, msg: => Any): BSONIterator
    Implicit
    This member is added by an implicit conversion from BSONIterator toEnsuring[BSONIterator] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  31. def ensuring(cond: Boolean): BSONIterator
    Implicit
    This member is added by an implicit conversion from BSONIterator toEnsuring[BSONIterator] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  32. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  33. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  34. def exists(p: ((String, BSONValue)) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  35. def filter(p: ((String, BSONValue)) => Boolean): Iterator[(String, BSONValue)]
    Definition Classes
    Iterator → IterableOnceOps
  36. def filterNot(p: ((String, BSONValue)) => Boolean): Iterator[(String, BSONValue)]
    Definition Classes
    Iterator → IterableOnceOps
  37. def find(p: ((String, BSONValue)) => Boolean): Option[(String, BSONValue)]
    Definition Classes
    IterableOnceOps
  38. def flatMap[B](f: ((String, BSONValue)) => IterableOnce[B]): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  39. def flatten[B](implicit ev: ((String, BSONValue)) => IterableOnce[B]): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  40. def fold[A1 >: (String, BSONValue)](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  41. def foldLeft[B](z: B)(op: (B, (String, BSONValue)) => B): B
    Definition Classes
    IterableOnceOps
  42. def foldRight[B](z: B)(op: ((String, BSONValue), B) => B): B
    Definition Classes
    IterableOnceOps
  43. def forall(p: ((String, BSONValue)) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  44. def foreach[U](f: ((String, BSONValue)) => U): Unit
    Definition Classes
    IterableOnceOps
  45. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from BSONIterator toStringFormat[BSONIterator] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  46. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  47. def grouped[B >: (String, BSONValue)](size: Int): GroupedIterator[B]
    Definition Classes
    Iterator
  48. def hasNext: Boolean
    Definition Classes
    BSONIterator → Iterator
  49. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  50. def indexOf[B >: (String, BSONValue)](elem: B, from: Int): Int
    Definition Classes
    Iterator
  51. def indexOf[B >: (String, BSONValue)](elem: B): Int
    Definition Classes
    Iterator
  52. def indexWhere(p: ((String, BSONValue)) => Boolean, from: Int): Int
    Definition Classes
    Iterator
  53. def isEmpty: Boolean
    Definition Classes
    Iterator → IterableOnceOps
    Annotations
    @deprecatedOverriding("isEmpty is defined as !hasNext; override hasNext instead", "2.13.0")
  54. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  55. def isTraversableAgain: Boolean
    Definition Classes
    IterableOnceOps
  56. final def iterator: Iterator[(String, BSONValue)]
    Definition Classes
    Iterator → IterableOnce
    Annotations
    @inline()
  57. def knownSize: Int
    Definition Classes
    IterableOnce
  58. final def length: Int
    Definition Classes
    Iterator
    Annotations
    @inline()
  59. def map[B](f: ((String, BSONValue)) => B): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  60. def mapped: Map[String, BSONElement]
  61. def max[B >: (String, BSONValue)](implicit ord: Ordering[B]): (String, BSONValue)
    Definition Classes
    IterableOnceOps
  62. def maxBy[B](f: ((String, BSONValue)) => B)(implicit cmp: Ordering[B]): (String, BSONValue)
    Definition Classes
    IterableOnceOps
  63. def maxByOption[B](f: ((String, BSONValue)) => B)(implicit cmp: Ordering[B]): Option[(String, BSONValue)]
    Definition Classes
    IterableOnceOps
  64. def maxOption[B >: (String, BSONValue)](implicit ord: Ordering[B]): Option[(String, BSONValue)]
    Definition Classes
    IterableOnceOps
  65. def min[B >: (String, BSONValue)](implicit ord: Ordering[B]): (String, BSONValue)
    Definition Classes
    IterableOnceOps
  66. def minBy[B](f: ((String, BSONValue)) => B)(implicit cmp: Ordering[B]): (String, BSONValue)
    Definition Classes
    IterableOnceOps
  67. def minByOption[B](f: ((String, BSONValue)) => B)(implicit cmp: Ordering[B]): Option[(String, BSONValue)]
    Definition Classes
    IterableOnceOps
  68. def minOption[B >: (String, BSONValue)](implicit ord: Ordering[B]): Option[(String, BSONValue)]
    Definition Classes
    IterableOnceOps
  69. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  70. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  71. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  72. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  73. def next(): (String, BSONValue)
    Definition Classes
    BSONIterator → Iterator
    Annotations
    @SuppressWarnings()
  74. def nextOption(): Option[(String, BSONValue)]
    Definition Classes
    Iterator
  75. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  76. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  77. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  78. def padTo[B >: (String, BSONValue)](len: Int, elem: B): Iterator[B]
    Definition Classes
    Iterator
  79. def partition(p: ((String, BSONValue)) => Boolean): (Iterator[(String, BSONValue)], Iterator[(String, BSONValue)])
    Definition Classes
    Iterator
  80. def patch[B >: (String, BSONValue)](from: Int, patchElems: Iterator[B], replaced: Int): Iterator[B]
    Definition Classes
    Iterator
  81. def product[B >: (String, BSONValue)](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  82. def reduce[B >: (String, BSONValue)](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  83. def reduceLeft[B >: (String, BSONValue)](op: (B, (String, BSONValue)) => B): B
    Definition Classes
    IterableOnceOps
  84. def reduceLeftOption[B >: (String, BSONValue)](op: (B, (String, BSONValue)) => B): Option[B]
    Definition Classes
    IterableOnceOps
  85. def reduceOption[B >: (String, BSONValue)](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  86. def reduceRight[B >: (String, BSONValue)](op: ((String, BSONValue), B) => B): B
    Definition Classes
    IterableOnceOps
  87. def reduceRightOption[B >: (String, BSONValue)](op: ((String, BSONValue), B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  88. def reversed: Iterable[(String, BSONValue)]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  89. def sameElements[B >: (String, BSONValue)](that: IterableOnce[B]): Boolean
    Definition Classes
    Iterator
  90. def scanLeft[B](z: B)(op: (B, (String, BSONValue)) => B): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  91. def size: Int
    Definition Classes
    IterableOnceOps
  92. def slice(from: Int, until: Int): Iterator[(String, BSONValue)]
    Definition Classes
    Iterator → IterableOnceOps
  93. def sliceIterator(from: Int, until: Int): Iterator[(String, BSONValue)]
    Attributes
    protected
    Definition Classes
    Iterator
  94. def sliding[B >: (String, BSONValue)](size: Int, step: Int): GroupedIterator[B]
    Definition Classes
    Iterator
  95. def span(p: ((String, BSONValue)) => Boolean): (Iterator[(String, BSONValue)], Iterator[(String, BSONValue)])
    Definition Classes
    Iterator → IterableOnceOps
  96. def splitAt(n: Int): (Iterator[(String, BSONValue)], Iterator[(String, BSONValue)])
    Definition Classes
    IterableOnceOps
  97. val startIndex: Int
  98. def stepper[S <: Stepper[_]](implicit shape: StepperShape[(String, BSONValue), S]): S
    Definition Classes
    IterableOnce
  99. def sum[B >: (String, BSONValue)](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  100. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  101. def take(n: Int): Iterator[(String, BSONValue)]
    Definition Classes
    Iterator → IterableOnceOps
  102. def takeWhile(p: ((String, BSONValue)) => Boolean): Iterator[(String, BSONValue)]
    Definition Classes
    Iterator → IterableOnceOps
  103. def tapEach[U](f: ((String, BSONValue)) => U): Iterator[(String, BSONValue)]
    Definition Classes
    Iterator → IterableOnceOps
  104. def to[C1](factory: Factory[(String, BSONValue), C1]): C1
    Definition Classes
    IterableOnceOps
  105. def toArray[B >: (String, BSONValue)](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  106. final def toBuffer[B >: (String, BSONValue)]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  107. def toIndexedSeq: IndexedSeq[(String, BSONValue)]
    Definition Classes
    IterableOnceOps
  108. def toList: List[(String, BSONValue)]
    Definition Classes
    IterableOnceOps
  109. def toMap[K, V](implicit ev: <:<[(String, BSONValue), (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  110. def toSeq: Seq[(String, BSONValue)]
    Definition Classes
    IterableOnceOps
  111. def toSet[B >: (String, BSONValue)]: Set[B]
    Definition Classes
    IterableOnceOps
  112. def toString(): String
    Definition Classes
    Iterator → AnyRef → Any
  113. def toVector: Vector[(String, BSONValue)]
    Definition Classes
    IterableOnceOps
  114. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  115. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  116. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  117. def withFilter(p: ((String, BSONValue)) => Boolean): Iterator[(String, BSONValue)]
    Definition Classes
    Iterator
  118. def zip[B](that: IterableOnce[B]): Iterator[((String, BSONValue), B)]
    Definition Classes
    Iterator
  119. def zipAll[A1 >: (String, BSONValue), B](that: IterableOnce[B], thisElem: A1, thatElem: B): Iterator[(A1, B)]
    Definition Classes
    Iterator
  120. 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 finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  13. 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

  14. 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

  15. 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

  16. 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

  17. 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

  18. 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

  19. 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

  20. 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

  21. 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

  22. 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

  23. 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

  24. 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

  25. 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

  26. 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

  27. 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

  28. 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

  29. 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

  30. 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

  31. 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

  32. 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

  33. 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

  34. 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

  35. 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

  36. 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

  37. 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

  38. 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

  39. 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.

  40. def seq: BSONIterator.this.type
    Definition Classes
    Iterator
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterator.seq always returns the iterator itself

  41. 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

  42. 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

  43. 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

  44. 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

  45. 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

  46. 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

  47. 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

  48. 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

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

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

  50. 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

  51. 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

  52. 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

  53. 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

  54. 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

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

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

  56. 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

  57. 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

  58. 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

  59. def [B](y: B): (BSONIterator, B)
    Implicit
    This member is added by an implicit conversion from BSONIterator toArrowAssoc[BSONIterator] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from Iterator[(String, BSONValue)]

Inherited from IterableOnceOps[(String, BSONValue), Iterator, Iterator[(String, BSONValue)]]

Inherited from IterableOnce[(String, BSONValue)]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion iterableOnceExtensionMethods fromBSONIterator to IterableOnceExtensionMethods[(String, BSONValue)]

Inherited by implicit conversion any2stringadd fromBSONIterator to any2stringadd[BSONIterator]

Inherited by implicit conversion StringFormat fromBSONIterator to StringFormat[BSONIterator]

Inherited by implicit conversion Ensuring fromBSONIterator to Ensuring[BSONIterator]

Inherited by implicit conversion ArrowAssoc fromBSONIterator to ArrowAssoc[BSONIterator]

Ungrouped