webgraph 0.6.1

A Rust port of the WebGraph framework (http://webgraph.di.unimi.it/).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * SPDX-FileCopyrightText: 2023 Tommaso Fontana
 * SPDX-FileCopyrightText: 2023 Sebastiano Vigna
 *
 * SPDX-License-Identifier: Apache-2.0 OR LGPL-2.1-or-later
 */

mod bvcomp;
mod bvcompz;

pub use bvcomp::*;
pub use bvcompz::*;

mod impls;
pub use impls::{BvCompConfig, OffsetsWriter};

mod flags;
pub use flags::*;