winsfs_core/saf/iter/
mod.rs

1//! Structs and traits for iterating over SAF likelihood matrices and views.
2
3mod blocks;
4pub use blocks::{BlockIter, IntoBlockIterator, IntoParallelBlockIterator, ParBlockIter};
5
6mod sites;
7pub use sites::{IntoParallelSiteIterator, IntoSiteIterator, ParSiteIter, SiteIter};