final class TupleOps[T] extends AnyVal
- Source
- TupleOps.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- TupleOps
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new TupleOps(tuple: T)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- def append[S](value: S)(implicit ao: AppendOne[T, S]): Out
Appends the given value to the tuple producing a tuple of arity n + 1.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def foldLeft[In](zero: In)(op: BinaryPolyFunc)(implicit fold: FoldLeft[In, T, op.type]): Out
Left-Folds over the tuple using the given binary poly-function.
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def join[S](suffixTuple: S)(implicit join: Join[T, S]): Out
Appends the given tuple to the underlying tuple producing a tuple of arity n + m.
- def toString(): String
- Definition Classes
- Any
- val tuple: T