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