Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Free

import 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

§Type