Packages

trait Iterable[+A] extends Object

ECMAScript 6 JavaScript Iterable.

Annotations
@JSType()
Linear Supertypes
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 = js.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): b.type
    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): b.type
    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): b.type
    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
    Annotations
    @deprecatedOverriding()
  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
    Annotations
    @deprecatedOverriding()
  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. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  43. def groupBy[K](f: (A) => K): collection.immutable.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
  44. def groupMap[K, B](key: (A) => K)(f: (A) => B): collection.immutable.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
  45. def groupMapReduce[K, B](key: (A) => K)(f: (A) => B)(reduce: (B, B) => B): collection.immutable.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
  46. 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
  47. 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
  48. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  49. 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
  50. 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
  51. 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
  52. 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
  53. 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
  54. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  55. 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
  56. 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
  57. 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
  58. 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()
  59. 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
  60. 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
  61. 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
  62. 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
  63. 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
  64. 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
  65. def maxBy[B](f: (A) => B)(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 maxByOption[B](f: (A) => B)(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 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
  68. 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
  69. def minBy[B](f: (A) => B)(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 minByOption[B](f: (A) => B)(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. 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
  72. 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()
  73. 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()
  74. 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
  75. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  76. 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()
  77. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  78. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  79. 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
  80. 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
  81. 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
  82. 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
  83. 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
  84. 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
  85. 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
  86. 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
  87. 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
  88. 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
  89. 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
  90. 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
  91. 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
  92. 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
  93. 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
  94. 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
  95. 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()
  96. 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
  97. 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
  98. 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
  99. 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
  100. 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
  101. 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
  102. 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
  103. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  104. 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
  105. 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
  106. 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
  107. 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
  108. 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
  109. 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
  110. 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
  111. 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
  112. 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()
  113. 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
  114. 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
  115. def toLocaleString(): String
    Definition Classes
    Object
  116. def toMap[K, V](implicit ev: <:<[A, (K, V)]): collection.immutable.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
  117. 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
  118. def toSet[B >: A]: collection.immutable.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
  119. def toString(): String
    Definition Classes
    AnyRef → Any
  120. 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
  121. 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
  122. 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
  123. 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
  124. def valueOf(): scala.Any
    Definition Classes
    Object
  125. 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
  126. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  127. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  128. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  129. 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
  130. 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
  131. 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
  132. 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) For sequential collections, prefer foldLeft(z)(seqop). For parallel collections, use ParIterableLike#aggregate.

  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() @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 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
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  8. 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)

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

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

    (Since version 2.13.7) toIterable is internal and will be made protected; its name is similar to toList or toSeq, but it doesn't copy non-immutable collections

  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) toTraversable is internal and will be made protected; its name is similar to toList or toSeq, but it doesn't copy non-immutable collections

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

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