SomeCopyimport 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§V[src]§Type§{tag: "Some"; value: V; }[src]