import { right } from "https://deno.land/x/fun@v2.0.0/async_either.ts";
Constructs a AsyncEither from a value and wraps it in an inner Right traditionally signaling a successful computation.
Examples
Example 1
Example 1
import * as AE from "./async_either.ts";
const right = AE.right(1);
const result = await right(); // Right(1)
Parameters
right: A