#![cfg_attr(not(feature = "std"), no_std)]
#[cfg(feature = "alloc")]
extern crate alloc;
pub mod coo;
pub mod csl;
pub mod dense;
pub mod doc_tests;
mod error;
mod utils;
pub type Result<T> = core::result::Result<T, Error>;
pub use error::*;
#[cfg(feature = "rayon")]
pub use utils::{ParallelIteratorWrapper, ParallelProducerWrapper};