Add brute-force search

This commit is contained in:
Yuriy Dupyn 2024-02-03 22:47:29 +01:00
parent a345bf99c6
commit ff378b1dd8
4 changed files with 135 additions and 31 deletions

View file

@ -13,8 +13,8 @@ pub struct Entry<T> {
#[derive(Debug)]
pub struct EntryDetailed<T> {
header: EntryHeaderWithDataSize,
data: Vec<T>,
pub header: EntryHeaderWithDataSize,
pub data: Vec<T>,
}
impl <T>Entry<T> {