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

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;
}
;

§Type Parameters

§Type

§
{
readonly tag: "Node";
readonly value: A;
}
[src]