> ## Documentation Index
> Fetch the complete documentation index at: https://resq-dependabot-github-actions-github-actions-478e18be3d.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Resq dsa Trie Node

## Node

Internal trie node.

### Public Attributes

| Return                                                | Name                | Description                            |
| ----------------------------------------------------- | ------------------- | -------------------------------------- |
| `std::unordered_map< char, std::unique_ptr< Node > >` | [`ch`](#ch)         | Children nodes keyed by character.     |
| `bool`                                                | [`is_end`](#is_end) | Whether this node marks end of a word. |

***

#### ch

```cpp theme={null}
std::unordered_map< char, std::unique_ptr< Node > > ch
```

Children nodes keyed by character.

***

#### is\_end

```cpp theme={null}
bool is_end = false
```

Whether this node marks end of a word.
