pub fn parse_rate_range(s: &str) -> Option<(f64, f64)>Expand description
Parse “MIN-MAX” rate range string. Returns (min, max) or None on error.
Uses rfind('-') to locate the separator so that scientific-notation
values such as "1e-3-0.5" are parsed correctly (1e-3 = 0.001).