-
Notifications
You must be signed in to change notification settings - Fork 2
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
Search documentation issues #9
Comments
Phil Endecott wrote:
|
Are you referring to the traits class? If so, that section is there because the implementation is a customization point, rather than a private implementation detail. The current implementation has two options (array and sparse table), and it chooses which one based on the input types - the array is faster, but is really only suitable for character-sized types (which is probably the most common case). The unordered_map is slower, but much more memory efficient for large alphabets. I guess I didn't make this clear in the documentation. I will see if I can make it better. |
Some implementation details are in the reference: // private member functions
|
Lorenzo Caminiti wrote |
|
No description provided.
The text was updated successfully, but these errors were encountered: