final class Tuple6SyntaxOps[A1, A2, A3, A4, A5, A6] extends AnyVal
- Source
- tuple.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Tuple6SyntaxOps
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new Tuple6SyntaxOps(t: (A1, A2, A3, A4, A5, A6))
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- def *:[A0](elem: A0): (A0, A1, A2, A3, A4, A5, A6)
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, 4, 5, 6) // the result is (0, 1, 2, 3, 4, 5, 6)
Example: - def :*[A7](elem: A7): (A1, A2, A3, A4, A5, A6, A7)
Return a copy of
this
tuple with the element appended.Return a copy of
this
tuple with the element appended.(1, 2, 3, 4, 5, 6) :* 7 // the result is (1, 2, 3, 4, 5, 6, 7)
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, A3, A4, A5)
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def last: A6
- Annotations
- @inline()
- def reverse: (A6, A5, A4, A3, A2, A1)
- def tail: (A2, A3, A4, A5, A6)
- def toString(): String
- Definition Classes
- Any