import { type OptLazy } from "https://deno.land/x/rimbu@1.2.0/core/mod.ts";
A potentially lazy value of type T.
import { OptLazy } from "https://deno.land/x/rimbu@1.2.0/core/mod.ts";
Returns the value contained in an OptLazy
instance of type T.
Examples
Example 1
Example 1
OptLazy(1) // => 1
OptLazy(() => 1) // => 1
OptLazy(() => () => 1) // => () => 1