Node
import type { Node } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/free.ts";A Node represents a single value in the Free structure.
type Node<A> = {
readonly tag: "Node";
readonly value: A;
};import type { Node } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/free.ts";A Node represents a single value in the Free structure.