Wrappable
import type { Wrappable } from "https://raw.githubusercontent.com/baetheus/fun/main/wrappable.ts";
A Wrappable structure has the method wrap.
@example
import type { Wrappable } from "./wrappable.ts";
import * as O from "./option.ts";
// Example with Option wrappable
const wrapped = O.WrappableOption.wrap(42);
console.log(wrapped); // Some(42)