final class Tuple3SyntaxOps[A1, A2, A3] extends AnyVal
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Tuple3SyntaxOps
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new Tuple3SyntaxOps(t: (A1, A2, A3))
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- def *:[A0](elem: A0): (A0, A1, A2, A3)
Return a new tuple by prepending the element to
this
tuple.Return a new tuple by prepending the element to
this
tuple.0 *: (1, 2, 3) // the result is (0, 1, 2, 3)
Example: - def :*[A4](elem: A4): (A1, A2, A3, A4)
Return a copy of
this
tuple with the element appended.Return a copy of
this
tuple with the element appended.(1, 2, 3) :* 4 // the result is (1, 2, 3, 4)
Example: - final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- def head: A1
- Annotations
- @inline()
- def init: (A1, A2)
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def last: A3
- Annotations
- @inline()
- def reverse: (A3, A2, A1)
- def tail: (A2, A3)
- def toString(): String
- Definition Classes
- Any