x_map/
result.rs

1//! Contains the type alias for the internal `Result` enum for `x-map`.
2
3use crate::error::CIndexMapError;
4
5/// Type alias for `std::result::Result<T, CIndexMapError>`.
6pub type Result<T> = std::result::Result<T, CIndexMapError>;