Skip to main content
Module

x/hkts/option.ts>some

Functional programming tools: option, either, task, state, optics, etc.
Latest
variable some
import { some } from "https://deno.land/x/hkts@v0.0.52/option.ts";

The some constructer takes any value and wraps it in the Some type.

type

<A>(value: A) => Option<A>