pub const ERR_INVALID_RANGE_INCLUSIVE_BOUNDS: &str =
"Error: Invalid (inclusive) ranged bounds. (`START` must be <= `END`)";
pub const ERR_VALUE_OUT_OF_INCLUSIVE_BOUNDS: &str =
"Error: Value outside of (inclusive) ranged bounds. (`START` must be <= `value` <= `END`)";
pub const DOES_NOT_CONTAIN: &str = "does not contain";