pub use crate::cs::error::{Error, Result};
pub type SortError = Error;
pub type SearchError = Error;
pub type StringError = Error;
pub type GraphError = Error;
pub type SortResult<T> = Result<T>;
pub type SearchResult<T> = Result<T>;
pub type StringResult<T> = Result<T>;
pub type GraphResult<T> = Result<T>;
pub mod sort {
pub use super::Error as SortError;
pub type Result<T> = super::Result<T>;
}
pub mod search {
pub use super::Error as SearchError;
pub type Result<T> = super::Result<T>;
}
pub mod string {
pub use super::Error as StringError;
pub type Result<T> = super::Result<T>;
}
pub mod graph {
pub use super::Error as GraphError;
pub type Result<T> = super::Result<T>;
}