traverse
import { traverse } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/these.ts";Traverse over a These using the supplied Applicable.
@example
import { traverse, right, both } from "./these.ts";
import * as O from "./option.ts";
import { pipe } from "./fn.ts";
const traversed = pipe(
right(5),
traverse(O.ApplicableOption)(n => O.some(n * 2))
);
console.log(traversed); // Some({ tag: "Right", right: 10 })