Packages

sealed trait Tuple2[+T1, +T2] extends Object

A tuple "view" of 2 elements of a JavaScript js.Array.

Supports implicit conversions to and from scala.Tuple2.

To use it, cast your array into a js.Tuple2 using

val array = js.Array[Any](42, "foobar")
val tuple2 = array.asInstanceOf[js.Tuple2[Int, String]]

or convert a Scala tuple

val obj: js.Tuple2[Int, String] = (42, "foobar")
Annotations
@JSType()
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Tuple2
  2. Object
  3. Any
  4. AnyRef
  5. Any
Implicitly
  1. by toScalaTuple2
  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 val _1: T1
    Annotations
    @JSName(name = "0")
  2. abstract val _2: T2
    Annotations
    @JSName(name = "1")

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 Tuple2[T1, T2] toany2stringadd[Tuple2[T1, T2]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (Tuple2[T1, T2], B)
    Implicit
    This member is added by an implicit conversion from Tuple2[T1, T2] toArrowAssoc[Tuple2[T1, T2]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: scala.Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. def ensuring(cond: (Tuple2[T1, T2]) => Boolean, msg: => scala.Any): Tuple2[T1, T2]
    Implicit
    This member is added by an implicit conversion from Tuple2[T1, T2] toEnsuring[Tuple2[T1, T2]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: (Tuple2[T1, T2]) => Boolean): Tuple2[T1, T2]
    Implicit
    This member is added by an implicit conversion from Tuple2[T1, T2] toEnsuring[Tuple2[T1, T2]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean, msg: => scala.Any): Tuple2[T1, T2]
    Implicit
    This member is added by an implicit conversion from Tuple2[T1, T2] toEnsuring[Tuple2[T1, T2]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean): Tuple2[T1, T2]
    Implicit
    This member is added by an implicit conversion from Tuple2[T1, T2] toEnsuring[Tuple2[T1, T2]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  15. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Tuple2[T1, T2] toStringFormat[Tuple2[T1, T2]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. 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
  18. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. 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
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. def productArity: Int
    Implicit
    This member is added by an implicit conversion from Tuple2[T1, T2] to(T1, T2) performed by method toScalaTuple2 in scala.scalajs.js.Tuple2.
    Definition Classes
    Product2 → Product
  25. def productElement(n: Int): scala.Any
    Implicit
    This member is added by an implicit conversion from Tuple2[T1, T2] to(T1, T2) performed by method toScalaTuple2 in scala.scalajs.js.Tuple2.
    Definition Classes
    Product2 → Product
    Annotations
    @throws(classOf[java.lang.IndexOutOfBoundsException])
  26. def productElementNames: scala.Iterator[String]
    Implicit
    This member is added by an implicit conversion from Tuple2[T1, T2] to(T1, T2) performed by method toScalaTuple2 in scala.scalajs.js.Tuple2.
    Definition Classes
    Product
  27. 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
  28. def swap: (T2, T1)
    Implicit
    This member is added by an implicit conversion from Tuple2[T1, T2] to(T1, T2) performed by method toScalaTuple2 in scala.scalajs.js.Tuple2.
    Definition Classes
    Tuple2
  29. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  30. def toLocaleString(): String
    Definition Classes
    Object
  31. def toString(): String
    Definition Classes
    AnyRef → Any
  32. def valueOf(): scala.Any
    Definition Classes
    Object
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Shadowed Implicit Value Members

  1. def toString(): String
    Implicit
    This member is added by an implicit conversion from Tuple2[T1, T2] to(T1, T2) performed by method toScalaTuple2 in scala.scalajs.js.Tuple2.
    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:
    (tuple2: (T1, T2)).toString()
    Definition Classes
    Tuple2 → AnyRef → Any

Deprecated Value Members

  1. def [B](y: B): (Tuple2[T1, T2], B)
    Implicit
    This member is added by an implicit conversion from Tuple2[T1, T2] toArrowAssoc[Tuple2[T1, T2]] 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 toScalaTuple2 fromTuple2[T1, T2] to (T1, T2)

Inherited by implicit conversion any2stringadd fromTuple2[T1, T2] to any2stringadd[Tuple2[T1, T2]]

Inherited by implicit conversion StringFormat fromTuple2[T1, T2] to StringFormat[Tuple2[T1, T2]]

Inherited by implicit conversion Ensuring fromTuple2[T1, T2] to Ensuring[Tuple2[T1, T2]]

Inherited by implicit conversion ArrowAssoc fromTuple2[T1, T2] to ArrowAssoc[Tuple2[T1, T2]]

Ungrouped