class TernaryTrie::TNode

The trie node - not for public consumption

Attributes

keyc[RW]
l[RW]
m[RW]
r[RW]
val[RW]

Public Class Methods

new(kc) click to toggle source
# File lib/utility/ternarytrie.rb, line 67
def initialize(kc)
  @keyc = kc
end