SDSL 3.0.1
Succinct Data Structure Library
|
int_vector.hpp contains the sdsl::int_vector class. More...
#include <cassert>
#include <cinttypes>
#include <cstddef>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <initializer_list>
#include <ios>
#include <iosfwd>
#include <iostream>
#include <istream>
#include <iterator>
#include <ostream>
#include <stdexcept>
#include <string>
#include <type_traits>
#include <typeinfo>
#include <vector>
#include <sdsl/bits.hpp>
#include <sdsl/config.hpp>
#include <sdsl/io.hpp>
#include <sdsl/memory_management.hpp>
#include <sdsl/ram_fs.hpp>
#include <sdsl/sfstream.hpp>
#include <sdsl/structure_tree.hpp>
#include <sdsl/uintx_t.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, const int_vector_iterator< t_int_vector > &it) |
template<class t_int_vector > | |
int_vector_const_iterator< t_int_vector >::difference_type | sdsl::operator- (const int_vector_const_iterator< t_int_vector > &x, const int_vector_const_iterator< t_int_vector > &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, const int_vector_const_iterator< t_int_vector > &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, const t_bv &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.