CommandResolver.finalWords

Notes: While the returned array is mutable, the nodes stored in this array are *not* the same nodes stored in the actual search tree. This means that any changes made to this array will not be reflected by the results of resolve and resolveAndAdvance.

The reason this isn't marked const is because that'd mean that your user data would also be marked const, which, in D, can be *very* annoying and limiting. Doubly so since your intentions can't be determined due to the nature of user data. So behave with this.

class CommandResolver(UserDataT)
@property
finalWords
()

Return Value

Type: NodeT[]

All of the final words currently defined.

Meta