c

mouse

Tuple2SyntaxOps

final class Tuple2SyntaxOps[A1, A2] extends AnyVal

Source
tuple.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Tuple2SyntaxOps
  2. AnyVal
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Tuple2SyntaxOps(t: (A1, A2))

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##: Int
    Definition Classes
    Any
  3. def *:[A0](elem: A0): (A0, A1, A2)

    Return a new tuple by prepending the element to this tuple.

    Return a new tuple by prepending the element to this tuple.

    Example:
    1. 0 *: (1, 2) // the result is (0, 1, 2)
  4. def :*[A3](elem: A3): (A1, A2, A3)

    Return a copy of this tuple with the element appended.

    Return a copy of this tuple with the element appended.

    Example:
    1. (1, 2) :* 3 // the result is (1, 2, 3)
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  8. def head: A1
    Annotations
    @inline()
  9. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  10. def last: A2
    Annotations
    @inline()
  11. def reverse: (A2, A1)
  12. def toString(): String
    Definition Classes
    Any

Inherited from AnyVal

Inherited from Any

Ungrouped