Scala Library: scala.runtime.AbstractFunction0
scala.runtime.AbstractFunction0
abstract class AbstractFunction0[+R] extends () ⇒ R
Concrete Value Members From scala.Function0
abstract def apply(): R
Apply the body of this function to the arguments.
- returns
- the result of function application.
- Definition Classes
- Function0
(defined at scala.Function0)
Instance Constructors From scala.runtime.AbstractFunction0
new AbstractFunction0()
(defined at scala.runtime.AbstractFunction0)
Full Source:
/* __ *\
** ________ ___ / / ___ Scala API **
** / __/ __// _ | / / / _ | (c) 2002-2013, LAMP/EPFL **
** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
** /____/\___/_/ |_/____/_/ | | **
** |/ **
\* */
// GENERATED CODE: DO NOT EDIT. See scala.Function0 for timestamp.
package scala.runtime
abstract class AbstractFunction0[@specialized(Specializable.Primitives) +R] extends Function0[R] {
}
Interested in Scala?
I send out weekly, personalized emails with articles and conference talks.
Subscribe now.