All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scala.Cell.scala Maven / Gradle / Ivy

/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2003-2010, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */



package scala

/** A Cell is a generic wrapper which completely
 *  hides the functionality of the wrapped object. The wrapped
 *  object is accessible via the elem accessor method.
 *
 *  @author  Martin Odersky
 *  @version 1.0, 08/08/2003
 */
case class Cell[+T](elem: T)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy