We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eff39ae commit 5614f75Copy full SHA for 5614f75
ruzstd/src/encoding/match_generator.rs
@@ -14,7 +14,7 @@ use super::Sequence;
14
15
const MIN_MATCH_LEN: usize = 5;
16
17
-/// Takes care of allocating and reusing vecs
+/// This is the default implementation of the `Matcher` trait. It allocates and reuses the buffers when possible.
18
pub struct MatchGeneratorDriver {
19
vec_pool: Vec<Vec<u8>>,
20
suffix_pool: Vec<SuffixStore>,
ruzstd/src/encoding/mod.rs
@@ -9,6 +9,7 @@ pub(crate) mod util;
9
mod frame_compressor;
10
mod levels;
11
pub use frame_compressor::FrameCompressor;
12
+pub use match_generator::MatchGeneratorDriver;
13
use crate::io::{Read, Write};
use alloc::vec::Vec;
0 commit comments