SDSL 3.0.2
Succinct Data Structure Library
|
#include <suffix_array_helper.hpp>
Public Types | |
typedef t_csa::char_type | value_type |
typedef t_csa::size_type | size_type |
typedef t_csa::difference_type | difference_type |
typedef random_access_const_iterator< text_of_csa > | const_iterator |
typedef csa_member_tag | category |
typedef t_csa::alphabet_category | alphabet_category |
Public Member Functions | |
text_of_csa (t_csa const &csa) | |
Constructor. | |
value_type | operator[] (size_type i) const |
Character at index ![]() | |
size_type | size () const |
Returns the size of the original text. | |
size_type | empty () const |
Returns if text text has size 0. | |
const_iterator | begin () const |
Returns a const_iterator to the first element. | |
const_iterator | end () const |
Returns a const_iterator to the element after the last element. | |
Definition at line 670 of file suffix_array_helper.hpp.
typedef t_csa::alphabet_category sdsl::text_of_csa< t_csa >::alphabet_category |
Definition at line 678 of file suffix_array_helper.hpp.
typedef csa_member_tag sdsl::text_of_csa< t_csa >::category |
Definition at line 677 of file suffix_array_helper.hpp.
typedef random_access_const_iterator<text_of_csa> sdsl::text_of_csa< t_csa >::const_iterator |
Definition at line 676 of file suffix_array_helper.hpp.
typedef t_csa::difference_type sdsl::text_of_csa< t_csa >::difference_type |
Definition at line 675 of file suffix_array_helper.hpp.
typedef t_csa::size_type sdsl::text_of_csa< t_csa >::size_type |
Definition at line 674 of file suffix_array_helper.hpp.
typedef t_csa::char_type sdsl::text_of_csa< t_csa >::value_type |
Definition at line 673 of file suffix_array_helper.hpp.
|
inline |
Constructor.
Definition at line 687 of file suffix_array_helper.hpp.
|
inline |
Returns a const_iterator to the first element.
Required for the STL Container Concept.
Definition at line 717 of file suffix_array_helper.hpp.
|
inline |
Returns if text text has size 0.
Definition at line 708 of file suffix_array_helper.hpp.
|
inline |
Returns a const_iterator to the element after the last element.
Required for the STL Container Concept.
Definition at line 726 of file suffix_array_helper.hpp.
|
inline |
Character at index
i | Text position , ![]() |
Definition at line 695 of file suffix_array_helper.hpp.
|
inline |
Returns the size of the original text.
Definition at line 702 of file suffix_array_helper.hpp.