@thi.ng/pointfree
Version:
Pointfree functional composition / Forth style stack execution engine
26 lines (25 loc) • 638 B
JavaScript
export * from "./api.js";
export * from "./array.js";
export * from "./binary.js";
export * from "./cond.js";
export * from "./context.js";
export * from "./dataflow.js";
export * from "./env.js";
export * from "./io.js";
export * from "./logic.js";
export * from "./loop.js";
export * from "./math.js";
export * from "./run.js";
export * from "./safe.js";
export * from "./stack.js";
export * from "./string.js";
export * from "./word.js";
import { $, $n } from "./safe.js";
import { defOp1, defOp2, defOp2v } from "./ops.js";
export {
$ as ensureStack,
$n as ensureStackN,
defOp2 as map2,
defOp1 as maptos,
defOp2v as op2v
};