// ets_tracing: off import { instance } from "../Prelude/index.js" import type { Closure } from "./definition.js" export function makeClosure(f: (x: A, y: A) => A): Closure { return instance({ combine: f }) }