Skip to main content

ferritin_core/unit/
mod.rs

1//! Zero-copy view layer for subset selection on [`Model`].
2//!
3//! A [`Unit`] represents a selection of atoms within a [`Model`] without copying
4//! the underlying data. It stores an [`OrderedSet`] of atom indices and provides
5//! lazy iterators for accessing coordinates and performing set operations.
6
7mod unit;
8
9pub use unit::Unit;