zahirscan 0.3.3

Token-efficient content compression for AI analysis using probabilistic template mining
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! MATLAB `.mat` (classic v7) — one metadata row per top-level variable, global stats for numerics
//! and `struct_subtree` for `struct` / `struct` array / `cell`.

mod common;
mod summary;
mod walk;

pub use walk::extract_mat_metadata;

crate::no_template_mining!(
    extract_mat_templates,
    "MATLAB `.mat`: per-entry `struct_subtree` on `struct`/`cell` variables; `n_nan`/`n_inf` in subtree."
);