Skip to main content
Module

x/rimbu/mod.ts>AsyncOptLazy.toPromise

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
function AsyncOptLazy.toPromise
import { AsyncOptLazy } from "https://deno.land/x/rimbu@0.10.0/mod.ts";
const { toPromise } = AsyncOptLazy;

Returns the value contained in an AsyncOptLazy instance of type T as a promise.

Examples

Example 1

AsyncOptLazy.toPromise(1)              // => Promise(1)
AsyncOptLazy.toPromise(() => 1)        // => Promise(1)
AsyncOptLazy.toPromise(() => () => 1)  // => Promise(() => 1)
AsyncOptLazy.toPromise(async () => 1)  // => Promise(1)
AsyncOptLazy.toPromise(Promise.resolve(1))  // => Promise(1)

Parameters

optLazy: AsyncOptLazy<T>
  • the AsyncOptLazy value of type T

Returns

Promise<T>