Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Some

import type { Some } from "https://raw.githubusercontent.com/baetheus/fun/main/option.ts";

The Some type represents the existence of a value.

type Some<V> = {
tag: "Some";
value: V;
}
;

§Type Parameters

§Type

§
{
tag: "Some";
value: V;
}
[src]