MutableLazy<T> constructor

MutableLazy<T>(
  1. InitFunction<T> function
)

for each initialization, the function specified here gets used and creates the value.

Implementation

MutableLazy(InitFunction<T> function) : super(function);