Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make Trie moveable #39

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Make Trie moveable #39

wants to merge 2 commits into from

Commits on Jun 24, 2021

  1. Make Agent copyable and moveable

    This allows implementing C++ iterator interface on top of the Agent more
    efficiently.
    
    C++ iterators must be copyable, and the only way to copy one previously was
    to repeat the query until the index.
    glebm committed Jun 24, 2021
    Configuration menu
    Copy the full SHA
    aaf62c9 View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2021

  1. Make Trie moveable

    Adds move constructor and move assignment to `Trie`, allowing modern C++
    code to use it without a pointer indirection.
    glebm committed Jun 25, 2021
    Configuration menu
    Copy the full SHA
    af8fc6a View commit details
    Browse the repository at this point in the history