global: one big snapshot

This commit is contained in:
nym21
2025-08-02 16:59:22 +02:00
parent aa8b47a3dd
commit f7aa9424db
252 changed files with 6283 additions and 5264 deletions

View File

@@ -1,13 +1,32 @@
#![doc = include_str!("../README.md")]
#![doc = "\n## Examples\n"]
#![doc = "\n### File\n\n```rust"]
#![doc = include_str!("../examples/file.rs")]
#![doc = "```"]
#![doc = "\n### Raw\n\n```rust"]
#![doc = include_str!("../examples/raw.rs")]
#![doc = "```"]
mod error;
mod exit;
mod file;
mod stamp;
mod traits;
mod variants;
mod version;
pub use brk_vecs_macros::StoredCompressed;
pub use pco::data_types::LatentType;
use variants::*;
pub use error::*;
pub use exit::*;
pub use file::{File, PAGE_SIZE, Reader};
pub use stamp::*;
pub use traits::*;
pub use variants::{
AnyStampedVec, CompressedVec, Computation, ComputedVec, ComputedVecFrom1, ComputedVecFrom2,
ComputedVecFrom3, EagerVec, Format, LazyVecFrom1, LazyVecFrom2, LazyVecFrom3, RawVec, Stamp,
StampedVec, StoredVec,
CompressedVec, Computation, ComputedVec, ComputedVecFrom1, ComputedVecFrom2, ComputedVecFrom3,
EagerVec, Format, LazyVecFrom1, LazyVecFrom2, LazyVecFrom3, RawVec, StoredVec,
};
pub use version::*;