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

BoundedTrieNode

import type { BoundedTrieNode } from "https://googleapis.deno.dev/v1/dataflow:v1b3.ts";

A single node in a BoundedTrie.

interface BoundedTrieNode {
children?: {
[key: string]: BoundedTrieNode;
}
;
truncated?: boolean;
}

§Properties

§
children?: {
[key: string]: BoundedTrieNode;
}
[src]

Children of this node. Must be empty if truncated is true.

§
truncated?: boolean
[src]

Whether this node has been truncated. A truncated leaf represents possibly many children with the same prefix.