Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/ahh/src/result/mod.ts>Result

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

Represents a value that is either successful (Ok) or erroneous (Err).

definition: Err<E> | Ok<T>