|
Zip and Skip Tries
|
Helper struct to return a comparison result (ordering) and an LCP value. More...
#include <SkipTrie.hpp>
Public Attributes | |
| std::strong_ordering | result |
The result of the comparison (std::strong_ordering::less, equal, or greater). | |
| size_t | lcp |
| The Longest Common Prefix length calculated during the comparison. | |
Helper struct to return a comparison result (ordering) and an LCP value.
Used by compare.
Definition at line 364 of file SkipTrie.hpp.
| size_t SkipTrie< CHAR_T, CHAR_SIZE_BITS >::ResultLCP::lcp |
The Longest Common Prefix length calculated during the comparison.
Definition at line 369 of file SkipTrie.hpp.
| std::strong_ordering SkipTrie< CHAR_T, CHAR_SIZE_BITS >::ResultLCP::result |
The result of the comparison (std::strong_ordering::less, equal, or greater).
Definition at line 367 of file SkipTrie.hpp.