pytries/marisa-trie

possible to add keys?

dylanbfox opened this issue · 1 comments

Is it possible to add keys to the Trie after its been created? I've seen the restore facility (eg: trie.restore_key(1)) and looked into the source but haven't seen anything offering this. Something like

t = Trie([u'one'])
t._add_key(u'two')

kmike commented

No, it is not possible.