|
SDSL 3.0.3
Succinct Data Structure Library
|
int_vector.hpp contains the sdsl::int_vector class. More...
#include <algorithm>#include <cassert>#include <cinttypes>#include <cmath>#include <cstddef>#include <cstring>#include <initializer_list>#include <iostream>#include <iterator>#include <new>#include <string>#include <type_traits>#include <utility>#include <sdsl/bits.hpp>#include <sdsl/cereal.hpp>#include <sdsl/config.hpp>#include <sdsl/io.hpp>#include <sdsl/memory_management.hpp>#include <sdsl/sdsl_concepts.hpp>#include <sdsl/structure_tree.hpp>#include <sdsl/util.hpp>#include <sdsl/int_vector_buffer.hpp>#include <sdsl/int_vector_mapper.hpp>Go to the source code of this file.
Classes | |
| struct | sdsl::int_vec_category_trait< t_width > |
| struct | sdsl::int_vec_category_trait< 1 > |
| struct | sdsl::int_vector_trait< t_width > |
| struct | sdsl::int_vector_trait< 64 > |
| struct | sdsl::int_vector_trait< 32 > |
| struct | sdsl::int_vector_trait< 16 > |
| struct | sdsl::int_vector_trait< 8 > |
| class | sdsl::int_vector< t_width > |
A generic vector class for integers of width ![]() | |
| struct | sdsl::int_vector< t_width >::raw_wrapper |
| class | sdsl::int_vector_reference< t_int_vector > |
A proxy class that acts as a reference to an integer of length len bits in a int_vector. More... | |
| class | sdsl::int_vector_reference< bit_vector > |
| class | sdsl::int_vector_iterator_base< t_int_vector > |
| class | sdsl::int_vector_iterator< t_int_vector > |
| class | sdsl::int_vector_const_iterator< t_int_vector > |
Namespaces | |
| namespace | sdsl |
| Namespace for the succinct data structure library. | |
| namespace | sdsl::coder |
| Namespace for the different coder of the sdsl. | |
Typedefs | |
| typedef uint64_t | sdsl::std_size_type_for_int_vector |
| typedef int_vector< 1 > | sdsl::bit_vector |
| bit_vector is a specialization of the int_vector. | |
Functions | |
| template<class t_int_vector> | |
| void | sdsl::swap (int_vector_reference< t_int_vector > x, int_vector_reference< t_int_vector > y) noexcept |
| template<class t_int_vector> | |
| void | sdsl::swap (typename int_vector_reference< t_int_vector >::value_type &x, int_vector_reference< t_int_vector > y) noexcept |
| template<class t_int_vector> | |
| void | sdsl::swap (int_vector_reference< t_int_vector > x, typename int_vector_reference< t_int_vector >::value_type &y) noexcept |
| template<> | |
| void | sdsl::swap (int_vector_reference< bit_vector > x, int_vector_reference< bit_vector > y) noexcept |
| template<> | |
| void | sdsl::swap (bool &x, int_vector_reference< bit_vector > y) noexcept |
| template<> | |
| void | sdsl::swap (int_vector_reference< bit_vector > x, bool &y) noexcept |
| template<class t_int_vector> | |
| int_vector_iterator< t_int_vector > | sdsl::operator+ (typename int_vector_iterator< t_int_vector >::difference_type n, int_vector_iterator< t_int_vector > const &it) |
| template<class t_int_vector> | |
| int_vector_const_iterator< t_int_vector >::difference_type | sdsl::operator- (int_vector_const_iterator< t_int_vector > const &x, int_vector_const_iterator< t_int_vector > const &y) |
| template<class t_int_vector> | |
| int_vector_const_iterator< t_int_vector > | sdsl::operator+ (typename int_vector_const_iterator< t_int_vector >::difference_type n, int_vector_const_iterator< t_int_vector > const &it) |
| template<class t_bv> | |
| std::enable_if< std::is_same< typenamet_bv::index_category, bv_tag >::value, std::ostream & >::type | sdsl::operator<< (std::ostream &os, t_bv const &bv) |
| template<uint8_t t_width> | |
| void | sdsl::swap (int_vector< t_width > &v1, int_vector< t_width > &v2) noexcept |
int_vector.hpp contains the sdsl::int_vector class.
Definition in file int_vector.hpp.