Packages

trait Iterable[+A] extends Object

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Iterable
  2. Object
  3. Any
  4. AnyRef
  5. Any
Implicitly
  1. by iterableOps
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def jsIterator(): Iterator[A]

    JavaScript Iterator for this Iterable.

    JavaScript Iterator for this Iterable.

    Annotations
    @JSName(symbol = Symbol.iterator)

Concrete Value Members

  1. final def !=(arg0: scala.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 Iterable[A] toany2stringadd[Iterable[A]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. final def ++[B >: A](suffix: collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
    Annotations
    @inline()
  5. def ->[B](y: B): (Iterable[A], B)
    Implicit
    This member is added by an implicit conversion from Iterable[A] toArrowAssoc[Iterable[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: scala.Any): Boolean
    Definition Classes
    AnyRef → Any
  7. final def addString(b: collection.mutable.StringBuilder): collection.mutable.StringBuilder
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  8. final def addString(b: collection.mutable.StringBuilder, sep: String): collection.mutable.StringBuilder
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  9. def addString(b: collection.mutable.StringBuilder, start: String, sep: String, end: String): collection.mutable.StringBuilder
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  12. def collect[B](pf: PartialFunction[A, B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  13. def collectFirst[B](pf: PartialFunction[A, B]): Option[B]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  14. def concat[B >: A](suffix: collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  15. def copyToArray[B >: A](xs: scala.Array[B], start: Int, len: Int): Int
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  16. def copyToArray[B >: A](xs: scala.Array[B], start: Int): Int
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  17. def copyToArray[B >: A](xs: scala.Array[B]): Int
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  18. def corresponds[B](that: collection.IterableOnce[B])(p: (A, B) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  19. def count(p: (A) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  20. def drop(n: Int): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  21. def dropRight(n: Int): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  22. def dropWhile(p: (A) => Boolean): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  23. def empty: collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableFactoryDefaults → IterableOps
  24. def ensuring(cond: (Iterable[A]) => Boolean, msg: => scala.Any): Iterable[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toEnsuring[Iterable[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  25. def ensuring(cond: (Iterable[A]) => Boolean): Iterable[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toEnsuring[Iterable[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  26. def ensuring(cond: Boolean, msg: => scala.Any): Iterable[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toEnsuring[Iterable[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  27. def ensuring(cond: Boolean): Iterable[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toEnsuring[Iterable[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  28. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  30. def exists(p: (A) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  31. def filter(pred: (A) => Boolean): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  32. def filterNot(pred: (A) => Boolean): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  33. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  34. def find(p: (A) => Boolean): Option[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  35. def flatMap[B](f: (A) => collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  36. def flatten[B](implicit asIterable: (A) => collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  37. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  38. def foldLeft[B](z: B)(op: (B, A) => B): B
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  39. def foldRight[B](z: B)(op: (A, B) => B): B
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  40. def forall(p: (A) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  41. def foreach[U](f: (A) => U): Unit
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  42. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Iterable[A] toStringFormat[Iterable[A]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  43. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  44. def groupBy[K](f: (A) => K): Map[K, collection.Iterable[A]]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  45. def groupMap[K, B](key: (A) => K)(f: (A) => B): Map[K, collection.Iterable[B]]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  46. def groupMapReduce[K, B](key: (A) => K)(f: (A) => B)(reduce: (B, B) => B): Map[K, B]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  47. def grouped(size: Int): collection.Iterator[collection.Iterable[A]]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  48. def hasOwnProperty(v: String): Boolean

    Tests whether this object has the specified property as a direct property.

    Tests whether this object has the specified property as a direct property.

    Unlike js.Object.hasProperty, this method does not check down the object's prototype chain.

    MDN

    Definition Classes
    Object
  49. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  50. def head: A
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  51. def headOption: Option[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  52. def init: collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  53. def inits: collection.Iterator[collection.Iterable[A]]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  54. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  55. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  56. def isPrototypeOf(v: Object): Boolean

    Tests whether this object is in the prototype chain of another object.

    Tests whether this object is in the prototype chain of another object.

    Definition Classes
    Object
  57. def isTraversableAgain: Boolean
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  58. def iterableFactory: IterableFactory[collection.Iterable]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    Iterable → IterableOps
  59. def iterator: collection.Iterator[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnce
    Annotations
    @inline()
  60. def knownSize: Int
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnce
  61. def last: A
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  62. def lastOption: Option[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  63. def lazyZip[B]: ([B](that: Iterable[B]): scala.collection.LazyZip2[A,B,_1.type]) forSome {val _1: IterableOps[A]}
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    Iterable
  64. def map[B](f: (A) => B): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  65. def max[B >: A](implicit ord: math.Ordering[B]): A
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  66. def maxBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  67. def maxByOption[B](f: (A) => B)(implicit cmp: math.Ordering[B]): Option[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  68. def maxOption[B >: A](implicit ord: math.Ordering[B]): Option[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  69. def min[B >: A](implicit ord: math.Ordering[B]): A
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  70. def minBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  71. def minByOption[B](f: (A) => B)(implicit cmp: math.Ordering[B]): Option[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  72. def minOption[B >: A](implicit ord: math.Ordering[B]): Option[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  73. final def mkString: String
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  74. final def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  75. final def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  76. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  77. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  78. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  79. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  80. def partition(p: (A) => Boolean): (collection.Iterable[A], collection.Iterable[A])
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  81. def partitionMap[A1, A2](f: (A) => Either[A1, A2]): (collection.Iterable[A1], collection.Iterable[A2])
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  82. def product[B >: A](implicit num: math.Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  83. def propertyIsEnumerable(v: String): Boolean

    Tests whether the specified property in an object can be enumerated by a call to js.Object.properties, with the exception of properties inherited through the prototype chain.

    Tests whether the specified property in an object can be enumerated by a call to js.Object.properties, with the exception of properties inherited through the prototype chain. If the object does not have the specified property, this method returns false.

    MDN

    Definition Classes
    Object
  84. def reduce[B >: A](op: (B, B) => B): B
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  85. def reduceLeft[B >: A](op: (B, A) => B): B
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  86. def reduceLeftOption[B >: A](op: (B, A) => B): Option[B]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  87. def reduceOption[B >: A](op: (B, B) => B): Option[B]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  88. def reduceRight[B >: A](op: (A, B) => B): B
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  89. def reduceRightOption[B >: A](op: (A, B) => B): Option[B]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  90. def scan[B >: A](z: B)(op: (B, B) => B): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  91. def scanLeft[B](z: B)(op: (B, A) => B): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  92. def scanRight[B](z: B)(op: (A, B) => B): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  93. def size: Int
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  94. def sizeCompare(that: collection.Iterable[_]): Int
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  95. def sizeCompare(otherSize: Int): Int
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  96. final def sizeIs: SizeCompareOps
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
    Annotations
    @inline()
  97. def slice(from: Int, until: Int): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  98. def sliding(size: Int, step: Int): collection.Iterator[collection.Iterable[A]]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  99. def sliding(size: Int): collection.Iterator[collection.Iterable[A]]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  100. def span(p: (A) => Boolean): (collection.Iterable[A], collection.Iterable[A])
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  101. def splitAt(n: Int): (collection.Iterable[A], collection.Iterable[A])
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  102. def stepper[S <: Stepper[_]](implicit shape: StepperShape[A, S]): S
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnce
  103. def sum[B >: A](implicit num: math.Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  104. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  105. def tail: collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  106. def tails: collection.Iterator[collection.Iterable[A]]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  107. def take(n: Int): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  108. def takeRight(n: Int): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  109. def takeWhile(p: (A) => Boolean): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  110. def tapEach[U](f: (A) => U): collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps
  111. def to[C1](factory: Factory[A, C1]): C1
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  112. def toArray[B >: A](implicit arg0: ClassTag[B]): scala.Array[B]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  113. final def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  114. def toIndexedSeq: collection.immutable.IndexedSeq[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  115. final def toIterable: IterableOps[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    Iterable → IterableOps
  116. def toList: collection.immutable.List[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  117. def toLocaleString(): String
    Definition Classes
    Object
  118. def toMap[K, V](implicit ev: <:<[A, (K, V)]): Map[K, V]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  119. def toSeq: collection.immutable.Seq[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  120. def toSet[B >: A]: Set[B]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  121. def toString(): String
    Definition Classes
    AnyRef → Any
  122. def toVector: collection.immutable.Vector[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  123. def transpose[B](implicit asIterable: (A) => collection.Iterable[B]): collection.Iterable[collection.Iterable[B]]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  124. def unzip[A1, A2](implicit asPair: (A) => (A1, A2)): (collection.Iterable[A1], collection.Iterable[A2])
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  125. def unzip3[A1, A2, A3](implicit asTriple: (A) => (A1, A2, A3)): (collection.Iterable[A1], collection.Iterable[A2], collection.Iterable[A3])
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  126. def valueOf(): scala.Any
    Definition Classes
    Object
  127. def view: View[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  128. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  129. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  130. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  131. def withFilter(p: (A) => Boolean): WithFilter[A, collection.Iterable]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  132. def zip[B](that: collection.IterableOnce[B]): collection.Iterable[(A, B)]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  133. def zipAll[A1 >: A, B](that: collection.Iterable[B], thisElem: A1, thatElem: B): collection.Iterable[(A1, B)]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  134. def zipWithIndex: collection.Iterable[(A, Int)]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps → IterableOnceOps

Shadowed Implicit Value Members

  1. def toString(): String
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    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:
    (iterable: IterableOps[A]).toString()
    Definition Classes
    Iterable → AnyRef → Any

Deprecated Value Members

  1. def ++:[B >: A](that: collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ instead of ++: for collections of type Iterable

  2. final def /:[B](z: B)(op: (B, A) => B): B
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  3. final def :\[B](z: B)(op: (A, B) => B): B
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  4. def aggregate[B](z: => B)(seqop: (B, A) => B, combop: (B, B) => B): B
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

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

  5. def companion: IterableFactory[collection.Iterable]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding("Use iterableFactory instead", "2.13.0") @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  6. final def copyToBuffer[B >: A](dest: Buffer[B]): Unit
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  7. def hasDefiniteSize: Boolean
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)

  8. final def repr: collection.Iterable[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside

  9. def seq: IterableOps[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterable.seq always returns the iterable itself

  10. final def toIterator: collection.Iterator[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  11. final def toStream: collection.immutable.Stream[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  12. final def toTraversable: collection.Traversable[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  13. def view(from: Int, until: Int): View[A]
    Implicit
    This member is added by an implicit conversion from Iterable[A] toIterableOps[A] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)

  14. def [B](y: B): (Iterable[A], B)
    Implicit
    This member is added by an implicit conversion from Iterable[A] toArrowAssoc[Iterable[A]] 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 Object

Inherited from Any

Inherited from AnyRef

Inherited from scala.Any

Inherited by implicit conversion iterableOps fromIterable[A] to IterableOps[A]

Inherited by implicit conversion any2stringadd fromIterable[A] to any2stringadd[Iterable[A]]

Inherited by implicit conversion StringFormat fromIterable[A] to StringFormat[Iterable[A]]

Inherited by implicit conversion Ensuring fromIterable[A] to Ensuring[Iterable[A]]

Inherited by implicit conversion ArrowAssoc fromIterable[A] to ArrowAssoc[Iterable[A]]

Ungrouped