Converts input and returns the result of the conversion.
input
@override Iterable<double> convert(String input) => input.split(",").map((e) => e.trim()).map((e) => typeDecoder.convert(e));