// ets_tracing: off import type { Identity } from "../../Identity/index.js" import type { EitherURI } from "../../Modules/index.js" import * as P from "../../Prelude/index.js" import { getSeparateF } from "./separate.js" /** * Get `Wiltable` instance given `Identity` */ export function getWiltable(M: Identity) { const separateF = getSeparateF(M) return P.instance], P.Fix<"E", E>>>({ separateF }) }