Documentation
    Preparing search index...

    Interface LazyLike<T>

    Provides ability to lazily evaluate a value when it is accessed for the first time.

    interface LazyLike<T> {
        value: T;
        valueCreated: boolean;
    }

    Type Parameters

    • T

    Implemented by

    Index

    Properties

    Properties

    value: T

    Gets the lazily evaluated value.

    valueCreated: boolean

    Whether the value has been created.