FastDecoderFlexible extension
Flexible and typed decode operations for FastDecoder.
- on
Methods
-
decodeBooleans(
String input, CsvConfig config, {bool? emptyAs}) → List< List< bool> > -
Available on FastDecoder, provided by the FastDecoderFlexible extension
Decode all fields as booleans. -
decodeDoubles(
String input, CsvConfig config, {double? emptyAs}) → List< List< double> > -
Available on FastDecoder, provided by the FastDecoderFlexible extension
Decode all fields as doubles. -
decodeFlexible(
String input, CsvConfig config) → List< List> -
Available on FastDecoder, provided by the FastDecoderFlexible extension
Decode with lenient parsing: unquoted strings, whitespace trimming. -
decodeIntegers(
String input, CsvConfig config, {int? emptyAs}) → List< List< int> > -
Available on FastDecoder, provided by the FastDecoderFlexible extension
Decode all fields as integers.