scala.Product.scala Maven / Gradle / Ivy
/* __ *\
** ________ ___ / / ___ Scala API **
** / __/ __// _ | / / / _ | (c) 2002-2010, LAMP/EPFL **
** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
** /____/\___/_/ |_/____/_/ | | **
** |/ **
\* */
package scala
/** The trait Product defines access functions for instances
* of products, in particular case classes.
*
* @author Burak Emir
* @version 1.0
* @since 2.3
*/
trait Product extends Equals {
/** For a product A(x_1,...,x_k), returns x_(n+1)
* for 0 <= n < k
*
* @param n the index of the element to return
* @throws IndexOutOfBoundsException
* @return The element n elements after the first element
*/
def productElement(n: Int): Any
/** return k for a product A(x_1,...,x_k)
*/
def productArity: Int
/** An iterator that returns all fields of this product */
def productIterator: Iterator[Any] = new Iterator[Any] {
private var c: Int = 0
private val cmax = productArity
def hasNext = c < cmax
def next() = { val result = productElement(c); c += 1; result }
}
@deprecated("use productIterator instead")
def productElements: Iterator[Any] = productIterator
/**
* By default the empty string. Implementations may override this
* method in order to prepend a string prefix to the result of the
* toString methods.
*/
def productPrefix = ""
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy