s-yata / marisa-trie

MARISA: Matching Algorithm with Recursively Implemented StorAge
Other
506 stars 89 forks source link

Make `Trie` moveable #39

Open glebm opened 3 years ago

glebm commented 3 years ago

Adds move constructor and move assignment to Trie, allowing modern C++ code to use it without a pointer indirection.

Based on top of #38