import { O } from "https://deno.land/x/ahh@v0.10.0/mod.ts";
Returns opt
if it is a Some
, or throws.
Examples
import { O, None } from "./mod.ts";
console.log(O.unwrap(1)); // 1
O.unwrap(None); // throws
import { O } from "https://deno.land/x/ahh@v0.10.0/mod.ts";
Returns opt
if it is a Some
, or throws.
import { O, None } from "./mod.ts";
console.log(O.unwrap(1)); // 1
O.unwrap(None); // throws