dtrie v1.0.1 (2015-07-15T08:29:16Z)
Dub
Repo
Node
dtrie
The node of the tree. Each node has one character as its member.
class
Node {
wchar
label
;
bool
visited
;
this
(wchar label);
void
addChild
(Node child);
ulong
getNChildren
();
}
Constructors
this
this
(wchar label)
Undocumented in source.
Members
Functions
addChild
void
addChild
(Node child)
Undocumented in source. Be warned that the author may not have intended to support it.
getNChildren
ulong
getNChildren
()
Undocumented in source. Be warned that the author may not have intended to support it.
Variables
label
wchar
label
;
Undocumented in source.
visited
bool
visited
;
Undocumented in source.
Meta
Source
See Implementation
dtrie
classes
Dictionary
LoudsBitStringBuilder
Node
WordNodeNumberMap
The node of the tree. Each node has one character as its member.