import * as fun from "https://deno.land/x/fun@v2.0.0/either.ts";
This file contains the Either algebraic data type. Either is used to represent two exclusive types. Generally, Either is used to represent either a successful computation or a failed computation, with the result of the failed computation being kept in Left.