//! FIFF file format reader.
//!
//! Implements reading of `.fif` EEG recordings compatible with
//! [MNE-Python](https://mne.tools).
//!
//! # Quick start
//! ```no_run
//! use exg::fiff::raw::open_raw;
//!
//! let raw = open_raw("data/sample1_raw.fif").unwrap();
//! println!("{} channels @ {} Hz", raw.info.n_chan, raw.info.sfreq);
//! let data = raw.read_all_data().unwrap(); // [n_chan, n_times] f64
//! ```
// Re-export the most commonly used items.
pub use ;
pub use ;
pub use ;
pub use ;