Interface LazyValue<T>

  • All Known Implementing Classes:
    LazyZipValue

    public interface LazyValue<T>
    A function that returns a value, allowing the computation of that value to be deferred as late as possible.
    • Method Detail

      • get

        T get()
        Compute and return the value.