A list of integers parsed from a bracket-enclosed, comma-separated string. Ranges are supported with `-`: `"[0,2-4,6]"` produces `[0, 2, 3, 4, 6]`.
| 354 | /// |
| 355 | /// Ranges are supported with `-`: `"[0,2-4,6]"` produces `[0, 2, 3, 4, 6]`. |
| 356 | pub struct IntegerList(pub Vec<u64>); |
| 357 | |
| 358 | impl Display for IntegerList { |
| 359 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
no outgoing calls