FreeCopyimport type { Free } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/free.ts";The Free type represents either a Node (single value) or a Link (combination of two Free structures). type Free<A> = Node<A> | Link<A>;§Type Parameters§A[src]§Type§Node<A> | Link<A>[src]