Node
A node representing either one of the strings in a trie or a prefix thereof.
-
The identifier of a node in a trie.
Declaration
Swift
typealias Identifier = Int -
The outgoing edges of a node.
Declaration
Swift
typealias Children = [Key.Element : Identifier] -
The outgoing edges of this node.
Declaration
Swift
var children: Children -
The value associated with the member string represented by
self, if any.Declaration
Swift
var value: Value? -
trueiffselfis not part of a member string.Declaration
Swift
var isTombstone: Bool { get }
View on GitHub