Interface LazyValue<T>
public interface LazyValue<T>
Useful when passing a value that might not exist to a function, e.g. when we
pass a form that we might need to construct dynamically later on.
-
Method Summary
-
Method Details
-
get
Returns the actual value
Parameters
args: optional arguments for the creation of the lazy value
Returns
the value
-