Packages

c

scala.runtime

AbstractFunction0

abstract class AbstractFunction0[+R] extends () ⇒ R

Source
AbstractFunction0.scala
Linear Supertypes
() ⇒ R, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AbstractFunction0
  2. Function0
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new AbstractFunction0()

Abstract Value Members

  1. abstract def apply(): R

    Apply the body of this function to the arguments.

    Apply the body of this function to the arguments.

    returns

    the result of function application.

    Definition Classes
    Function0

Concrete Value Members

  1. def toString(): String

    Creates a String representation of this object.

    Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.

    returns

    a String representation of the object.

    Definition Classes
    Function0 → AnyRef → Any