type OptLazyOr<T,O>
A potentially lazy value that, in case of a lazy function, received a default value that it can return.
Definition
export type OptLazyOr<T, O> = T
|
((none: O) => T
|
O);
type OptLazyOr<T,O>
A potentially lazy value that, in case of a lazy function, received a default value that it can return.
export type OptLazyOr<T, O> = T
|
((none: O) => T
|
O);