hotpdf.trie.TrieNode¶
- class hotpdf.trie.TrieNode¶
- __init__() None¶
Initialize a TrieNode.
- Parameters:
children (dict) – Mapping of characters to TrieNode objects.
is_end_of_word (bool) – Flag indicating the end of a word.
hot_characters (list[HotCharacter]) – List of HotCharacter instances associated with the word.
Methods
__init__()Initialize a TrieNode.