pub fn safe_array_bound(
base: usize,
count: usize,
item_size: usize,
context: &str,
) -> Result<usize, Error>Expand description
Safely calculate COBOL array bounds with overflow protection.
ยงErrors
Returns an error if the computation overflows.