Skip to main content
Module

x/ahh/mod.ts>Option

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

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

definition: None | Some<T>