Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/ahh/src/either/mod.ts>Either

Mostly rust-inpired stuff for @denoland.
Go to Latest
type alias Either
import { type Either } from "https://deno.land/x/ahh@v0.7.0/src/either/mod.ts";

Represents a value that is either left-handed (Left) or right-handed (Right).

definition: Left<L> | Right<R>