static Iterable<double?> toDoubles(Iterable list, {double? defaultValue}) => list.map((v) => toDouble(v, defaultValue: defaultValue));