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

Abstract Value Members

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

    JavaScript Iterator for this Iterable.

    JavaScript Iterator for this Iterable.

    Annotations
    @JSName(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[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws(classOf[java.lang.CloneNotSupportedException])
  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 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
  24. 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
  25. 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
  26. 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
  27. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. def equals(arg0: scala.Any): Boolean
    Definition Classes
    AnyRef → Any
  29. 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
  30. 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
  31. 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
  32. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  33. 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
  34. 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
  35. 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
  36. 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
  37. 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
  38. 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
  39. 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
  40. 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()
  41. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  42. 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
  43. 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
  44. 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
  45. 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
  46. 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
  47. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  48. 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
  49. 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
  50. 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
  51. 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
  52. 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
  53. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  54. 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
  55. 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
  56. def iterableFactory: IterableFactory[[X]collection.Iterable[X]]
    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
  57. 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()
  58. 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
    IterableOnceOps
  59. 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
  60. 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
  61. 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
  62. 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
  63. 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
  64. 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
  65. 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
  66. 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
  67. 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
  68. 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
  69. 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
  70. 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
  71. 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()
  72. 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()
  73. 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
  74. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  75. 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")
  76. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  77. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  78. 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
  79. def partitionWith[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
  80. 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
  81. 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
  82. 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
  83. 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
  84. 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
  85. 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
  86. 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
  87. 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
  88. 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
  89. 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
  90. 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
  91. 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
  92. 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
  93. 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()
  94. 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
  95. 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
  96. 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
  97. 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
  98. 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
  99. 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
  100. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  101. 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
  102. 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
  103. 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
  104. 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
  105. 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
  106. 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
  107. 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
  108. 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()
  109. 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
  110. 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
  111. 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
  112. def toLocaleString(): String
    Definition Classes
    Object
  113. 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
  114. 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
  115. 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
  116. def toString(): String
    Definition Classes
    AnyRef → Any
  117. 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
  118. 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
  119. 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
  120. 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
  121. def valueOf(): scala.Any
    Definition Classes
    Object
  122. 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
  123. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  124. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  125. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws(classOf[java.lang.InterruptedException])
  126. 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
  127. 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
  128. 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
  129. 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
  130. 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

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 xs ++ ys instead of ys ++: xs for xs 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[[X]collection.Iterable[X]]
    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 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
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use foldLeft instead

  8. final 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 @inline()
    Deprecated

    (Since version 2.13.0) Use .knownSize >=0 instead of .hasDefiniteSize

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

  10. 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
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use scanLeft instead

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

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

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

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

  15. final 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 @inline()
    Deprecated

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

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