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

x/ahh/src/option/mod.ts>Option

Idiomatic type-safety functions.
Go to Latest
type alias Option
import { type Option } from "https://deno.land/x/ahh@v0.10.3/src/option/mod.ts";

Represents an optional value that either exists (Some) or does not exist (None).

definition: None | Some<T>