#[expect(
clippy::module_inception,
reason = "hidden module used for organization"
)]
mod lens;
mod lens_mut;
mod lens_slice;
mod lens_slice_mut;
pub use lens::Lens;
pub use lens_mut::LensMut;
pub use lens_slice::LensSlice;
pub use lens_slice_mut::LensSliceMut;