Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ child_index = (( 0b00010 - 1) & 0b00011 ).count_ones() // = 1

The next node is the one at **index = 1** in the current node's child array.

The reason this works may actually easier to understand with a larger example. Consider this node from a larger trie (unrelated to our original example).
The reason this works may actually be easier to understand with a larger example. Consider this node from a larger trie (unrelated to our original example).

```rust
TrieNode {
Expand Down