getCombinableSync
import { getCombinableSync } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/sync.ts";Create a Combinable instance for Sync given a Combinable for the inner type.
@example
import { getCombinableSync, wrap } from "./sync.ts";
import * as N from "./number.ts";
const combinableSync = getCombinableSync(N.CombinableNumberSum);
const sync1 = wrap(2);
const sync2 = wrap(3);
const result = combinableSync.combine(sync2)(sync1)(); // 5