import { fn_either } from "https://deno.land/x/fun@v2.0.0/mod.ts";
const { right } = fn_either;
Create a FnEither that always returns a Right(A).
Examples
Example 1
Example 1
import { right } from "./fn_either.ts";
const rightNumber = right(1);
const result = rightNumber(null); // Right(1);
Parameters
right: A