(s: &str)
| 143 | } |
| 144 | |
| 145 | fn parse_number_list(s: &str) -> Vec<f64> { |
| 146 | s.split(|c: char| c == ',' || c.is_whitespace()) |
| 147 | .filter(|part| !part.is_empty()) |
| 148 | .map(parse_float) |
| 149 | .collect() |
| 150 | } |
| 151 | |
| 152 | fn parse_round_rect_args(s: &str) -> Option<(f64, f64, f64, f64, Vec<f64>)> { |
| 153 | let (x, rest) = split_next_token(s)?; |
no outgoing calls
no test coverage detected