sux 0.14.0

A pure Rust implementation of succinct and compressed data structures
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * SPDX-FileCopyrightText: 2026 Sebastiano Vigna
 *
 * SPDX-License-Identifier: Apache-2.0 OR LGPL-2.1-or-later
 */

//! Compact representations of lists.
//!
//! This module contains compact representations of lists. All structures
//! implement [`SliceByValue`].
//!
//! [`SliceByValue`]: value_traits::slices::SliceByValue

pub mod comp_int_list;
pub use comp_int_list::CompIntList;

pub mod prefix_sum_int_list;
pub use prefix_sum_int_list::PrefixSumIntList;