traverse
import { traverse } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/sync.ts";Traverse over a Sync using the supplied Applicable.
@example
import { traverse, wrap } from "./sync.ts";
import * as O from "./option.ts";
import { pipe } from "./fn.ts";
const syncValue = wrap(5);
const faui = (n: number) => O.some(n * 2);
const traverseOption = traverse(O.ApplicableOption)(faui);
const result = traverseOption(syncValue); // Some(Sync(10))