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 Summary

    Modifier and Type
    Method
    Description
    get()
    Compute and return the value.
  • Method Details

    • get

      T get()
      Compute and return the value.