pub fn batch_parse_decimals(strings: &[&str]) -> Vec<Result<Decimal, String>>Expand description
Batch convert vector of decimal strings with SIMD-friendly processing
Processes multiple decimal strings in a single operation for better performance. Uses vectorized processing patterns that can benefit from SIMD optimizations.
§Arguments
strings- Slice of string slices to parse as decimals
§Returns
Returns a vector of results, one for each input string.