Packages

c

scala.runtime

LazyRef

class LazyRef[T] extends AnyRef

Classes used as holders for lazy vals defined in methods.

Source
LazyRef.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LazyRef
  2. AnyRef
  3. 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 LazyRef()

Value Members

  1. def initialize(value: T): T
  2. def initialized: Boolean
  3. 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
    LazyRef → AnyRef → Any
  4. def value: T