final class Tuple7SyntaxOps[A1, A2, A3, A4, A5, A6, A7] extends AnyVal
- Source
- tuple.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Tuple7SyntaxOps
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new Tuple7SyntaxOps(t: (A1, A2, A3, A4, A5, A6, A7))
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, A7)
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, 7) // the result is (0, 1, 2, 3, 4, 5, 6, 7)
Example: - def :*[A8](elem: A8): (A1, A2, A3, A4, A5, A6, A7, A8)
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) :* 8 // the result is (1, 2, 3, 4, 5, 6, 7, 8)
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, A6)
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def last: A7
- Annotations
- @inline()
- def reverse: (A7, A6, A5, A4, A3, A2, A1)
- def tail: (A2, A3, A4, A5, A6, A7)
- def toString(): String
- Definition Classes
- Any