All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scala.scalajs.js.Iterable.scala Maven / Gradle / Ivy

The newest version!
/*
 * Scala.js (https://www.scala-js.org/)
 *
 * Copyright EPFL.
 *
 * Licensed under Apache License 2.0
 * (https://www.apache.org/licenses/LICENSE-2.0).
 *
 * See the NOTICE file distributed with this work for
 * additional information regarding copyright ownership.
 */

package scala.scalajs.js

import scala.scalajs.js
import js.annotation._

/** ECMAScript 6
 *  JavaScript Iterable.
 */
trait Iterable[+A] extends js.Object {
  /** JavaScript Iterator for this Iterable. */
  @JSName(js.Symbol.iterator)
  def jsIterator(): js.Iterator[A]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy