Anders429 / word_filter

A Word Filter for filtering text.
Apache License 2.0
1 stars 0 forks source link

Rename internal `Pointer` struct #9

Closed Anders429 closed 3 years ago

Anders429 commented 3 years ago

The Pointer struct is a bit of a misnomer, since it's not a "pointer" in the sense we would normally consider in programming. It's a pointer to a specific part of the graph in a specific traversal path. This might cause confusion to contributors.

The name Cursor might be more appropriate. Or perhaps Context or something similar.

Anders429 commented 3 years ago

Going with Walker, as that is the best name I could come up with to properly describe what the structure does.