Lazy

harness.core.Lazy
See theLazy companion object
final class Lazy[A](_value: => A)

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

def flatMap[B](f: A => Lazy[B]): Lazy[B]
def flatten[B](implicit ev: A <:< Lazy[B]): Lazy[B]
def map[B](f: A => B): Lazy[B]
override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Any

Concrete fields

lazy val value: A